From fd2edea2a261b5ff6fc75cac83128498a88e3dcf Mon Sep 17 00:00:00 2001 From: dsapaliga Date: Thu, 20 Apr 2023 14:49:48 -0500 Subject: [PATCH 1/3] added new group cross region restore --- .../RestorableCrossRegionRestoreTests.cs | 274 + .../RestorableDatabaseAccountTests.cs | 30 - ...torableCrossRegionRestoreTests(False).json | 98 + ...bleCrossRegionRestoreTests(True)Async.json | 97 + .../TestCrossRegionRestore.json | 18727 +++++++++++++++ .../TestCrossRegionRestoreAsync.json | 18837 ++++++++++++++++ 6 files changed, 38033 insertions(+), 30 deletions(-) create mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableCrossRegionRestoreTests.cs create mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json create mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(True)Async.json create mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json create mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestoreAsync.json diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableCrossRegionRestoreTests.cs b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableCrossRegionRestoreTests.cs new file mode 100644 index 000000000000..bd80bb2b410f --- /dev/null +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableCrossRegionRestoreTests.cs @@ -0,0 +1,274 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +using System.Linq; +using System.Collections.Generic; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using Azure.ResourceManager.CosmosDB.Models; +using NUnit.Framework; +using Azure.Core; +using System; +using System.Threading; +using System.ComponentModel; +using NUnit.Framework.Internal; + +namespace Azure.ResourceManager.CosmosDB.Tests +{ + public class RestorableCrossRegionRestoreTests : CosmosDBManagementClientBase + { + private CosmosDBAccountResource _restorableDatabaseAccount; + private CosmosDBAccountResource _restoredDatabaseAccount; + + public RestorableCrossRegionRestoreTests(bool isAsync) : base(isAsync) + { + } + + [OneTimeSetUp] + public async Task GlobalSetup() + { + await StopSessionRecordingAsync(); + } + + [SetUp] + public async Task TestSetup() + { + _restorableDatabaseAccount = null; + _restoredDatabaseAccount = null; + _resourceGroup = await ArmClient.GetResourceGroupResource(_resourceGroupIdentifier).GetAsync(); + } + + [TearDown] + public async Task TearDown() + { + if (_restorableDatabaseAccount != null) + { + await _restorableDatabaseAccount.DeleteAsync(WaitUntil.Completed); + } + + if (_restoredDatabaseAccount != null) + { + await _restoredDatabaseAccount.DeleteAsync(WaitUntil.Completed); + } + + _restorableDatabaseAccount = null; + _restoredDatabaseAccount = null; + } + + [Test] + [RecordedTest] + public async Task TestCrossRegionRestore() + { + _restorableDatabaseAccount = await GetDatabaseAccountForSpecificAPI(AccountType.PitrSql, AzureLocation.WestCentralUS); + var restorableAccounts = await (await ArmClient.GetDefaultSubscriptionAsync()).GetRestorableCosmosDBAccountsAsync().ToEnumerableAsync(); + Assert.That(restorableAccounts.Any(account => account.Data.AccountName == _restorableDatabaseAccount.Data.Name)); + RestorableCosmosDBAccountResource restorableAccount = restorableAccounts.Single(account => account.Data.AccountName == _restorableDatabaseAccount.Data.Name); + + var databaseName = Recording.GenerateAssetName("sql-database-"); + CosmosDBSqlDatabaseResource database = await CreateSqlDatabase(databaseName, null); + + var containerName = Recording.GenerateAssetName("sql-container-"); + CosmosDBSqlContainerResource container = await CreateSqlContainer(containerName, database, null); + AddDelayInSeconds(60); + + DateTimeOffset ts = DateTimeOffset.FromUnixTimeSeconds((int)container.Data.Resource.Timestamp.Value); + AddDelayInSeconds(3800); + + CosmosDBAccountRestoreParameters restoreParameters = new CosmosDBAccountRestoreParameters() + { + RestoreMode = "PointInTime", + RestoreTimestampInUtc = ts.AddSeconds(3700), + RestoreSource = restorableAccount.Id.ToString(), + SourceBackupLocation = "West Central US" + }; + + _restoredDatabaseAccount = await RestoreAndVerifyRestoredAccount(AccountType.PitrSql, restorableAccount, restoreParameters, AzureLocation.NorthCentralUS, AzureLocation.WestCentralUS); + } + + protected async Task CreateRestorableDatabaseAccount(string name, CosmosDBAccountKind kind, AzureLocation location, bool isFreeTierEnabled = false, List capabilities = null, string apiVersion = null) + { + var locations = new List() + { + new CosmosDBAccountLocation(id: null, locationName: location, documentEndpoint: null, provisioningState: null, failoverPriority: 0, isZoneRedundant: false) + }; + + var createOptions = new CosmosDBAccountCreateOrUpdateContent(location, locations) + { + Kind = kind, + ConsistencyPolicy = new ConsistencyPolicy(DefaultConsistencyLevel.BoundedStaleness, MaxStalenessPrefix, MaxIntervalInSeconds), + IPRules = { new CosmosDBIPAddressOrRange("23.43.231.120") }, + IsVirtualNetworkFilterEnabled = true, + EnableAutomaticFailover = false, + ConnectorOffer = ConnectorOffer.Small, + DisableKeyBasedMetadataWriteAccess = false, + BackupPolicy = new ContinuousModeBackupPolicy(), + IsFreeTierEnabled = isFreeTierEnabled, + }; + + if (capabilities != null) + { + capabilities.ForEach(x => createOptions.Capabilities.Add(x)); + } + + if (apiVersion != null) + { + createOptions.ApiServerVersion = apiVersion; + } + + _databaseAccountName = name; + var accountLro = await DatabaseAccountCollection.CreateOrUpdateAsync(WaitUntil.Completed, _databaseAccountName, createOptions); + return accountLro.Value; + } + + private async Task RestoreAndVerifyRestoredAccount(AccountType accountType, RestorableCosmosDBAccountResource restorableAccount, CosmosDBAccountRestoreParameters restoreParameters, AzureLocation location, AzureLocation armLocation, bool IsFreeTierEnabled = false) + { + CosmosDBAccountKind kind = CosmosDBAccountKind.GlobalDocumentDB; + + var locations = new List() + { + new CosmosDBAccountLocation(id: null, locationName: location, documentEndpoint: null, provisioningState: null, failoverPriority: null, isZoneRedundant: false) + }; + + var restoredAccountName = Recording.GenerateAssetName("restoredaccount-"); + + CosmosDBAccountCreateOrUpdateContent databaseAccountCreateUpdateParameters = new CosmosDBAccountCreateOrUpdateContent(armLocation, locations) + { + Kind = kind, + CreateMode = CosmosDBAccountCreateMode.Restore, + RestoreParameters = restoreParameters + }; + databaseAccountCreateUpdateParameters.Tags.Add("key1", "value1"); + databaseAccountCreateUpdateParameters.Tags.Add("key2", "value2"); + + var accountLro = await DatabaseAccountCollection.CreateOrUpdateAsync(WaitUntil.Completed, restoredAccountName, databaseAccountCreateUpdateParameters); + CosmosDBAccountResource restoredDatabaseAccount = accountLro.Value; + Assert.NotNull(restoredDatabaseAccount); + Assert.NotNull(restoredDatabaseAccount.Data.RestoreParameters); + Assert.AreEqual(restoredDatabaseAccount.Data.RestoreParameters.RestoreSource.ToLower(), restorableAccount.Id.ToString().ToLower()); + Assert.True(restoredDatabaseAccount.Data.BackupPolicy is ContinuousModeBackupPolicy); + + ContinuousModeBackupPolicy policy = restoredDatabaseAccount.Data.BackupPolicy as ContinuousModeBackupPolicy; + Assert.AreEqual(_restorableDatabaseAccount.Data.BackupPolicy.BackupPolicyType, policy.BackupPolicyType); + Assert.AreEqual(IsFreeTierEnabled, restoredDatabaseAccount.Data.IsFreeTierEnabled); + + return restoredDatabaseAccount; + } + + internal async Task CreateSqlDatabase(string databaseName, AutoscaleSettings autoscale) + { + return await CreateSqlDatabase(databaseName, autoscale, _restorableDatabaseAccount.GetCosmosDBSqlDatabases()); + } + + internal static async Task CreateSqlDatabase(string name, AutoscaleSettings autoscale, CosmosDBSqlDatabaseCollection collection) + { + var sqlDatabaseCreateUpdateOptions = new CosmosDBSqlDatabaseCreateOrUpdateContent(AzureLocation.WestCentralUS, + new Models.CosmosDBSqlDatabaseResourceInfo(name)) + { + Options = BuildDatabaseCreateUpdateOptions(TestThroughput1, autoscale), + }; + var databaseLro = await collection.CreateOrUpdateAsync(WaitUntil.Completed, name, sqlDatabaseCreateUpdateOptions); + return databaseLro.Value; + } + + internal async Task CreateSqlContainer(string containerName, CosmosDBSqlDatabaseResource database, AutoscaleSettings autoscale) + { + return await CreateSqlContainer(containerName, autoscale, database.GetCosmosDBSqlContainers()); + } + + internal static async Task CreateSqlContainer(string name, AutoscaleSettings autoscale, CosmosDBSqlContainerCollection sqlContainerCollection) + { + var sqlDatabaseCreateUpdateOptions = new CosmosDBSqlContainerCreateOrUpdateContent(AzureLocation.WestCentralUS, + new Models.CosmosDBSqlContainerResourceInfo(name) + { + PartitionKey = new CosmosDBContainerPartitionKey(new List { "/address/zipCode" }, null, null, false) + { + Kind = new CosmosDBPartitionKind("Hash") + }, + IndexingPolicy = new CosmosDBIndexingPolicy( + true, + CosmosDBIndexingMode.Consistent, + new List + { + new CosmosDBIncludedPath { Path = "/*"} + }, + new List + { + new CosmosDBExcludedPath { Path = "/pathToNotIndex/*"} + }, + new List> + { + new List + { + new CosmosDBCompositePath { Path = "/orderByPath1", Order = CompositePathSortOrder.Ascending }, + new CosmosDBCompositePath { Path = "/orderByPath2", Order = CompositePathSortOrder.Descending } + } + }, + new List + { + new SpatialSpec + ( + "/*", + new List + { + new CosmosDBSpatialType("Point") + } + ), + } + ) + }) + { + Options = BuildDatabaseCreateUpdateOptions(TestThroughput1, autoscale), + }; + var sqlContainerLro = await sqlContainerCollection.CreateOrUpdateAsync(WaitUntil.Completed, name, sqlDatabaseCreateUpdateOptions); + return sqlContainerLro.Value; + } + + public enum AccountType + { + PitrSql, + Pitr7Sql, + Sql + } + + public async Task GetDatabaseAccountForSpecificAPI(AccountType accountType, AzureLocation location) + { + CosmosDBAccountResource account = null; + string accountName = Recording.GenerateAssetName("r-database-account-"); + + if (accountType == AccountType.PitrSql) + { + account = await CreateRestorableDatabaseAccount( + name: accountName, + kind: CosmosDBAccountKind.GlobalDocumentDB, + location: location + ); + } + if (accountType == AccountType.Pitr7Sql) + { + account = await CreateRestorableDatabaseAccount( + name: accountName, + kind: CosmosDBAccountKind.GlobalDocumentDB, + location: location, + isFreeTierEnabled: true + ); + } + else if (accountType == AccountType.Sql) + { + account = await CreateRestorableDatabaseAccount( + name: accountName, + kind: CosmosDBAccountKind.GlobalDocumentDB, + location: location + ); + } + + return account; + } + + private void AddDelayInSeconds(int delayInSeconds) + { + if (Mode != RecordedTestMode.Playback) + { + Thread.Sleep(delayInSeconds * 1000); + } + } + } +} diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableDatabaseAccountTests.cs b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableDatabaseAccountTests.cs index c1b1823d794e..f902be09a972 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableDatabaseAccountTests.cs +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/ScenarioTests/RestorableDatabaseAccountTests.cs @@ -104,36 +104,6 @@ public async Task RestoreSqlDatabaseAccount() } // TODO: more tests after fixing the code generation issue - [Test] - [RecordedTest] - public async Task TestCrossRegionRestore() - { - _restorableDatabaseAccount = await GetDatabaseAccountForSpecificAPI(AccountType.PitrSql, AzureLocation.WestCentralUS); - var restorableAccounts = await (await ArmClient.GetDefaultSubscriptionAsync()).GetRestorableCosmosDBAccountsAsync().ToEnumerableAsync(); - Assert.That(restorableAccounts.Any(account => account.Data.AccountName == _restorableDatabaseAccount.Data.Name)); - RestorableCosmosDBAccountResource restorableAccount = restorableAccounts.Single(account => account.Data.AccountName == _restorableDatabaseAccount.Data.Name); - - var databaseName = Recording.GenerateAssetName("sql-database-"); - CosmosDBSqlDatabaseResource database = await CreateSqlDatabase(databaseName, null); - - var containerName = Recording.GenerateAssetName("sql-container-"); - CosmosDBSqlContainerResource container = await CreateSqlContainer(containerName, database, null); - AddDelayInSeconds(60); - - DateTimeOffset ts = DateTimeOffset.FromUnixTimeSeconds((int)container.Data.Resource.Timestamp.Value); - AddDelayInSeconds(3662); - - CosmosDBAccountRestoreParameters restoreParameters = new CosmosDBAccountRestoreParameters() - { - RestoreMode = "PointInTime", - RestoreTimestampInUtc = ts.AddSeconds(3630), - RestoreSource = restorableAccount.Id.ToString(), - SourceBackupLocation = "West Central US" - }; - - _restoredDatabaseAccount = await RestoreAndVerifyRestoredAccount(AccountType.PitrSql, restorableAccount, restoreParameters, AzureLocation.NorthCentralUS, AzureLocation.WestCentralUS); - } - protected async Task CreateRestorableDatabaseAccount(string name, CosmosDBAccountKind kind, AzureLocation location, bool isFreeTierEnabled = false, List capabilities = null, string apiVersion = null) { var locations = new List() diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json new file mode 100644 index 000000000000..5a161ac742c1 --- /dev/null +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json @@ -0,0 +1,98 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e019c69ecfc6a20176ce9460e4bbd357-8bc065f6a1fcc95e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "43a6cbec49908d0ea972779d6da5e7b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 15:54:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3cb6b22b-ce52-4d47-b948-4c5116dabaee", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "3cb6b22b-ce52-4d47-b948-4c5116dabaee", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155439Z:3cb6b22b-ce52-4d47-b948-4c5116dabaee" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "authorizationSource": "RoleBased", + "managedByTenants": [ + { + "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" + } + ], + "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "CosmosDB-Backup-Restore", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6298?api-version=**", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-79baa041f7842cd25bd58b59b7745522-4e5ec30f8a26c4db-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9f79781b4c1cbe06eda39a6064aa9cbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 15:54:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee6aef68-429c-47d7-9e63-e8d099641110", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "ee6aef68-429c-47d7-9e63-e8d099641110", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155441Z:ee6aef68-429c-47d7-9e63-e8d099641110" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298", + "name": "dbaccount-6298", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": null, + "RandomSeed": "301700015", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(True)Async.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(True)Async.json new file mode 100644 index 000000000000..3f89a09a8f22 --- /dev/null +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(True)Async.json @@ -0,0 +1,97 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-9cff5927731b72c2ad192a58b1d5478b-cc6495065468436b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fd987e064351daddea35ec29006ad62e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 17:36:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "825599df-7191-45c3-ae69-8817b36dc4f2", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "825599df-7191-45c3-ae69-8817b36dc4f2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173635Z:825599df-7191-45c3-ae69-8817b36dc4f2" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "authorizationSource": "RoleBased", + "managedByTenants": [ + { + "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" + } + ], + "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "CosmosDB-Backup-Restore", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-2975?api-version=**", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-3c3ee5760852b2ac118c4ebc7d5be529-58ecb86202a5c23c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "22a7da54f19ab820847ce9c4ee6584e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 17:36:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cfb960ce-2ce9-4e69-9045-7255f1e4e1c7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cfb960ce-2ce9-4e69-9045-7255f1e4e1c7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173636Z:cfb960ce-2ce9-4e69-9045-7255f1e4e1c7" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975", + "name": "dbaccount-2975", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": null, + "RandomSeed": "1646695296", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json new file mode 100644 index 000000000000..29d5f6a3d195 --- /dev/null +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json @@ -0,0 +1,18727 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6298?api-version=**", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-f09e2bfe34dfe64c653b710dd6108b58-95819efb8d8ef511-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "439119e41f8363bfffda8b3390115467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 15:54:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23421974-9470-4354-abc4-7aa424e79015", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "23421974-9470-4354-abc4-7aa424e79015", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155441Z:23421974-9470-4354-abc4-7aa424e79015" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298", + "name": "dbaccount-6298", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "575", + "Content-Type": "application/json", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-7891b677bd9fbea3-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "51bb248d93ae2bc9e7bfe7237901fdd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": {}, + "location": "westcentralus", + "properties": { + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxStalenessPrefix": 300, + "maxIntervalInSeconds": 1000 + }, + "locations": [ + { + "locationName": "westcentralus", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "isVirtualNetworkFilterEnabled": true, + "enableAutomaticFailover": false, + "connectorOffer": "Small", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "backupPolicy": { + "type": "Continuous" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2478", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:46 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/operationResults/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "70a3f985-8a66-4449-915c-840391a41f56", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "0d1c99cd-9190-4117-86a4-f3da80a1232e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155446Z:70a3f985-8a66-4449-915c-840391a41f56" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733", + "name": "r-database-account-2733", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T15:54:45.3179651Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": true, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": { + "schemaType": "WellDefined" + }, + "instanceId": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "createMode": "Default", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T15:54:45.3179651Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T15:54:45.3179651Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T15:54:45.3179651Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T15:54:45.3179651Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-94e539023ad92eca-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "841651cf9fd58536c7189b5fd83f85d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78cad19b-5708-44bf-a45b-7580fb129dd5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "78cad19b-5708-44bf-a45b-7580fb129dd5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155447Z:78cad19b-5708-44bf-a45b-7580fb129dd5" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-a7683f95635a34e1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fe7e628d8ca0f1c02f4940f093f93dfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "707afcf3-b46e-4821-be6f-2c956d6d1f9a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "707afcf3-b46e-4821-be6f-2c956d6d1f9a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155448Z:707afcf3-b46e-4821-be6f-2c956d6d1f9a" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-60e70bc174fff863-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2854a41379ea72fbdb2d13b9019599d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5984aa43-a022-4624-afc2-582ab6ae2180", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "5984aa43-a022-4624-afc2-582ab6ae2180", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155449Z:5984aa43-a022-4624-afc2-582ab6ae2180" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-8c761310571fb3ff-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8b422737ad6c42a19125548b5e45f2ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "51e6620a-86d6-4bf9-a242-6d34fa47587f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "51e6620a-86d6-4bf9-a242-6d34fa47587f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155450Z:51e6620a-86d6-4bf9-a242-6d34fa47587f" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-4c87b1fd3e3f18cd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "334c9edb5dea14ee660b23727806ef9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "18c44eb2-0918-426f-a68f-720af089556f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "18c44eb2-0918-426f-a68f-720af089556f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155452Z:18c44eb2-0918-426f-a68f-720af089556f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-f655e055d352648e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6cb86eafb1b66590031196c524701496", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:54:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c7426544-3503-47b9-a37a-8752145074bb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c7426544-3503-47b9-a37a-8752145074bb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155456Z:c7426544-3503-47b9-a37a-8752145074bb" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-28627cbcc961f68c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "62de443b6648dae7392e25618a2eca8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:55:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "11b5cd57-e555-4223-8de6-53492b2ab9a2", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "11b5cd57-e555-4223-8de6-53492b2ab9a2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155504Z:11b5cd57-e555-4223-8de6-53492b2ab9a2" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-57d2bc8728f2cf3b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "efdbb935858c2a180ee730d8c629eff6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:55:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d91346da-9478-419b-9e00-d414f45a7e38", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "d91346da-9478-419b-9e00-d414f45a7e38", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155520Z:d91346da-9478-419b-9e00-d414f45a7e38" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-21b7a76e38fc44ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "34378cf68d28495187de33878c2edad4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:55:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf5d3266-1f5b-4bc7-a24f-6db5c014e750", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "cf5d3266-1f5b-4bc7-a24f-6db5c014e750", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155552Z:cf5d3266-1f5b-4bc7-a24f-6db5c014e750" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-ebac6efeceba8d09-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6b8f0c472494b6092bb45461360e140f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:56:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155624Z:4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-a9262938ea67e728-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fd6a2f3e95f7a862679268ae52909ddf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:56:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "be50ac30-8d78-4cc9-9989-4d68b4792735", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "be50ac30-8d78-4cc9-9989-4d68b4792735", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155657Z:be50ac30-8d78-4cc9-9989-4d68b4792735" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-92cf93a19ea45e2b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ba915b0c8499d2618381087438f01379", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0fe9cf29-855c-4d0e-ae45-546e75d029f5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0fe9cf29-855c-4d0e-ae45-546e75d029f5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:0fe9cf29-855c-4d0e-ae45-546e75d029f5" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-f40dc12d54c13a32-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d4923c9ddc3b1dda9e60302bc5b639a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "2927", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c56a31ad-0787-4a51-9b47-5e0398d0cc57", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "c56a31ad-0787-4a51-9b47-5e0398d0cc57", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:c56a31ad-0787-4a51-9b47-5e0398d0cc57" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733", + "name": "r-database-account-2733", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T15:57:01.3584843Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://r-database-account-2733.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-2733.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": true, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": { + "schemaType": "WellDefined" + }, + "instanceId": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "createMode": "Default", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "r-database-account-2733-westcentralus", + "locationName": "West Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T15:57:01.3584843Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T15:57:01.3584843Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T15:57:01.3584843Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T15:57:01.3584843Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-cf55d6e80910dadd9f0ca9455ea9f359-badf484802f1a640-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "db5574165a7dba75cd987a768dee7077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9b651709-70a5-4f4e-9fa3-d6df097d27e7", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "9b651709-70a5-4f4e-9fa3-d6df097d27e7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:9b651709-70a5-4f4e-9fa3-d6df097d27e7" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "authorizationSource": "RoleBased", + "managedByTenants": [ + { + "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" + } + ], + "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "CosmosDB-Backup-Restore", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-418dbcd1028cbf38f84f57b9446d371f-a0dbcd482d31bafd-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2fe4ee7e40472f1b7edf10b3805e1627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "475001", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 15:57:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23a48f1b-ad66-41a4-a8d3-ff7f375d1783", + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "23a48f1b-ad66-41a4-a8d3-ff7f375d1783", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155734Z:23a48f1b-ad66-41a4-a8d3-ff7f375d1783" + }, + "ResponseBody": { + "value": [ + { + "name": "22c487b3-d5c7-45de-be94-38fecee66cd3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/22c487b3-d5c7-45de-be94-38fecee66cd3", + "properties": { + "accountName": "barprod-systemid-sw-1109027095", + "apiType": "Sql", + "creationTime": "2022-12-13T19:12:35Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "debbeba6-2699-44df-a689-5e9a867f51e5", + "creationTime": "2022-12-13T19:12:36Z" + } + ] + } + }, + { + "name": "2b49ac91-ad60-4807-9b6b-4041645b4f5e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b49ac91-ad60-4807-9b6b-4041645b4f5e", + "properties": { + "accountName": "barprod-systemid-sw-1109027095-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T19:33:35Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5bd4a33-9470-4496-a2ba-6d31b52ff4b1", + "creationTime": "2022-12-13T19:33:35Z" + } + ] + } + }, + { + "name": "13e27035-3df0-42e7-8048-6d0cbd5c7f80", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/13e27035-3df0-42e7-8048-6d0cbd5c7f80", + "properties": { + "accountName": "barprod-systemid-sw-1305567950", + "apiType": "Sql", + "creationTime": "2022-12-13T21:09:30Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "fc983ed2-abe6-4914-a686-46bcdc85a54e", + "creationTime": "2022-12-13T21:09:31Z" + } + ] + } + }, + { + "name": "a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", + "properties": { + "accountName": "barprod-systemid-sw-1305567950-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T21:30:58Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2438a28c-af6b-4e7f-9984-6a644cf0e897", + "creationTime": "2022-12-13T21:30:58Z" + } + ] + } + }, + { + "name": "84e4a829-6f5a-4ca5-bdc5-86b650e38aea", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/84e4a829-6f5a-4ca5-bdc5-86b650e38aea", + "properties": { + "accountName": "vinh-restore-fail", + "apiType": "Sql", + "creationTime": "2022-12-13T22:07:03Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f4eed423-2ade-4121-94a1-22c3aa3f7a17", + "creationTime": "2022-12-13T22:07:03Z" + } + ] + } + }, + { + "name": "d494b442-7138-4a38-8f78-b301967b497b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d494b442-7138-4a38-8f78-b301967b497b", + "properties": { + "accountName": "vinh-restore-fail2", + "apiType": "Sql", + "creationTime": "2022-12-13T22:10:55Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c49dc5ba-6bdb-4470-b8b3-afa33fe3112a", + "creationTime": "2022-12-13T22:10:55Z" + } + ] + } + }, + { + "name": "9e46844f-6285-4408-b60f-9de3c6aab0cf", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e46844f-6285-4408-b60f-9de3c6aab0cf", + "properties": { + "accountName": "vinh-restore-not-fail3", + "apiType": "Sql", + "creationTime": "2022-12-13T23:32:55Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "9131c392-b756-489b-aafd-0f9227b15fc6", + "creationTime": "2022-12-13T23:32:55Z" + } + ] + } + }, + { + "name": "49c3f2e6-d728-41f9-8dff-257140ec7aa1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/49c3f2e6-d728-41f9-8dff-257140ec7aa1", + "properties": { + "accountName": "barprod-systemid-sw-1525116479", + "apiType": "Sql", + "creationTime": "2022-12-13T23:28:39Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6ab357f4-901f-4b4d-b01f-25fd52c525d7", + "creationTime": "2022-12-13T23:28:40Z" + } + ] + } + }, + { + "name": "24dd6ee0-d69d-4f3b-b14c-319245f75a1a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/24dd6ee0-d69d-4f3b-b14c-319245f75a1a", + "properties": { + "accountName": "barprod-systemid-sw-1526492563", + "apiType": "Sql", + "creationTime": "2022-12-13T23:30:14Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d91ab187-9143-4584-9a21-e7ffab1a8b51", + "creationTime": "2022-12-13T23:30:15Z" + } + ] + } + }, + { + "name": "f6c79664-838d-45f6-82dc-58dd1ea6aa69", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f6c79664-838d-45f6-82dc-58dd1ea6aa69", + "properties": { + "accountName": "barprod-systemid-sw-1526492563-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T23:51:46Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "550716f8-9a42-4512-bd9f-d8a864df27c2", + "creationTime": "2022-12-13T23:51:46Z" + } + ] + } + }, + { + "name": "db48bc7b-8dae-4fcd-a131-b3220fac8b0a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db48bc7b-8dae-4fcd-a131-b3220fac8b0a", + "properties": { + "accountName": "barprod-systemid-sw-1525116479-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T23:54:20Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "a416d1a0-a506-4baa-b833-460653ff60c4", + "creationTime": "2022-12-13T23:54:20Z" + } + ] + } + }, + { + "name": "3c95a287-aaeb-464e-a79d-cad370f919b1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c95a287-aaeb-464e-a79d-cad370f919b1", + "properties": { + "accountName": "vinh-restore-fail-2identities", + "apiType": "Sql", + "creationTime": "2022-12-16T01:32:31Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "5dc84958-10f0-4c44-b51d-b860e41c4801", + "creationTime": "2022-12-16T01:32:31Z" + } + ] + } + }, + { + "name": "2b128b5f-7348-49a7-99b2-4cf75919d54e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b128b5f-7348-49a7-99b2-4cf75919d54e", + "properties": { + "accountName": "cli-xrr-k6di52knuaghjx6ns", + "apiType": "Sql", + "creationTime": "2023-04-06T15:49:22Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "69017173-ea84-4fab-a59e-dcda978e7641", + "creationTime": "2023-04-06T15:49:23Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "c24b16be-2f6b-441f-86cb-bab05c86c299", + "creationTime": "2023-04-06T15:51:35Z" + } + ] + } + }, + { + "name": "60c98996-836d-441d-84bf-dd71663bc121", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/60c98996-836d-441d-84bf-dd71663bc121", + "properties": { + "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", + "apiType": "Sql", + "creationTime": "2023-04-06T17:07:39Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b0a87252-bf99-40cb-b5bc-9afcf6580e23", + "creationTime": "2023-04-06T17:07:39Z" + } + ] + } + }, + { + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", + "properties": { + "accountName": "r-database-account-6809", + "apiType": "Sql", + "creationTime": "2023-04-17T19:29:22Z", + "oldestRestorableTime": "2023-04-17T19:29:22Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z" + } + ] + } + }, + { + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "properties": { + "accountName": "r-database-account-7066", + "apiType": "Sql", + "creationTime": "2023-04-19T23:41:57Z", + "oldestRestorableTime": "2023-04-19T23:41:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z" + } + ] + } + }, + { + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "properties": { + "accountName": "r-database-account-2733", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:02Z", + "oldestRestorableTime": "2023-04-20T15:57:02Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z" + } + ] + } + }, + { + "name": "2217666b-a543-4788-adf9-f8059e864343", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2217666b-a543-4788-adf9-f8059e864343", + "properties": { + "accountName": "cli-xrr-jvikyutenetrnlpvv-restored", + "apiType": "Sql", + "creationTime": "2023-04-05T23:38:55Z", + "deletionTime": "2023-04-05T23:40:47Z", + "oldestRestorableTime": "2023-03-29T23:40:47Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "299aef44-c8ef-4cc0-9e04-234195bc3daa", + "creationTime": "2023-04-05T23:38:55Z", + "deletionTime": "2023-04-05T23:40:47Z" + } + ] + } + }, + { + "name": "8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", + "properties": { + "accountName": "cli-xrr-jvikyutenetrnlpvv", + "apiType": "Sql", + "creationTime": "2023-04-05T22:22:58Z", + "deletionTime": "2023-04-05T23:40:48Z", + "oldestRestorableTime": "2023-03-29T23:40:48Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5bb2cfc-69d8-4117-aae6-985ddc57ecd4", + "creationTime": "2023-04-05T22:23:00Z", + "deletionTime": "2023-04-05T23:40:48Z" + } + ] + } + }, + { + "name": "18ad6f7b-4a4c-414a-af6e-c0c0794275a9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/18ad6f7b-4a4c-414a-af6e-c0c0794275a9", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T15:41:19Z", + "deletionTime": "2023-04-06T16:51:10Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b9fc8ff1-bb30-4f1d-962a-b9e7108a9b58", + "creationTime": "2023-04-06T15:45:43Z", + "deletionTime": "2023-04-06T16:51:10Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c666de0b-5116-4c8f-9273-e18afaa847ef", + "creationTime": "2023-04-06T15:41:19Z", + "deletionTime": "2023-04-06T16:51:10Z" + } + ] + } + }, + { + "name": "621ef049-57db-46e5-b21b-abb7d9fbc7d1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/621ef049-57db-46e5-b21b-abb7d9fbc7d1", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T17:50:09Z", + "deletionTime": "2023-04-06T18:56:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d9fe4287-0192-4d20-9c13-7d8240ff9b4e", + "creationTime": "2023-04-06T17:52:38Z", + "deletionTime": "2023-04-06T18:56:25Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d9b2f14a-b42e-47d2-94c5-9e4a669c2bd1", + "creationTime": "2023-04-06T17:50:10Z", + "deletionTime": "2023-04-06T18:56:25Z" + } + ] + } + }, + { + "name": "8107171d-0bae-4a08-9ac9-42f31d494443", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8107171d-0bae-4a08-9ac9-42f31d494443", + "properties": { + "accountName": "cli-xrr-g7yczvt2zofiguzec-restored", + "apiType": "Sql", + "creationTime": "2023-04-06T19:04:42Z", + "deletionTime": "2023-04-06T19:05:19Z", + "oldestRestorableTime": "2023-03-30T19:05:19Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b02de377-f83f-4e90-9533-f08d5e81a700", + "creationTime": "2023-04-06T19:04:42Z", + "deletionTime": "2023-04-06T19:05:19Z" + } + ] + } + }, + { + "name": "780cc0ea-0ba6-47d1-84da-ca1d24f3d411", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/780cc0ea-0ba6-47d1-84da-ca1d24f3d411", + "properties": { + "accountName": "cli-xrr-g7yczvt2zofiguzec", + "apiType": "Sql", + "creationTime": "2023-04-06T17:44:45Z", + "deletionTime": "2023-04-06T19:05:19Z", + "oldestRestorableTime": "2023-03-30T19:05:19Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "3718d4c7-c627-444e-8f6b-be2e444c55ed", + "creationTime": "2023-04-06T17:47:20Z", + "deletionTime": "2023-04-06T19:05:19Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "27e66009-ee24-4168-8c82-c65648eecb4d", + "creationTime": "2023-04-06T17:44:46Z", + "deletionTime": "2023-04-06T19:05:19Z" + } + ] + } + }, + { + "name": "3c050d72-850b-4a5c-b352-10100c9dbc9f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c050d72-850b-4a5c-b352-10100c9dbc9f", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T19:55:04Z", + "deletionTime": "2023-04-06T21:02:28Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "677324d5-f1fe-4862-b496-e76ae3028aac", + "creationTime": "2023-04-06T19:58:16Z", + "deletionTime": "2023-04-06T21:02:28Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "95bc63cb-8474-4d19-b075-01ac042cf578", + "creationTime": "2023-04-06T19:55:06Z", + "deletionTime": "2023-04-06T21:02:28Z" + } + ] + } + }, + { + "name": "eed95519-8c04-4871-a9a2-2a2894cb94df", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/eed95519-8c04-4871-a9a2-2a2894cb94df", + "properties": { + "accountName": "restored-ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-06T22:30:52Z", + "deletionTime": "2023-04-06T22:32:02Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6d790f06-7de4-4cb4-9e08-83096f4b8578", + "creationTime": "2023-04-06T22:30:52Z", + "deletionTime": "2023-04-06T22:32:02Z" + } + ] + } + }, + { + "name": "fb22603e-7627-45ce-a52f-92cbb70ebd86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fb22603e-7627-45ce-a52f-92cbb70ebd86", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:17Z", + "deletionTime": "2023-04-06T22:32:04Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "41b5569f-2256-4f98-9b6e-26c070557a53", + "creationTime": "2023-04-06T21:14:20Z", + "deletionTime": "2023-04-06T22:32:04Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d835a5bf-29c1-4c4f-bc76-fc0dca1ac730", + "creationTime": "2023-04-06T21:11:18Z", + "deletionTime": "2023-04-06T22:32:04Z" + } + ] + } + }, + { + "name": "92d85476-12b6-43c3-94dc-5e7b80acfc6f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/92d85476-12b6-43c3-94dc-5e7b80acfc6f", + "properties": { + "accountName": "amisitestpitracc1-restored1", + "apiType": "Sql", + "creationTime": "2023-04-07T05:15:13Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-31T16:42:28Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "548c7363-9c92-493b-aee5-fdcadf24d35a", + "creationTime": "2023-04-07T05:15:13Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "932dc036-7768-49c5-b84a-3f3d34c1e612", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/932dc036-7768-49c5-b84a-3f3d34c1e612", + "properties": { + "accountName": "new-acc", + "apiType": "Sql", + "creationTime": "2023-04-07T04:11:01Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-31T16:42:28Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6bd731dd-1700-464f-8899-bd368cc85aac", + "creationTime": "2023-04-07T04:11:01Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "9fbe0e1d-baac-4500-ae10-a216f9729ca6", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9fbe0e1d-baac-4500-ae10-a216f9729ca6", + "properties": { + "accountName": "amisitestpitracc1-restored1", + "apiType": "Sql", + "creationTime": "2023-04-07T18:52:04Z", + "deletionTime": "2023-04-07T19:03:48Z", + "oldestRestorableTime": "2023-03-31T19:03:48Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "992ce2d9-3bb2-4521-88e2-6da041fab90e", + "creationTime": "2023-04-07T18:52:04Z", + "deletionTime": "2023-04-07T19:03:48Z" + } + ] + } + }, + { + "name": "cc3cd261-363c-4bab-9ba7-cc5fb46602c0", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/cc3cd261-363c-4bab-9ba7-cc5fb46602c0", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T20:14:52Z", + "deletionTime": "2023-04-07T21:19:01Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d5ff53da-a80d-4a29-8a41-bb2265458254", + "creationTime": "2023-04-07T20:14:53Z", + "deletionTime": "2023-04-07T21:19:01Z" + } + ] + } + }, + { + "name": "09413a43-255a-4ddf-88c0-76edcec1c2de", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/09413a43-255a-4ddf-88c0-76edcec1c2de", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T21:36:53Z", + "deletionTime": "2023-04-07T22:53:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "a387f10f-908a-4c90-850a-9bbdd283b73c", + "creationTime": "2023-04-07T21:36:54Z", + "deletionTime": "2023-04-07T22:53:51Z" + } + ] + } + }, + { + "name": "758db8a5-60e2-449f-a604-e625601bb5f8", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/758db8a5-60e2-449f-a604-e625601bb5f8", + "properties": { + "accountName": "restored-ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T22:53:05Z", + "deletionTime": "2023-04-07T22:53:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b42f5986-3a73-4da1-9c76-c40ad176c27d", + "creationTime": "2023-04-07T22:53:05Z", + "deletionTime": "2023-04-07T22:53:51Z" + } + ] + } + }, + { + "name": "a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105-restored", + "apiType": "Sql", + "creationTime": "2023-04-10T15:47:08Z", + "deletionTime": "2023-04-10T15:47:59Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "8e488c7d-0087-4e18-bc96-9d237043a7fc", + "creationTime": "2023-04-10T15:47:08Z", + "deletionTime": "2023-04-10T15:47:59Z" + } + ] + } + }, + { + "name": "e707fcc6-0240-4633-966c-9ef1b4eec147", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e707fcc6-0240-4633-966c-9ef1b4eec147", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-10T14:28:30Z", + "deletionTime": "2023-04-10T15:47:59Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "88184430-bbae-4221-96e5-1354de1e5de2", + "creationTime": "2023-04-10T14:30:49Z", + "deletionTime": "2023-04-10T15:47:59Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "671fa58b-535f-4c1a-b0a3-f673e7bddbfb", + "creationTime": "2023-04-10T14:28:31Z", + "deletionTime": "2023-04-10T15:47:59Z" + } + ] + } + }, + { + "name": "038f848f-248e-4bae-9d05-8e153eae6852", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/038f848f-248e-4bae-9d05-8e153eae6852", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-10T17:43:02Z", + "deletionTime": "2023-04-10T18:59:57Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "5108b700-4b47-4609-bd62-4fa7fa0539c9", + "creationTime": "2023-04-10T17:43:03Z", + "deletionTime": "2023-04-10T18:59:57Z" + } + ] + } + }, + { + "name": "3347c551-f760-4ebe-8aeb-5b35070ac7f7", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3347c551-f760-4ebe-8aeb-5b35070ac7f7", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106-restored", + "apiType": "Sql", + "creationTime": "2023-04-10T18:59:04Z", + "deletionTime": "2023-04-10T18:59:58Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cb2da128-5457-434e-a389-1b1b80b8f083", + "creationTime": "2023-04-10T18:59:04Z", + "deletionTime": "2023-04-10T18:59:58Z" + } + ] + } + }, + { + "name": "96da75d3-7481-447b-9604-492f6a4854fd", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/96da75d3-7481-447b-9604-492f6a4854fd", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T21:49:40Z", + "deletionTime": "2023-04-14T21:51:26Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f4c62b36-0050-40e1-998f-7f66a0a2c43d", + "creationTime": "2023-04-14T21:49:40Z", + "deletionTime": "2023-04-14T21:51:26Z" + } + ] + } + }, + { + "name": "913dafbd-608a-4fc3-93ce-8f5ca6124be7", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/913dafbd-608a-4fc3-93ce-8f5ca6124be7", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-14T20:29:55Z", + "deletionTime": "2023-04-14T21:51:27Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "39d3dcc4-0ecf-49fe-a68b-d87891f01380", + "creationTime": "2023-04-14T20:32:48Z", + "deletionTime": "2023-04-14T21:51:27Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "bcac2557-d18a-406f-977d-c8a6374b411a", + "creationTime": "2023-04-14T20:29:56Z", + "deletionTime": "2023-04-14T21:51:27Z" + } + ] + } + }, + { + "name": "202a4dbe-7599-4b7e-b69d-7168f2837f3a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/202a4dbe-7599-4b7e-b69d-7168f2837f3a", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-14T22:00:54Z", + "deletionTime": "2023-04-14T23:18:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "77b1870a-f938-41fe-a3e4-a83bd87a80be", + "creationTime": "2023-04-14T22:00:55Z", + "deletionTime": "2023-04-14T23:18:25Z" + } + ] + } + }, + { + "name": "c4c969be-9110-4a37-8473-00163ab95ee3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c4c969be-9110-4a37-8473-00163ab95ee3", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T23:17:22Z", + "deletionTime": "2023-04-14T23:18:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "56d11020-be62-4ef2-b535-d75a4a3ad01d", + "creationTime": "2023-04-14T23:17:22Z", + "deletionTime": "2023-04-14T23:18:25Z" + } + ] + } + }, + { + "name": "7c1a5422-fef5-4863-a2a6-ce07680d98bb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7c1a5422-fef5-4863-a2a6-ce07680d98bb", + "properties": { + "accountName": "amisitestpitracc1", + "apiType": "Sql", + "creationTime": "2023-03-31T07:03:37Z", + "deletionTime": "2023-04-15T05:55:20Z", + "oldestRestorableTime": "2023-04-08T05:55:20Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "961c371c-2aea-446a-aaf3-abbbcfd2d73e", + "creationTime": "2023-04-02T17:08:56Z", + "deletionTime": "2023-04-15T05:55:20Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1d43fc2f-c366-46ab-8e14-38841a7fdfc1", + "creationTime": "2023-03-31T07:03:38Z", + "deletionTime": "2023-04-15T05:55:20Z" + } + ] + } + }, + { + "name": "3b30043c-455c-486f-98fb-f4d705658916", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3b30043c-455c-486f-98fb-f4d705658916", + "properties": { + "accountName": "r-database-account-177", + "apiType": "Sql", + "creationTime": "2023-04-17T19:11:24Z", + "deletionTime": "2023-04-17T19:14:59Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3d497d7c-c0c1-4c87-9aac-2c64a401be46", + "creationTime": "2023-04-17T19:11:25Z", + "deletionTime": "2023-04-17T19:14:59Z" + } + ] + } + }, + { + "name": "3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", + "properties": { + "accountName": "r-database-account-5987", + "apiType": "Sql", + "creationTime": "2023-04-17T19:41:46Z", + "deletionTime": "2023-04-17T19:45:17Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "533f84f3-c315-473c-8427-a21e5666eb6a", + "creationTime": "2023-04-17T19:41:47Z", + "deletionTime": "2023-04-17T19:45:17Z" + } + ] + } + }, + { + "name": "d196e206-a656-4c8d-a68e-9812ce4f79bc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d196e206-a656-4c8d-a68e-9812ce4f79bc", + "properties": { + "accountName": "r-database-account-192", + "apiType": "Sql", + "creationTime": "2023-04-17T21:39:56Z", + "deletionTime": "2023-04-17T21:43:27Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "56ca1104-e63a-4a62-a989-d323f5054121", + "creationTime": "2023-04-17T21:39:56Z", + "deletionTime": "2023-04-17T21:43:27Z" + } + ] + } + }, + { + "name": "c0a3bbc1-fc95-40f3-80e9-806d25576bbc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c0a3bbc1-fc95-40f3-80e9-806d25576bbc", + "properties": { + "accountName": "r-database-account-5405", + "apiType": "Sql", + "creationTime": "2023-04-17T22:20:01Z", + "deletionTime": "2023-04-17T22:21:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "36e17308-f9d4-4164-bb08-3494bd3a4300", + "creationTime": "2023-04-17T22:20:02Z", + "deletionTime": "2023-04-17T22:21:35Z" + } + ] + } + }, + { + "name": "45618f6c-684d-44ca-a63f-35c48cb1f22c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/45618f6c-684d-44ca-a63f-35c48cb1f22c", + "properties": { + "accountName": "r-database-account-4655", + "apiType": "Sql", + "creationTime": "2023-04-17T22:44:28Z", + "deletionTime": "2023-04-17T22:51:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b38ac40d-982c-46b7-8543-8374985f0e7f", + "creationTime": "2023-04-17T22:44:28Z", + "deletionTime": "2023-04-17T22:51:35Z" + } + ] + } + }, + { + "name": "b7a602eb-c62c-4686-94de-3203389c0ca8", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b7a602eb-c62c-4686-94de-3203389c0ca8", + "properties": { + "accountName": "r-database-account-1012", + "apiType": "Sql", + "creationTime": "2023-04-17T23:20:58Z", + "deletionTime": "2023-04-17T23:22:34Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "cba81aa1-1ff7-4e1f-a41f-46929e08d5df", + "creationTime": "2023-04-17T23:20:59Z", + "deletionTime": "2023-04-17T23:22:34Z" + } + ] + } + }, + { + "name": "6e977886-5eb0-4960-8a20-66df95947300", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6e977886-5eb0-4960-8a20-66df95947300", + "properties": { + "accountName": "r-database-account-364", + "apiType": "Sql", + "creationTime": "2023-04-17T23:38:00Z", + "deletionTime": "2023-04-17T23:54:37Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "63e0bfd9-f384-4e7b-a046-5e9292075995", + "creationTime": "2023-04-17T23:38:01Z", + "deletionTime": "2023-04-17T23:54:37Z" + } + ] + } + }, + { + "name": "b08b9da7-4548-4a01-aed7-5b69236ab9eb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b08b9da7-4548-4a01-aed7-5b69236ab9eb", + "properties": { + "accountName": "r-database-account-5281", + "apiType": "Sql", + "creationTime": "2023-04-17T23:57:24Z", + "deletionTime": "2023-04-17T23:58:57Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4ac58158-102d-4284-b780-5d003a8615ba", + "creationTime": "2023-04-17T23:57:25Z", + "deletionTime": "2023-04-17T23:58:57Z" + } + ] + } + }, + { + "name": "9390e99e-9079-48ac-b5cd-5760496b20ae", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9390e99e-9079-48ac-b5cd-5760496b20ae", + "properties": { + "accountName": "r-database-account-525", + "apiType": "Sql", + "creationTime": "2023-04-18T00:12:13Z", + "deletionTime": "2023-04-18T00:15:52Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b77da411-6c07-48d0-9c5e-80111da2c689", + "creationTime": "2023-04-18T00:12:14Z", + "deletionTime": "2023-04-18T00:15:52Z" + } + ] + } + }, + { + "name": "396130a8-4ded-4e10-92ab-5a252e2609ca", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/396130a8-4ded-4e10-92ab-5a252e2609ca", + "properties": { + "accountName": "r-database-account-4899", + "apiType": "Sql", + "creationTime": "2023-04-18T00:34:02Z", + "deletionTime": "2023-04-18T00:37:41Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "fda5034d-bd49-4a8e-98eb-3962584fe36c", + "creationTime": "2023-04-18T00:34:03Z", + "deletionTime": "2023-04-18T00:37:41Z" + } + ] + } + }, + { + "name": "0b561650-220e-49b2-89e7-e02c797c5104", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b561650-220e-49b2-89e7-e02c797c5104", + "properties": { + "accountName": "r-database-account-2485", + "apiType": "Sql", + "creationTime": "2023-04-18T01:04:49Z", + "deletionTime": "2023-04-18T01:08:23Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c80c0753-1c3e-4d09-84de-aa3af341ebec", + "creationTime": "2023-04-18T01:04:49Z", + "deletionTime": "2023-04-18T01:08:23Z" + } + ] + } + }, + { + "name": "9884fa67-17cc-4ab1-9611-34567fba800c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9884fa67-17cc-4ab1-9611-34567fba800c", + "properties": { + "accountName": "r-database-account-6167", + "apiType": "Sql", + "creationTime": "2023-04-18T01:21:53Z", + "deletionTime": "2023-04-18T01:33:08Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c9d166ff-65cb-4027-8f4d-cd2b823e1351", + "creationTime": "2023-04-18T01:21:54Z", + "deletionTime": "2023-04-18T01:33:08Z" + } + ] + } + }, + { + "name": "b362127b-54f7-4fd5-a5d2-0d23e3f0036d", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b362127b-54f7-4fd5-a5d2-0d23e3f0036d", + "properties": { + "accountName": "r-database-account-7767", + "apiType": "Sql", + "creationTime": "2023-04-18T02:09:18Z", + "deletionTime": "2023-04-18T03:26:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "451df3a0-f1dd-49e9-a51f-54b36e59413c", + "creationTime": "2023-04-18T02:09:19Z", + "deletionTime": "2023-04-18T03:26:25Z" + } + ] + } + }, + { + "name": "3f551a34-02ea-40f3-9d4a-05fb5cffc82b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3f551a34-02ea-40f3-9d4a-05fb5cffc82b", + "properties": { + "accountName": "restoredaccount-2452", + "apiType": "Sql", + "creationTime": "2023-04-18T03:25:35Z", + "deletionTime": "2023-04-18T03:36:07Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "491aee71-a14e-49f6-9199-48ab60993d85", + "creationTime": "2023-04-18T03:25:35Z", + "deletionTime": "2023-04-18T03:36:07Z" + } + ] + } + }, + { + "name": "baa31ca8-6687-4ad2-81c8-698ae261d580", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/baa31ca8-6687-4ad2-81c8-698ae261d580", + "properties": { + "accountName": "r-database-account-6395", + "apiType": "Sql", + "creationTime": "2023-04-18T13:32:30Z", + "deletionTime": "2023-04-18T13:33:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "91294dbc-b175-4134-8083-e6bca7c34ebb", + "creationTime": "2023-04-18T13:32:31Z", + "deletionTime": "2023-04-18T13:33:25Z" + } + ] + } + }, + { + "name": "51a901f8-bd15-4e0f-bf4e-94fd88fecf37", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/51a901f8-bd15-4e0f-bf4e-94fd88fecf37", + "properties": { + "accountName": "r-database-account-8228", + "apiType": "Sql", + "creationTime": "2023-04-17T22:55:26Z", + "deletionTime": "2023-04-18T14:27:44Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1cbf7297-7176-4542-9fa4-49d7e5e91bfa", + "creationTime": "2023-04-17T22:55:27Z", + "deletionTime": "2023-04-18T14:27:44Z" + } + ] + } + }, + { + "name": "57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", + "properties": { + "accountName": "r-database-account-9915", + "apiType": "Sql", + "creationTime": "2023-04-18T16:11:57Z", + "deletionTime": "2023-04-18T16:12:45Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b8ffc20c-97b8-465d-bdd3-60552f5a057c", + "creationTime": "2023-04-18T16:11:58Z", + "deletionTime": "2023-04-18T16:12:45Z" + } + ] + } + }, + { + "name": "7b3b3638-2bbd-47da-8416-8aca4ecc6741", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7b3b3638-2bbd-47da-8416-8aca4ecc6741", + "properties": { + "accountName": "r-database-account-7194", + "apiType": "Sql", + "creationTime": "2023-04-18T16:27:03Z", + "deletionTime": "2023-04-18T17:46:27Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f50c51e3-0925-4b0d-b12a-49116bd4c79f", + "creationTime": "2023-04-18T16:27:05Z", + "deletionTime": "2023-04-18T17:46:27Z" + } + ] + } + }, + { + "name": "81614a8b-b1e1-44a3-a223-2f2bdb60a73a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81614a8b-b1e1-44a3-a223-2f2bdb60a73a", + "properties": { + "accountName": "restoredaccount-9479", + "apiType": "Sql", + "creationTime": "2023-04-18T17:45:32Z", + "deletionTime": "2023-04-18T17:57:15Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "3edd60a8-0eb0-4d85-b25b-90c44c85b27f", + "creationTime": "2023-04-18T17:45:32Z", + "deletionTime": "2023-04-18T17:57:15Z" + } + ] + } + }, + { + "name": "a618d01f-1ae8-44b2-90d9-0e139e7c41ff", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a618d01f-1ae8-44b2-90d9-0e139e7c41ff", + "properties": { + "accountName": "r-database-account-3726", + "apiType": "Sql", + "creationTime": "2023-04-18T18:09:59Z", + "deletionTime": "2023-04-18T18:10:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "0371b9da-8df6-4189-9e14-250f3be44384", + "creationTime": "2023-04-18T18:10:00Z", + "deletionTime": "2023-04-18T18:10:51Z" + } + ] + } + }, + { + "name": "fedcb6fb-2428-4bd1-8afa-faebdef8a10f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fedcb6fb-2428-4bd1-8afa-faebdef8a10f", + "properties": { + "accountName": "r-database-account-1774", + "apiType": "Sql", + "creationTime": "2023-04-18T19:06:06Z", + "deletionTime": "2023-04-18T20:23:01Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ac9a99bf-4f6b-479e-80bf-7b16a84ac481", + "creationTime": "2023-04-18T19:06:07Z", + "deletionTime": "2023-04-18T20:23:01Z" + } + ] + } + }, + { + "name": "edc97856-e68e-4881-8f7c-7939b9bd2678", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/edc97856-e68e-4881-8f7c-7939b9bd2678", + "properties": { + "accountName": "restoredaccount-4128", + "apiType": "Sql", + "creationTime": "2023-04-18T20:22:32Z", + "deletionTime": "2023-04-18T20:33:48Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f5cf519e-fb56-4c39-963c-615683e9d6a0", + "creationTime": "2023-04-18T20:22:32Z", + "deletionTime": "2023-04-18T20:33:48Z" + } + ] + } + }, + { + "name": "34394e29-5e17-4da2-a734-ba74301275a5", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/34394e29-5e17-4da2-a734-ba74301275a5", + "properties": { + "accountName": "r-database-account-6660", + "apiType": "Sql", + "creationTime": "2023-04-18T20:47:01Z", + "deletionTime": "2023-04-18T20:47:57Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "28e95726-a165-4f67-a7e1-c416b1a9348f", + "creationTime": "2023-04-18T20:47:02Z", + "deletionTime": "2023-04-18T20:47:57Z" + } + ] + } + }, + { + "name": "ace1682c-5308-4c5d-a9db-7ff549629e40", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ace1682c-5308-4c5d-a9db-7ff549629e40", + "properties": { + "accountName": "r-database-account-9177", + "apiType": "Sql", + "creationTime": "2023-04-18T22:42:05Z", + "deletionTime": "2023-04-18T22:42:43Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "accc8467-dc2a-4143-b608-9c2344bb1e2e", + "creationTime": "2023-04-18T22:42:06Z", + "deletionTime": "2023-04-18T22:42:43Z" + } + ] + } + }, + { + "name": "4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", + "properties": { + "accountName": "r-database-account-2021", + "apiType": "Sql", + "creationTime": "2023-04-18T23:07:37Z", + "deletionTime": "2023-04-18T23:08:08Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "16dfa240-459b-4603-85b8-a396991a5e97", + "creationTime": "2023-04-18T23:07:38Z", + "deletionTime": "2023-04-18T23:08:08Z" + } + ] + } + }, + { + "name": "f8009a8a-a683-4969-a990-03f2fbc2c357", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f8009a8a-a683-4969-a990-03f2fbc2c357", + "properties": { + "accountName": "r-database-account-8744", + "apiType": "Sql", + "creationTime": "2023-04-19T03:02:08Z", + "deletionTime": "2023-04-19T04:19:02Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "17fd7f68-0b30-4914-ba38-df23f7fd370f", + "creationTime": "2023-04-19T03:02:09Z", + "deletionTime": "2023-04-19T04:19:02Z" + } + ] + } + }, + { + "name": "133f8fa2-4579-4865-a24c-025431c27770", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/133f8fa2-4579-4865-a24c-025431c27770", + "properties": { + "accountName": "restoredaccount-3290", + "apiType": "Sql", + "creationTime": "2023-04-19T04:18:33Z", + "deletionTime": "2023-04-19T04:29:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "8f15ca6f-59e6-4bc4-8d12-e34438839844", + "creationTime": "2023-04-19T04:18:33Z", + "deletionTime": "2023-04-19T04:29:51Z" + } + ] + } + }, + { + "name": "363500e0-8574-42d3-bcb0-78b9930907ed", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/363500e0-8574-42d3-bcb0-78b9930907ed", + "properties": { + "accountName": "r-database-account-9591", + "apiType": "Sql", + "creationTime": "2023-04-19T04:42:38Z", + "deletionTime": "2023-04-19T04:43:26Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "7d495937-f573-4895-a5a2-f7a57e189e0a", + "creationTime": "2023-04-19T04:42:39Z", + "deletionTime": "2023-04-19T04:43:26Z" + } + ] + } + }, + { + "name": "539f95cf-af16-4c95-8ba6-3d96971c755e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/539f95cf-af16-4c95-8ba6-3d96971c755e", + "properties": { + "accountName": "r-database-account-8090", + "apiType": "Sql", + "creationTime": "2023-04-19T05:41:29Z", + "deletionTime": "2023-04-19T06:58:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ffff6e0c-bb13-4441-9bfb-4eab39131773", + "creationTime": "2023-04-19T05:41:30Z", + "deletionTime": "2023-04-19T06:58:53Z" + } + ] + } + }, + { + "name": "48bd7479-e12e-42d5-9693-f0795eca3d89", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/48bd7479-e12e-42d5-9693-f0795eca3d89", + "properties": { + "accountName": "restoredaccount-6404", + "apiType": "Sql", + "creationTime": "2023-04-19T06:58:18Z", + "deletionTime": "2023-04-19T07:09:02Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "fa2c002a-9218-4777-a5cd-1880bde715ea", + "creationTime": "2023-04-19T06:58:18Z", + "deletionTime": "2023-04-19T07:09:02Z" + } + ] + } + }, + { + "name": "075a5d48-f9d7-4306-b262-03b3737ba475", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/075a5d48-f9d7-4306-b262-03b3737ba475", + "properties": { + "accountName": "r-database-account-4017", + "apiType": "Sql", + "creationTime": "2023-04-19T07:21:28Z", + "deletionTime": "2023-04-19T07:22:09Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b14d2cf8-83ac-45ff-bc4e-1f199f848240", + "creationTime": "2023-04-19T07:21:29Z", + "deletionTime": "2023-04-19T07:22:09Z" + } + ] + } + }, + { + "name": "2e6d7920-9c30-41cf-ab15-20d2f5c82abf", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2e6d7920-9c30-41cf-ab15-20d2f5c82abf", + "properties": { + "accountName": "r-database-account-2005", + "apiType": "Sql", + "creationTime": "2023-04-19T17:40:33Z", + "deletionTime": "2023-04-19T18:57:32Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5d1cf26-ce18-43b2-9533-62904f9851a1", + "creationTime": "2023-04-19T17:40:34Z", + "deletionTime": "2023-04-19T18:57:32Z" + } + ] + } + }, + { + "name": "4ca1a638-30f9-412c-ba0e-e032a5b27651", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4ca1a638-30f9-412c-ba0e-e032a5b27651", + "properties": { + "accountName": "restoredaccount-7552", + "apiType": "Sql", + "creationTime": "2023-04-19T18:56:48Z", + "deletionTime": "2023-04-19T19:08:15Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "294a8817-cd2a-41a8-90a9-581dde2404b3", + "creationTime": "2023-04-19T18:56:48Z", + "deletionTime": "2023-04-19T19:08:15Z" + } + ] + } + }, + { + "name": "707bd438-bc4a-4206-bf34-42de3238ba79", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/707bd438-bc4a-4206-bf34-42de3238ba79", + "properties": { + "accountName": "r-database-account-646", + "apiType": "Sql", + "creationTime": "2023-04-19T19:21:04Z", + "deletionTime": "2023-04-19T19:21:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6591ef21-988f-47ed-8b0c-1545a5528b09", + "creationTime": "2023-04-19T19:21:05Z", + "deletionTime": "2023-04-19T19:21:53Z" + } + ] + } + }, + { + "name": "5c92ee4f-9697-48ae-815d-9b14ae598781", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c92ee4f-9697-48ae-815d-9b14ae598781", + "properties": { + "accountName": "r-database-account-9891", + "apiType": "Sql", + "creationTime": "2023-04-19T20:56:22Z", + "deletionTime": "2023-04-19T22:13:46Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "53a6a001-bc9f-4171-9928-fcc9a77577e5", + "creationTime": "2023-04-19T20:56:23Z", + "deletionTime": "2023-04-19T22:13:46Z" + } + ] + } + }, + { + "name": "8c8b9024-40be-4f92-a466-8370faf4eacd", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8c8b9024-40be-4f92-a466-8370faf4eacd", + "properties": { + "accountName": "restoredaccount-8231", + "apiType": "Sql", + "creationTime": "2023-04-19T22:12:50Z", + "deletionTime": "2023-04-19T22:23:58Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6340bdaf-07bb-45b1-b411-7921b7a52e97", + "creationTime": "2023-04-19T22:12:50Z", + "deletionTime": "2023-04-19T22:23:58Z" + } + ] + } + }, + { + "name": "5c6333bd-6bc8-4e1f-8672-9e386c60eef1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c6333bd-6bc8-4e1f-8672-9e386c60eef1", + "properties": { + "accountName": "r-database-account-26", + "apiType": "Sql", + "creationTime": "2023-04-19T22:36:04Z", + "deletionTime": "2023-04-19T22:37:08Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "e9a47ca5-930f-4aa6-ac17-36a7cbe8cba8", + "creationTime": "2023-04-19T22:36:04Z", + "deletionTime": "2023-04-19T22:37:08Z" + } + ] + } + }, + { + "name": "9519c744-78d1-42ce-84bb-777e7c3cb046", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9519c744-78d1-42ce-84bb-777e7c3cb046", + "properties": { + "accountName": "r-database-account-8825", + "apiType": "Sql", + "creationTime": "2023-04-19T23:39:20Z", + "deletionTime": "2023-04-19T23:47:25Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f435cc2e-e45b-4157-8e44-37f29671a9c0", + "creationTime": "2023-04-19T23:39:21Z", + "deletionTime": "2023-04-19T23:47:25Z" + } + ] + } + }, + { + "name": "9e112cc2-439e-4cc6-aa49-7fb930652213", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e112cc2-439e-4cc6-aa49-7fb930652213", + "properties": { + "accountName": "r-database-account-9118", + "apiType": "Sql", + "creationTime": "2023-04-19T20:20:11Z", + "deletionTime": "2023-04-19T23:48:12Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d7145521-4702-4ca4-a561-a25cc303c858", + "creationTime": "2023-04-19T20:20:12Z", + "deletionTime": "2023-04-19T23:48:12Z" + } + ] + } + }, + { + "name": "789de828-aa5f-47fb-8313-a13a25376c97", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/789de828-aa5f-47fb-8313-a13a25376c97", + "properties": { + "accountName": "r-database-account-904", + "apiType": "Sql", + "creationTime": "2023-04-17T22:35:24Z", + "deletionTime": "2023-04-19T23:48:20Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "765fa936-f0ff-4ded-8e4a-19d48f425802", + "creationTime": "2023-04-17T22:35:25Z", + "deletionTime": "2023-04-19T23:48:20Z" + } + ] + } + }, + { + "name": "7bfa7165-82b3-40d0-bbb5-4b71c77a620c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7bfa7165-82b3-40d0-bbb5-4b71c77a620c", + "properties": { + "accountName": "r-database-account-8401", + "apiType": "Sql", + "creationTime": "2023-04-19T02:38:50Z", + "deletionTime": "2023-04-19T23:49:12Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3d83dafe-7b63-4dc2-a490-57664ae4913a", + "creationTime": "2023-04-19T02:38:51Z", + "deletionTime": "2023-04-19T23:49:12Z" + } + ] + } + }, + { + "name": "4e974916-da87-4016-bbe3-0618f3aecf2c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4e974916-da87-4016-bbe3-0618f3aecf2c", + "properties": { + "accountName": "r-database-account-6679", + "apiType": "Sql", + "creationTime": "2023-04-17T22:29:22Z", + "deletionTime": "2023-04-19T23:53:08Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ebb1e8c4-224f-47ea-b7e1-a09f1aa3a132", + "creationTime": "2023-04-17T22:29:23Z", + "deletionTime": "2023-04-19T23:53:08Z" + } + ] + } + }, + { + "name": "d256cb21-a1a9-42a0-81db-13f0a6c1137e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d256cb21-a1a9-42a0-81db-13f0a6c1137e", + "properties": { + "accountName": "r-database-account-6099", + "apiType": "Sql", + "creationTime": "2023-04-18T16:25:48Z", + "deletionTime": "2023-04-19T23:53:11Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2cf7c4ff-1b46-433d-affd-af97ad9aec94", + "creationTime": "2023-04-18T16:25:49Z", + "deletionTime": "2023-04-19T23:53:11Z" + } + ] + } + }, + { + "name": "9b3db21c-08d7-4198-bc30-4cc6808f495b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9b3db21c-08d7-4198-bc30-4cc6808f495b", + "properties": { + "accountName": "r-database-account-5433", + "apiType": "Sql", + "creationTime": "2023-04-17T22:54:36Z", + "deletionTime": "2023-04-19T23:53:30Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f72b5e7f-5e80-4c3e-9b0b-e8fa06258f58", + "creationTime": "2023-04-17T22:54:37Z", + "deletionTime": "2023-04-19T23:53:30Z" + } + ] + } + }, + { + "name": "030969ae-8f77-4a8c-a143-3ea7918a6a15", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/030969ae-8f77-4a8c-a143-3ea7918a6a15", + "properties": { + "accountName": "r-database-account-4785", + "apiType": "Sql", + "creationTime": "2023-04-19T23:51:43Z", + "deletionTime": "2023-04-19T23:53:36Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1dcb01a3-a653-44fc-9622-575fe1d69e1e", + "creationTime": "2023-04-19T23:51:44Z", + "deletionTime": "2023-04-19T23:53:36Z" + } + ] + } + }, + { + "name": "f901e9d9-57d4-4939-ab5a-853d33125da9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f901e9d9-57d4-4939-ab5a-853d33125da9", + "properties": { + "accountName": "r-database-account-4144", + "apiType": "Sql", + "creationTime": "2023-04-17T22:38:31Z", + "deletionTime": "2023-04-19T23:53:44Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ef92e1be-ac4e-4aaa-9525-ba1966156f15", + "creationTime": "2023-04-17T22:38:32Z", + "deletionTime": "2023-04-19T23:53:44Z" + } + ] + } + }, + { + "name": "e2c2398c-3aa1-4d04-84da-64bb557292f3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e2c2398c-3aa1-4d04-84da-64bb557292f3", + "properties": { + "accountName": "r-database-account-2826", + "apiType": "Sql", + "creationTime": "2023-04-19T19:54:34Z", + "deletionTime": "2023-04-19T23:53:47Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c03d8e05-59e3-420e-a9be-fba97b9d05bf", + "creationTime": "2023-04-19T19:54:35Z", + "deletionTime": "2023-04-19T23:53:47Z" + } + ] + } + }, + { + "name": "33c24168-b5c2-47d4-9762-d577d358c06a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/33c24168-b5c2-47d4-9762-d577d358c06a", + "properties": { + "accountName": "r-database-account-168", + "apiType": "Sql", + "creationTime": "2023-04-19T22:47:58Z", + "deletionTime": "2023-04-19T23:54:08Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "047a0df3-b96b-4dfe-acf1-88b2de702c89", + "creationTime": "2023-04-19T22:47:59Z", + "deletionTime": "2023-04-19T23:54:08Z" + } + ] + } + }, + { + "name": "9f83a8dd-4124-4fde-8ae0-88721048ec59", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9f83a8dd-4124-4fde-8ae0-88721048ec59", + "properties": { + "accountName": "r-database-account-1528", + "apiType": "Sql", + "creationTime": "2023-04-17T21:38:01Z", + "deletionTime": "2023-04-19T23:54:11Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b3d11030-af2a-4a09-9290-79c78ece3c5a", + "creationTime": "2023-04-17T21:38:02Z", + "deletionTime": "2023-04-19T23:54:11Z" + } + ] + } + }, + { + "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "properties": { + "accountName": "r-database-account-5849", + "apiType": "Sql", + "creationTime": "2023-04-20T00:32:15Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", + "creationTime": "2023-04-20T00:32:16Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "e7a884a0-d941-44cf-a344-2dd1d8c91284", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7a884a0-d941-44cf-a344-2dd1d8c91284", + "properties": { + "accountName": "restoredaccount-6463", + "apiType": "Sql", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e242568-ac8e-4a84-8fae-a1dcd16744f4", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "properties": { + "accountName": "r-database-account-1146", + "apiType": "Sql", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" + } + ] + } + }, + { + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "properties": { + "accountName": "restoredaccount-2866", + "apiType": "Sql", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" + } + ] + } + }, + { + "name": "d88e6a3c-687d-4990-a516-da739070bf81", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", + "properties": { + "accountName": "kal-continuous7", + "apiType": "Sql", + "creationTime": "2022-06-07T20:09:38Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", + "creationTime": "2022-06-07T20:09:39Z" + } + ] + } + }, + { + "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "properties": { + "accountName": "kal-continuous7-restored1", + "apiType": "Sql", + "creationTime": "2022-06-10T19:23:44Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", + "creationTime": "2022-06-10T19:23:44Z" + } + ] + } + }, + { + "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", + "properties": { + "accountName": "kal-continuous7-demorestore", + "apiType": "Sql", + "creationTime": "2022-06-10T21:20:46Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", + "creationTime": "2022-06-10T21:20:46Z" + } + ] + } + }, + { + "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "properties": { + "accountName": "test-billing-continuous30", + "apiType": "Sql", + "creationTime": "2022-07-28T21:54:20Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", + "creationTime": "2022-07-28T21:54:21Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", + "creationTime": "2022-08-31T21:09:14Z" + }, + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", + "creationTime": "2022-08-31T22:24:21Z" + } + ] + } + }, + { + "name": "e84733a9-ee18-456c-b12b-1d37e542608b", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", + "properties": { + "accountName": "new-cosmsosdb-account", + "apiType": "Sql", + "creationTime": "2022-08-31T20:34:40Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", + "creationTime": "2022-08-31T20:34:40Z" + } + ] + } + }, + { + "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", + "properties": { + "accountName": "amisitestpitracc", + "apiType": "Sql", + "creationTime": "2023-03-29T04:22:22Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", + "creationTime": "2023-03-29T04:22:23Z", + "deletionTime": "2023-03-30T19:57:43Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", + "creationTime": "2023-03-29T07:29:18Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "2414c009-8022-442c-9ab6-81c276eb2a99", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", + "properties": { + "accountName": "vinh-periodic", + "apiType": "Sql", + "creationTime": "2022-06-06T19:53:54Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", + "creationTime": "2022-06-06T19:53:54Z" + } + ] + } + }, + { + "name": "5716280d-381e-4045-b936-d0edbfc7317b", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", + "properties": { + "accountName": "databaseaccount9284", + "apiType": "Sql", + "creationTime": "2022-09-20T05:50:05Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", + "creationTime": "2022-09-20T05:50:06Z" + } + ] + } + }, + { + "name": "34a9cb27-53a5-4143-9af7-810285110075", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", + "properties": { + "accountName": "databaseaccount6234", + "apiType": "Sql", + "creationTime": "2022-09-20T09:04:22Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", + "creationTime": "2022-09-20T09:04:23Z" + } + ] + } + }, + { + "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "properties": { + "accountName": "databaseaccount8251", + "apiType": "Sql", + "creationTime": "2022-09-20T16:29:44Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", + "creationTime": "2022-09-20T16:29:45Z" + } + ] + } + }, + { + "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", + "properties": { + "accountName": "sql-portal-test", + "apiType": "Sql", + "creationTime": "2023-03-08T18:47:23Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", + "creationTime": "2023-03-08T18:47:23Z" + } + ] + } + }, + { + "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "properties": { + "accountName": "dsapaliga-xrr-cu", + "apiType": "Sql", + "creationTime": "2023-03-30T15:10:46Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", + "creationTime": "2023-03-30T15:10:47Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", + "creationTime": "2023-03-30T15:13:00Z" + } + ] + } + }, + { + "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", + "properties": { + "accountName": "databaseaccount2058", + "apiType": "MongoDB", + "creationTime": "2022-04-14T02:10:48Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", + "creationTime": "2022-04-14T02:10:49Z" + } + ] + } + }, + { + "name": "fce807d5-4358-4ea1-8130-0439181f6be0", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", + "properties": { + "accountName": "vinh-demo-periodic", + "apiType": "Sql", + "creationTime": "2022-05-26T04:53:41Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", + "creationTime": "2022-05-26T04:53:41Z" + } + ] + } + }, + { + "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "properties": { + "accountName": "vinh-demo-continous30", + "apiType": "Sql", + "creationTime": "2022-05-26T03:29:41Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", + "creationTime": "2022-05-26T03:29:42Z" + } + ] + } + }, + { + "name": "9177692a-0db9-4c0c-af1d-af0310418b43", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", + "properties": { + "accountName": "vinh-demo-continous7", + "apiType": "Sql", + "creationTime": "2022-05-26T04:14:49Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", + "creationTime": "2022-05-26T04:14:50Z" + } + ] + } + }, + { + "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", + "properties": { + "accountName": "vinh-demo-periodic2", + "apiType": "Sql", + "creationTime": "2022-05-26T18:12:07Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", + "creationTime": "2022-05-26T18:12:07Z" + } + ] + } + }, + { + "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "properties": { + "accountName": "vinh-demo-continous7-2", + "apiType": "Sql", + "creationTime": "2022-05-26T18:05:53Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", + "creationTime": "2022-05-26T18:05:53Z" + } + ] + } + }, + { + "name": "9484f425-a747-4e73-b8c4-04983e984315", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", + "properties": { + "accountName": "clip2dbd2gollbc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z" + } + ] + } + }, + { + "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", + "properties": { + "accountName": "cli3fpzmlckewgo", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:36:38Z", + "deletionTime": "2023-04-07T19:56:52Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", + "creationTime": "2023-04-07T19:36:40Z", + "deletionTime": "2023-04-07T19:56:52Z" + } + ] + } + }, + { + "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", + "properties": { + "accountName": "cliftacbeowmtnb", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z" + } + ] + } + }, + { + "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "properties": { + "accountName": "clipofi2jwwbtu4", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:22:17Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", + "creationTime": "2023-04-07T21:22:18Z", + "deletionTime": "2023-04-07T21:42:59Z" + } + ] + } + }, + { + "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", + "properties": { + "accountName": "cliwq55chmmvzvu", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T13:41:40Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", + "creationTime": "2023-04-14T13:41:42Z", + "deletionTime": "2023-04-14T14:02:52Z" + } + ] + } + }, + { + "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "properties": { + "accountName": "clixsitnvbfssqd", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z" + } + ] + } + }, + { + "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", + "properties": { + "accountName": "clinwxgmq26mrzy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T14:50:51Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", + "creationTime": "2023-04-14T14:50:52Z", + "deletionTime": "2023-04-14T15:10:01Z" + } + ] + } + }, + { + "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", + "properties": { + "accountName": "clibaor2akp53uy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z" + } + ] + } + }, + { + "name": "40dbd153-3d36-42b7-8649-48e6307849f9", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", + "properties": { + "accountName": "cliiumnemwk33v5", + "apiType": "Sql", + "creationTime": "2023-04-14T16:48:09Z", + "oldestRestorableTime": "2023-04-14T16:48:09Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", + "creationTime": "2023-04-14T16:48:10Z" + } + ] + } + }, + { + "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "properties": { + "accountName": "cli-continuous30-cylyo7wg-restored", + "apiType": "Sql", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z" + } + ] + } + }, + { + "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", + "properties": { + "accountName": "cli-continuous30-cylyo7wg", + "apiType": "Sql", + "creationTime": "2023-03-24T15:42:44Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", + "creationTime": "2023-03-24T15:42:45Z", + "deletionTime": "2023-03-24T16:01:53Z" + } + ] + } + }, + { + "name": "8c9286c5-c880-449c-9030-327de00e36b6", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", + "properties": { + "accountName": "cli-continuous30-wuye4s75", + "apiType": "Sql", + "creationTime": "2023-03-24T16:04:54Z", + "deletionTime": "2023-03-24T16:12:17Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", + "creationTime": "2023-03-24T16:04:55Z", + "deletionTime": "2023-03-24T16:12:17Z" + } + ] + } + }, + { + "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "properties": { + "accountName": "cli-continuous30-qpysbnmc", + "apiType": "Sql", + "creationTime": "2023-03-24T16:45:16Z", + "deletionTime": "2023-03-24T16:52:22Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", + "creationTime": "2023-03-24T16:45:17Z", + "deletionTime": "2023-03-24T16:52:22Z" + } + ] + } + }, + { + "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "properties": { + "accountName": "cli-continuous30-4uv42csa", + "apiType": "Sql", + "creationTime": "2023-03-24T17:01:08Z", + "deletionTime": "2023-03-24T17:07:36Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", + "creationTime": "2023-03-24T17:01:09Z", + "deletionTime": "2023-03-24T17:07:36Z" + } + ] + } + }, + { + "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "properties": { + "accountName": "cli-continuous30-e6tglvvh", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:31Z", + "deletionTime": "2023-03-24T19:24:33Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", + "creationTime": "2023-03-24T19:18:32Z", + "deletionTime": "2023-03-24T19:24:33Z" + } + ] + } + }, + { + "name": "bbc21107-730f-460e-a806-f73643e95a9b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", + "properties": { + "accountName": "cli-continuous30-mgbfodqo", + "apiType": "Sql", + "creationTime": "2023-03-29T20:28:56Z", + "deletionTime": "2023-03-29T20:31:58Z", + "oldestRestorableTime": "2023-03-22T20:31:58Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", + "creationTime": "2023-03-29T20:28:57Z", + "deletionTime": "2023-03-29T20:31:58Z" + } + ] + } + }, + { + "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "properties": { + "accountName": "cli-continuous30-pqnqtvrw", + "apiType": "Sql", + "creationTime": "2023-03-29T20:35:21Z", + "deletionTime": "2023-03-29T20:38:56Z", + "oldestRestorableTime": "2023-03-22T20:38:56Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", + "creationTime": "2023-03-29T20:37:50Z", + "deletionTime": "2023-03-29T20:38:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", + "creationTime": "2023-03-29T20:35:22Z", + "deletionTime": "2023-03-29T20:38:56Z" + } + ] + } + }, + { + "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", + "properties": { + "accountName": "cli-continuous30-nbcgdudl", + "apiType": "Sql", + "creationTime": "2023-03-29T20:49:15Z", + "deletionTime": "2023-03-29T20:52:54Z", + "oldestRestorableTime": "2023-03-22T20:52:54Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", + "creationTime": "2023-03-29T20:51:44Z", + "deletionTime": "2023-03-29T20:52:54Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", + "creationTime": "2023-03-29T20:49:16Z", + "deletionTime": "2023-03-29T20:52:54Z" + } + ] + } + }, + { + "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "properties": { + "accountName": "cli-continuous30-fvguiiqd", + "apiType": "Sql", + "creationTime": "2023-03-29T20:58:03Z", + "deletionTime": "2023-03-29T21:26:03Z", + "oldestRestorableTime": "2023-03-22T21:26:03Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", + "creationTime": "2023-03-29T21:00:45Z", + "deletionTime": "2023-03-29T21:26:03Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", + "creationTime": "2023-03-29T20:58:04Z", + "deletionTime": "2023-03-29T21:26:03Z" + } + ] + } + }, + { + "name": "648c8b93-36da-440c-801c-19d18e3b3f21", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", + "properties": { + "accountName": "cli-continuous30-of2nmx5u", + "apiType": "Sql", + "creationTime": "2023-03-29T22:12:53Z", + "deletionTime": "2023-03-29T22:16:03Z", + "oldestRestorableTime": "2023-03-22T22:16:03Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", + "creationTime": "2023-03-29T22:12:54Z", + "deletionTime": "2023-03-29T22:16:03Z" + } + ] + } + }, + { + "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "properties": { + "accountName": "cli-continuous30-guwsy4ak", + "apiType": "Sql", + "creationTime": "2023-03-29T22:43:18Z", + "deletionTime": "2023-03-29T22:48:52Z", + "oldestRestorableTime": "2023-03-22T22:48:52Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", + "creationTime": "2023-03-29T22:45:41Z", + "deletionTime": "2023-03-29T22:48:52Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", + "creationTime": "2023-03-29T22:43:19Z", + "deletionTime": "2023-03-29T22:48:52Z" + } + ] + } + }, + { + "name": "751f535c-90ad-422c-8791-d85058c83f19", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", + "properties": { + "accountName": "cli-systemid-kq6yvu46yp4h-restored", + "apiType": "Sql", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z" + } + ] + } + }, + { + "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", + "properties": { + "accountName": "cli-systemid-kq6yvu46yp4h", + "apiType": "Sql", + "creationTime": "2023-04-05T22:25:06Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", + "creationTime": "2023-04-05T22:25:07Z", + "deletionTime": "2023-04-05T22:47:27Z" + } + ] + } + }, + { + "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", + "properties": { + "accountName": "cli-systemid-pml7r44tlwdv-restored", + "apiType": "Sql", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z" + } + ] + } + }, + { + "name": "9962f6da-506f-408b-927f-4eb07a12c382", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", + "properties": { + "accountName": "cli-systemid-pml7r44tlwdv", + "apiType": "Sql", + "creationTime": "2023-04-07T15:43:38Z", + "deletionTime": "2023-04-07T16:06:55Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", + "creationTime": "2023-04-07T15:43:39Z", + "deletionTime": "2023-04-07T16:06:55Z" + } + ] + } + }, + { + "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", + "properties": { + "accountName": "cli-continuous30-5xp42uvg", + "apiType": "Sql", + "creationTime": "2023-04-07T16:35:15Z", + "deletionTime": "2023-04-07T16:38:01Z", + "oldestRestorableTime": "2023-03-31T16:38:01Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", + "creationTime": "2023-04-07T16:35:16Z", + "deletionTime": "2023-04-07T16:38:01Z" + } + ] + } + }, + { + "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", + "properties": { + "accountName": "cli-continuous7-kadtogihc", + "apiType": "Sql", + "creationTime": "2023-04-07T16:56:03Z", + "deletionTime": "2023-04-07T16:57:45Z", + "oldestRestorableTime": "2023-03-31T16:56:56Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", + "creationTime": "2023-04-07T16:56:04Z", + "deletionTime": "2023-04-07T16:57:45Z" + } + ] + } + }, + { + "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", + "properties": { + "accountName": "cli-continuous7-ghrp5g2r3", + "apiType": "Sql", + "creationTime": "2023-04-07T17:01:55Z", + "deletionTime": "2023-04-07T17:04:46Z", + "oldestRestorableTime": "2023-03-31T17:04:46Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", + "creationTime": "2023-04-07T17:01:56Z", + "deletionTime": "2023-04-07T17:04:46Z" + } + ] + } + }, + { + "name": "53c25e9f-44ca-4509-adcd-23802185cba8", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", + "properties": { + "accountName": "cli-periodic-d6qxquiv72md", + "apiType": "Sql", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z", + "oldestRestorableTime": "2023-04-07T17:18:47Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z" + } + ] + } + }, + { + "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "properties": { + "accountName": "cliufubmalcsuyb", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z" + } + ] + } + }, + { + "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", + "properties": { + "accountName": "clitfyptqa45syc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:33:20Z", + "deletionTime": "2023-04-07T17:52:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", + "creationTime": "2023-04-07T17:33:21Z", + "deletionTime": "2023-04-07T17:52:53Z" + } + ] + } + }, + { + "name": "329d5785-2f04-451c-a748-f79d0f562ff9", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", + "properties": { + "accountName": "cliahilffivwqwi", + "apiType": "MongoDB", + "creationTime": "2023-04-07T19:26:23Z", + "deletionTime": "2023-04-07T19:31:01Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", + "creationTime": "2023-04-07T19:26:24Z", + "deletionTime": "2023-04-07T19:31:01Z" + } + ] + } + }, + { + "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "properties": { + "accountName": "cli5nu6pl77n5ia", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:12:03Z", + "deletionTime": "2023-04-07T20:16:06Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", + "creationTime": "2023-04-07T20:12:04Z", + "deletionTime": "2023-04-07T20:16:06Z" + } + ] + } + }, + { + "name": "ced5610b-4422-469f-a9ca-f83235fea285", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", + "properties": { + "accountName": "clisrkiadnudmcc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:25:32Z", + "deletionTime": "2023-04-07T20:29:54Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", + "creationTime": "2023-04-07T20:25:33Z", + "deletionTime": "2023-04-07T20:29:54Z" + } + ] + } + }, + { + "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "properties": { + "accountName": "cliypixaxarcyzp", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:36:05Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", + "creationTime": "2023-04-07T20:36:06Z", + "deletionTime": "2023-04-07T20:56:57Z" + } + ] + } + }, + { + "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", + "properties": { + "accountName": "clilnfxvj3jbdds", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z" + } + ] + } + }, + { + "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", + "properties": { + "accountName": "cliwoaphmlu77h5", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:56:14Z", + "deletionTime": "2023-04-07T21:59:20Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", + "creationTime": "2023-04-07T21:56:15Z", + "deletionTime": "2023-04-07T21:59:20Z" + } + ] + } + }, + { + "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "properties": { + "accountName": "clioh53zckfrcxk", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T22:04:54Z", + "deletionTime": "2023-04-07T22:09:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", + "creationTime": "2023-04-07T22:04:55Z", + "deletionTime": "2023-04-07T22:09:53Z" + } + ] + } + }, + { + "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", + "properties": { + "accountName": "cli7cixib236qbg", + "apiType": "Sql", + "creationTime": "2023-04-08T17:25:42Z", + "deletionTime": "2023-04-08T17:29:36Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", + "creationTime": "2023-04-08T17:25:44Z", + "deletionTime": "2023-04-08T17:29:36Z" + } + ] + } + }, + { + "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "properties": { + "accountName": "cli-continuous7-hfvk4t4fj", + "apiType": "Sql", + "creationTime": "2023-04-13T14:48:07Z", + "deletionTime": "2023-04-13T14:49:43Z", + "oldestRestorableTime": "2023-04-06T14:49:43Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", + "creationTime": "2023-04-13T14:48:08Z", + "deletionTime": "2023-04-13T14:49:43Z" + } + ] + } + }, + { + "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", + "properties": { + "accountName": "cli-continuous7-zputoz3gu", + "apiType": "Sql", + "creationTime": "2023-04-14T13:23:19Z", + "deletionTime": "2023-04-14T13:26:29Z", + "oldestRestorableTime": "2023-04-07T13:26:29Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", + "creationTime": "2023-04-14T13:23:20Z", + "deletionTime": "2023-04-14T13:26:29Z" + } + ] + } + }, + { + "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "properties": { + "accountName": "cli-continuous7-737ullqld", + "apiType": "Sql", + "creationTime": "2023-04-14T13:36:13Z", + "deletionTime": "2023-04-14T13:38:00Z", + "oldestRestorableTime": "2023-04-07T13:38:00Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", + "creationTime": "2023-04-14T13:36:14Z", + "deletionTime": "2023-04-14T13:38:00Z" + } + ] + } + }, + { + "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", + "properties": { + "accountName": "clidiym44m6kuui", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z" + } + ] + } + }, + { + "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", + "properties": { + "accountName": "clifxznjcelc2k7", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:07:29Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", + "creationTime": "2023-04-14T14:07:30Z", + "deletionTime": "2023-04-14T14:27:29Z" + } + ] + } + }, + { + "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "properties": { + "accountName": "clifdo3gehahcp3", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:32:21Z", + "deletionTime": "2023-04-14T14:36:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", + "creationTime": "2023-04-14T14:32:22Z", + "deletionTime": "2023-04-14T14:36:53Z" + } + ] + } + }, + { + "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", + "properties": { + "accountName": "clijvrcnqk7clgr", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:39:15Z", + "deletionTime": "2023-04-14T15:59:46Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", + "creationTime": "2023-04-14T15:39:16Z", + "deletionTime": "2023-04-14T15:59:46Z" + } + ] + } + }, + { + "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", + "properties": { + "accountName": "cliw5rqb5ajsohh", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z" + } + ] + } + }, + { + "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "properties": { + "accountName": "cliz3js7jmkwxxb", + "apiType": "Sql", + "creationTime": "2023-04-14T16:51:53Z", + "deletionTime": "2023-04-14T16:55:53Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", + "creationTime": "2023-04-14T16:51:54Z", + "deletionTime": "2023-04-14T16:55:53Z" + } + ] + } + }, + { + "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", + "properties": { + "accountName": "cliamicotk3huk3", + "apiType": "MongoDB", + "creationTime": "2023-04-14T16:59:34Z", + "deletionTime": "2023-04-14T17:04:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", + "creationTime": "2023-04-14T16:59:35Z", + "deletionTime": "2023-04-14T17:04:35Z" + } + ] + } + }, + { + "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "properties": { + "accountName": "cli7fcxogqa75ng", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T17:07:39Z", + "deletionTime": "2023-04-14T17:12:37Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", + "creationTime": "2023-04-14T17:07:40Z", + "deletionTime": "2023-04-14T17:12:37Z" + } + ] + } + }, + { + "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "properties": { + "accountName": "clibijii3gdxu7r", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T17:16:06Z", + "deletionTime": "2023-04-14T17:19:35Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", + "creationTime": "2023-04-14T17:16:07Z", + "deletionTime": "2023-04-14T17:19:35Z" + } + ] + } + }, + { + "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "properties": { + "accountName": "cli-continuous7-ixtyb5gvo", + "apiType": "Sql", + "creationTime": "2023-04-14T17:21:52Z", + "deletionTime": "2023-04-14T17:23:42Z", + "oldestRestorableTime": "2023-04-07T17:22:55Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", + "creationTime": "2023-04-14T17:21:53Z", + "deletionTime": "2023-04-14T17:23:42Z" + } + ] + } + }, + { + "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", + "properties": { + "accountName": "cli-continuous30-expjec5z", + "apiType": "Sql", + "creationTime": "2023-04-14T17:25:24Z", + "deletionTime": "2023-04-14T17:27:06Z", + "oldestRestorableTime": "2023-04-07T17:27:06Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", + "creationTime": "2023-04-14T17:25:25Z", + "deletionTime": "2023-04-14T17:27:06Z" + } + ] + } + }, + { + "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "properties": { + "accountName": "cli-periodic-ppe7oaphbkgu", + "apiType": "Sql", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z", + "oldestRestorableTime": "2023-04-14T18:01:21Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z" + } + ] + } + }, + { + "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "properties": { + "accountName": "cli-systemid-ppze3bdfpo3g-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z" + } + ] + } + }, + { + "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", + "properties": { + "accountName": "cli-systemid-ppze3bdfpo3g", + "apiType": "Sql", + "creationTime": "2023-04-14T18:08:00Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", + "creationTime": "2023-04-14T18:08:01Z", + "deletionTime": "2023-04-14T18:31:44Z" + } + ] + } + }, + { + "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "properties": { + "accountName": "cli7i23nmwwvyik", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T18:36:04Z", + "deletionTime": "2023-04-14T18:40:37Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", + "creationTime": "2023-04-14T18:36:05Z", + "deletionTime": "2023-04-14T18:40:37Z" + } + ] + } + }, + { + "name": "f4004a76-8173-4d36-9590-6090cce37a4d", + "location": "West Europe", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", + "properties": { + "accountName": "aholdtest", + "apiType": "MongoDB", + "creationTime": "2021-07-01T19:34:24Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Europe", + "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", + "creationTime": "2021-07-01T19:34:25Z" + } + ] + } + }, + { + "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", + "properties": { + "accountName": "targetacct112", + "apiType": "Sql", + "creationTime": "2021-03-01T10:33:41Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", + "creationTime": "2021-03-01T10:33:41Z" + } + ] + } + }, + { + "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", + "properties": { + "accountName": "pitrmongotest", + "apiType": "MongoDB", + "creationTime": "2020-10-01T17:27:22Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", + "creationTime": "2020-10-01T17:27:23Z" + } + ] + } + }, + { + "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", + "properties": { + "accountName": "pitrmongowithsnapshots", + "apiType": "MongoDB", + "creationTime": "2021-01-07T19:45:07Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", + "creationTime": "2021-01-07T19:45:07Z" + } + ] + } + }, + { + "name": "36d321ce-5c39-4d66-9347-47beebff1142", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", + "properties": { + "accountName": "test0319-r1", + "apiType": "Sql", + "creationTime": "2021-07-07T21:28:13Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", + "creationTime": "2021-07-07T21:28:13Z" + }, + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", + "creationTime": "2021-07-07T21:28:13Z" + } + ] + } + }, + { + "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "properties": { + "accountName": "pitracctdemo2", + "apiType": "Sql", + "creationTime": "2020-08-11T02:34:23Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", + "creationTime": "2020-08-11T02:34:24Z" + } + ] + } + }, + { + "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "properties": { + "accountName": "ptr-target", + "apiType": "Sql", + "creationTime": "2021-01-05T22:25:24Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", + "creationTime": "2021-01-05T22:25:24Z" + } + ] + } + }, + { + "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "properties": { + "accountName": "pitrmongotest-restore", + "apiType": "MongoDB", + "creationTime": "2020-10-01T21:24:45Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", + "creationTime": "2020-10-01T21:24:45Z" + } + ] + } + }, + { + "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", + "properties": { + "accountName": "pitrdemo1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:28:59Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", + "creationTime": "2020-10-15T17:29:00Z" + } + ] + } + }, + { + "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "properties": { + "accountName": "pitrdemorestored1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:37:20Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", + "creationTime": "2020-10-15T17:37:20Z" + } + ] + } + }, + { + "name": "23e99a35-cd36-4df4-9614-f767a03b9995", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", + "properties": { + "accountName": "subbannageeta", + "apiType": "Sql", + "creationTime": "2020-08-08T01:04:53Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", + "creationTime": "2020-08-08T01:04:53Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", + "creationTime": "2020-08-08T01:15:44Z" + } + ] + } + }, + { + "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "properties": { + "accountName": "scottkirill", + "apiType": "Sql", + "creationTime": "2021-04-15T17:21:20Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", + "creationTime": "2021-04-15T17:21:20Z" + } + ] + } + }, + { + "name": "01c9a078-6ca2-43fd-92c7-632167c86590", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", + "properties": { + "accountName": "test0319-pitr-r1", + "apiType": "Sql", + "creationTime": "2021-07-07T21:54:07Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", + "creationTime": "2021-07-07T21:54:07Z" + } + ] + } + }, + { + "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", + "properties": { + "accountName": "onboardingtestaccount0124", + "apiType": "Sql", + "creationTime": "2022-01-24T20:24:43Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", + "creationTime": "2022-01-24T20:24:44Z" + } + ] + } + }, + { + "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", + "properties": { + "accountName": "onboardingtestaccount0124-restored", + "apiType": "Sql", + "creationTime": "2022-01-24T20:48:23Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", + "creationTime": "2022-01-24T20:48:23Z" + } + ] + } + }, + { + "name": "01652628-d4ef-449d-846e-38e8250f0b9a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", + "properties": { + "accountName": "vinh-table2-restore", + "apiType": "Table, Sql", + "creationTime": "2022-04-07T00:48:08Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", + "creationTime": "2022-04-07T00:48:08Z" + } + ] + } + }, + { + "name": "4b754475-3b23-4485-9205-87ac1661af13", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", + "properties": { + "accountName": "vinhpitr30-cli", + "apiType": "Sql", + "creationTime": "2022-04-29T23:50:20Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", + "creationTime": "2022-04-29T23:50:21Z" + } + ] + } + }, + { + "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "properties": { + "accountName": "vinhperiodic3-cli", + "apiType": "Sql", + "creationTime": "2022-06-03T17:21:23Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", + "creationTime": "2022-06-03T17:21:23Z" + } + ] + } + }, + { + "name": "023add2e-531e-4574-a7df-4d09c97d548d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", + "properties": { + "accountName": "vinh-pitr7-portal", + "apiType": "Sql", + "creationTime": "2022-05-31T19:24:32Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", + "creationTime": "2022-05-31T19:24:34Z" + } + ] + } + }, + { + "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "properties": { + "accountName": "vinh-periodic-portal-tobemigrated-to-7", + "apiType": "Sql", + "creationTime": "2022-05-31T23:36:11Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", + "creationTime": "2022-05-31T23:36:11Z" + } + ] + } + }, + { + "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "properties": { + "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", + "apiType": "Sql", + "creationTime": "2022-06-03T18:42:58Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", + "creationTime": "2022-06-03T18:42:58Z" + } + ] + } + }, + { + "name": "3808b68e-7cae-4b91-901b-e29b35b311be", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", + "properties": { + "accountName": "vinh-periodic-again", + "apiType": "Sql", + "creationTime": "2022-06-10T20:01:48Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", + "creationTime": "2022-06-10T20:01:48Z" + } + ] + } + }, + { + "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "properties": { + "accountName": "vinh-periodic-again2", + "apiType": "Sql", + "creationTime": "2022-06-10T23:57:37Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", + "creationTime": "2022-06-10T23:57:37Z" + } + ] + } + }, + { + "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", + "properties": { + "accountName": "vinh-gremlin-again", + "apiType": "Gremlin, Sql", + "creationTime": "2022-07-28T01:55:28Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", + "creationTime": "2022-07-28T01:55:28Z" + } + ] + } + }, + { + "name": "df774a43-6e6f-4725-82d0-67c18c69a906", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", + "properties": { + "accountName": "vinh-table-tennis-cli-0190", + "apiType": "Table, Sql", + "creationTime": "2022-08-11T05:19:28Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", + "creationTime": "2022-08-11T05:19:28Z" + } + ] + } + }, + { + "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "properties": { + "accountName": "ddhamothsqlpitracc", + "apiType": "Sql", + "creationTime": "2022-10-12T07:15:50Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", + "creationTime": "2022-10-12T07:15:51Z" + } + ] + } + }, + { + "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "properties": { + "accountName": "ddhamothmongopitracc", + "apiType": "MongoDB", + "creationTime": "2022-10-12T07:18:54Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", + "creationTime": "2022-10-12T07:18:55Z" + } + ] + } + }, + { + "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "properties": { + "accountName": "dsapaligadbkeytest", + "apiType": "Sql", + "creationTime": "2022-10-27T16:53:54Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", + "creationTime": "2022-10-27T16:53:56Z" + } + ] + } + }, + { + "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "properties": { + "accountName": "ddhamothpitrsqlacc2", + "apiType": "Sql", + "creationTime": "2022-11-15T21:30:17Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", + "creationTime": "2022-11-15T21:30:18Z" + } + ] + } + }, + { + "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", + "properties": { + "accountName": "vinkumsql", + "apiType": "Sql", + "creationTime": "2022-12-06T19:35:15Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", + "creationTime": "2022-12-06T19:35:16Z" + } + ] + } + }, + { + "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "properties": { + "accountName": "dsapaliga-monitor-test2", + "apiType": "Sql", + "creationTime": "2022-12-09T16:57:51Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", + "creationTime": "2022-12-09T16:57:51Z" + } + ] + } + }, + { + "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "properties": { + "accountName": "nikhiltestmig", + "apiType": "Sql", + "creationTime": "2022-12-15T19:23:56Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", + "creationTime": "2022-12-15T19:23:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", + "creationTime": "2022-12-19T06:05:45Z" + } + ] + } + }, + { + "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "properties": { + "accountName": "nikhil-multi-region-pitr", + "apiType": "Sql", + "creationTime": "2022-12-19T06:00:50Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", + "creationTime": "2022-12-19T06:00:52Z" + } + ] + } + }, + { + "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "properties": { + "accountName": "test-account23", + "apiType": "Sql", + "creationTime": "2022-12-24T18:24:52Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", + "creationTime": "2022-12-24T18:24:53Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", + "creationTime": "2022-12-24T18:27:11Z" + } + ] + } + }, + { + "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "properties": { + "accountName": "testpitr", + "apiType": "Sql", + "creationTime": "2022-12-27T20:37:00Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", + "creationTime": "2022-12-27T20:37:02Z" + } + ] + } + }, + { + "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", + "properties": { + "accountName": "readregionrestore-test", + "apiType": "Sql", + "creationTime": "2023-01-09T23:54:38Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", + "creationTime": "2023-01-09T23:54:38Z" + } + ] + } + }, + { + "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", + "properties": { + "accountName": "vinhpitr30-cli-arm-restore", + "apiType": "Sql", + "creationTime": "2023-02-06T21:33:23Z", + "oldestRestorableTime": "2023-03-21T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", + "creationTime": "2023-02-06T21:33:23Z" + } + ] + } + }, + { + "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", + "properties": { + "accountName": "grem-test", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-06T19:09:58Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", + "creationTime": "2023-03-06T19:09:59Z" + } + ] + } + }, + { + "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", + "properties": { + "accountName": "mongo-test-1", + "apiType": "MongoDB", + "creationTime": "2023-03-06T19:26:33Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", + "creationTime": "2023-03-06T19:26:34Z" + } + ] + } + }, + { + "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", + "properties": { + "accountName": "sql-test-1", + "apiType": "Sql", + "creationTime": "2023-03-06T19:26:23Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", + "creationTime": "2023-03-06T19:26:24Z" + } + ] + } + }, + { + "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "properties": { + "accountName": "tables-test-1", + "apiType": "Table, Sql", + "creationTime": "2023-03-06T19:30:24Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", + "creationTime": "2023-03-06T19:30:25Z" + } + ] + } + }, + { + "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "properties": { + "accountName": "cosmosdb-1232", + "apiType": "Sql", + "creationTime": "2023-03-28T14:32:50Z", + "oldestRestorableTime": "2023-03-28T14:32:50Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", + "creationTime": "2023-03-28T14:32:51Z" + } + ] + } + }, + { + "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:53:31Z", + "oldestRestorableTime": "2023-03-28T14:53:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", + "creationTime": "2023-03-28T14:53:32Z" + } + ] + } + }, + { + "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "properties": { + "accountName": "dsapaliga-xrr-test", + "apiType": "Sql", + "creationTime": "2023-03-30T04:00:57Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", + "creationTime": "2023-03-30T04:00:58Z" + } + ] + } + }, + { + "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "properties": { + "accountName": "dsapaliga-xrr-cli2", + "apiType": "Sql", + "creationTime": "2023-03-30T04:23:35Z", + "oldestRestorableTime": "2023-04-13T15:57:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", + "creationTime": "2023-03-30T04:23:36Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", + "creationTime": "2023-03-30T04:25:59Z" + } + ] + } + }, + { + "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "properties": { + "accountName": "r-grem-db-account-938", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:55Z", + "oldestRestorableTime": "2023-04-05T19:15:55Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", + "creationTime": "2023-04-05T19:15:56Z" + } + ] + } + }, + { + "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", + "properties": { + "accountName": "r-table-account-9379", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:45:49Z", + "oldestRestorableTime": "2023-04-06T01:45:49Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", + "creationTime": "2023-04-06T01:45:51Z" + } + ] + } + }, + { + "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", + "properties": { + "accountName": "restoredaccount-5362", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:03:48Z", + "oldestRestorableTime": "2023-04-06T02:03:48Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", + "creationTime": "2023-04-06T02:03:48Z" + } + ] + } + }, + { + "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", + "properties": { + "accountName": "r-table-account-5626", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:12:24Z", + "oldestRestorableTime": "2023-04-06T02:12:24Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", + "creationTime": "2023-04-06T02:12:25Z" + } + ] + } + }, + { + "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", + "properties": { + "accountName": "r-table-account-1300", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:23:30Z", + "oldestRestorableTime": "2023-04-06T06:23:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", + "creationTime": "2023-04-06T06:23:31Z" + } + ] + } + }, + { + "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "properties": { + "accountName": "restoredaccount-9934", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:40:38Z", + "oldestRestorableTime": "2023-04-06T06:40:38Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", + "creationTime": "2023-04-06T06:40:38Z" + } + ] + } + }, + { + "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", + "properties": { + "accountName": "cli3grog6psgdfn", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T17:59:19Z", + "oldestRestorableTime": "2023-04-06T17:59:19Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", + "creationTime": "2023-04-06T17:59:20Z" + } + ] + } + }, + { + "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "properties": { + "accountName": "clil3ignfqgk6kz", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:02:42Z", + "oldestRestorableTime": "2023-04-06T18:02:42Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", + "creationTime": "2023-04-06T18:02:43Z" + } + ] + } + }, + { + "name": "4656b731-172b-4064-8514-f327e6841751", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", + "properties": { + "accountName": "cliysii3c7g3auw", + "apiType": "Sql", + "creationTime": "2023-04-06T18:00:38Z", + "oldestRestorableTime": "2023-04-06T18:00:38Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", + "creationTime": "2023-04-06T18:00:39Z" + } + ] + } + }, + { + "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", + "properties": { + "accountName": "clihhqescxfepto", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:03:34Z", + "oldestRestorableTime": "2023-04-06T18:03:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", + "creationTime": "2023-04-06T18:03:35Z" + } + ] + } + }, + { + "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "properties": { + "accountName": "clib27b72hyhtjp", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:02Z", + "oldestRestorableTime": "2023-04-06T18:02:02Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", + "creationTime": "2023-04-06T18:02:03Z" + } + ] + } + }, + { + "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "properties": { + "accountName": "clio3vmbb3n7afz", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:07:13Z", + "oldestRestorableTime": "2023-04-06T18:07:13Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", + "creationTime": "2023-04-06T18:07:14Z" + } + ] + } + }, + { + "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "properties": { + "accountName": "cliuoo2ldjhxpwj", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:04:25Z", + "oldestRestorableTime": "2023-04-06T18:04:25Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", + "creationTime": "2023-04-06T18:04:26Z" + } + ] + } + }, + { + "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", + "properties": { + "accountName": "clizy6bsjdyjuwo", + "apiType": "Sql", + "creationTime": "2023-04-06T18:03:13Z", + "oldestRestorableTime": "2023-04-06T18:03:13Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", + "creationTime": "2023-04-06T18:03:14Z" + } + ] + } + }, + { + "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "properties": { + "accountName": "clizcfq53tcsj7v", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:04:50Z", + "oldestRestorableTime": "2023-04-06T18:04:50Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", + "creationTime": "2023-04-06T18:04:52Z" + } + ] + } + }, + { + "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", + "properties": { + "accountName": "cli2gdxmqiqo4ik", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:58Z", + "oldestRestorableTime": "2023-04-06T18:02:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", + "creationTime": "2023-04-06T18:02:58Z" + } + ] + } + }, + { + "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", + "properties": { + "accountName": "cligsqzmjlnuq5j", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:06:34Z", + "oldestRestorableTime": "2023-04-06T18:06:34Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", + "creationTime": "2023-04-06T18:06:35Z" + } + ] + } + }, + { + "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "properties": { + "accountName": "r-grem-db-account-7826", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:27:30Z", + "oldestRestorableTime": "2023-04-06T18:27:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", + "creationTime": "2023-04-06T18:27:31Z" + } + ] + } + }, + { + "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", + "properties": { + "accountName": "cliec3z5o2473ut", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:31:12Z", + "oldestRestorableTime": "2023-04-06T18:31:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", + "creationTime": "2023-04-06T18:31:13Z" + } + ] + } + }, + { + "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", + "properties": { + "accountName": "clinrylxz344nf3", + "apiType": "Sql", + "creationTime": "2023-04-06T18:29:44Z", + "oldestRestorableTime": "2023-04-06T18:29:44Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", + "creationTime": "2023-04-06T18:29:45Z" + } + ] + } + }, + { + "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", + "properties": { + "accountName": "clilaesevwusylf", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:34:21Z", + "oldestRestorableTime": "2023-04-06T18:34:21Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", + "creationTime": "2023-04-06T18:34:23Z" + } + ] + } + }, + { + "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "properties": { + "accountName": "cli7p3qq5cporx7", + "apiType": "Sql", + "creationTime": "2023-04-06T18:29:35Z", + "oldestRestorableTime": "2023-04-06T18:29:35Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", + "creationTime": "2023-04-06T18:29:36Z" + } + ] + } + }, + { + "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", + "properties": { + "accountName": "clij75qd5uyobmj", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:31:13Z", + "oldestRestorableTime": "2023-04-06T18:31:13Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", + "creationTime": "2023-04-06T18:31:14Z" + } + ] + } + }, + { + "name": "8a7d6175-2174-495f-9147-ade59959d7a1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", + "properties": { + "accountName": "r-grem-db-account-5687", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:34:51Z", + "oldestRestorableTime": "2023-04-06T18:34:51Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", + "creationTime": "2023-04-06T18:34:52Z" + } + ] + } + }, + { + "name": "91df614a-d17c-4510-8727-354fe0d1447d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", + "properties": { + "accountName": "clivh5sbv5jm2tn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:55Z", + "oldestRestorableTime": "2023-04-06T18:35:55Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", + "creationTime": "2023-04-06T18:35:56Z" + } + ] + } + }, + { + "name": "073071e8-3f6e-4510-9175-440346e61824", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", + "properties": { + "accountName": "clipmrcd5m37yeh", + "apiType": "Sql", + "creationTime": "2023-04-06T18:34:27Z", + "oldestRestorableTime": "2023-04-06T18:34:27Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", + "creationTime": "2023-04-06T18:34:28Z" + } + ] + } + }, + { + "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", + "properties": { + "accountName": "clieik2we2gw5zk", + "apiType": "Sql", + "creationTime": "2023-04-06T18:34:28Z", + "oldestRestorableTime": "2023-04-06T18:34:28Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", + "creationTime": "2023-04-06T18:34:29Z" + } + ] + } + }, + { + "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", + "properties": { + "accountName": "cli24p5gxxip4wp", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:36:07Z", + "oldestRestorableTime": "2023-04-06T18:36:07Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", + "creationTime": "2023-04-06T18:36:08Z" + } + ] + } + }, + { + "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "properties": { + "accountName": "cli4nd5tsapqcn4", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:38:50Z", + "oldestRestorableTime": "2023-04-06T18:38:50Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", + "creationTime": "2023-04-06T18:38:51Z" + } + ] + } + }, + { + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "properties": { + "accountName": "r-database-account-7671", + "apiType": "Sql", + "creationTime": "2023-04-20T15:44:05Z", + "oldestRestorableTime": "2023-04-20T15:44:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "oldestRestorableTime": "2023-04-20T15:57:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z" + } + ] + } + }, + { + "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "properties": { + "accountName": "r-database-account-4892", + "apiType": "Sql", + "creationTime": "2023-03-23T10:54:16Z", + "deletionTime": "2023-03-23T10:54:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", + "creationTime": "2023-03-23T10:54:17Z", + "deletionTime": "2023-03-23T10:54:57Z" + } + ] + } + }, + { + "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "properties": { + "accountName": "r-database-account-6730", + "apiType": "Sql", + "creationTime": "2023-03-23T11:05:04Z", + "deletionTime": "2023-03-23T11:06:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", + "creationTime": "2023-03-23T11:05:05Z", + "deletionTime": "2023-03-23T11:06:25Z" + } + ] + } + }, + { + "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "properties": { + "accountName": "dbaccount-6688", + "apiType": "Sql", + "creationTime": "2023-03-23T11:16:07Z", + "deletionTime": "2023-03-23T11:20:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", + "creationTime": "2023-03-23T11:16:08Z", + "deletionTime": "2023-03-23T11:20:59Z" + } + ] + } + }, + { + "name": "0768f3f1-b168-46b8-bdd2-671139a55152", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", + "properties": { + "accountName": "dbaccount-1880", + "apiType": "Sql", + "creationTime": "2023-03-23T11:22:51Z", + "deletionTime": "2023-03-23T11:26:46Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", + "creationTime": "2023-03-23T11:22:52Z", + "deletionTime": "2023-03-23T11:26:46Z" + } + ] + } + }, + { + "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z" + } + ] + } + }, + { + "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-23T21:16:33Z", + "deletionTime": "2023-03-23T21:20:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", + "creationTime": "2023-03-23T21:16:34Z", + "deletionTime": "2023-03-23T21:20:17Z" + } + ] + } + }, + { + "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T16:01:08Z", + "deletionTime": "2023-03-24T16:04:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", + "creationTime": "2023-03-24T16:01:09Z", + "deletionTime": "2023-03-24T16:04:52Z" + } + ] + } + }, + { + "name": "151f9fea-5280-4201-8e95-0ea414c89379", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T16:18:09Z", + "deletionTime": "2023-03-24T16:21:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", + "creationTime": "2023-03-24T16:18:10Z", + "deletionTime": "2023-03-24T16:21:49Z" + } + ] + } + }, + { + "name": "edbde762-f533-4cc9-886a-a2196e203b19", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T17:00:54Z", + "deletionTime": "2023-03-24T17:03:11Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", + "creationTime": "2023-03-24T17:00:55Z", + "deletionTime": "2023-03-24T17:03:11Z" + } + ] + } + }, + { + "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z" + } + ] + } + }, + { + "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T18:51:09Z", + "deletionTime": "2023-03-24T18:51:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", + "creationTime": "2023-03-24T18:51:10Z", + "deletionTime": "2023-03-24T18:51:31Z" + } + ] + } + }, + { + "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T19:00:50Z", + "deletionTime": "2023-03-24T19:15:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", + "creationTime": "2023-03-24T19:00:51Z", + "deletionTime": "2023-03-24T19:15:40Z" + } + ] + } + }, + { + "name": "219254b8-6f3a-466e-b360-95f262bfe51e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", + "properties": { + "accountName": "cosmosdb-1217", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:09Z", + "deletionTime": "2023-03-24T19:20:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", + "creationTime": "2023-03-24T19:18:10Z", + "deletionTime": "2023-03-24T19:20:56Z" + } + ] + } + }, + { + "name": "e888bd61-957a-4028-af47-b834b0a267ab", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-24T19:34:54Z", + "deletionTime": "2023-03-24T19:50:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", + "creationTime": "2023-03-24T19:34:55Z", + "deletionTime": "2023-03-24T19:50:50Z" + } + ] + } + }, + { + "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "properties": { + "accountName": "restored2-cosmosdb-1210-5", + "apiType": "Sql", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z" + } + ] + } + }, + { + "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-24T20:32:49Z", + "deletionTime": "2023-03-24T20:50:46Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", + "creationTime": "2023-03-24T20:32:50Z", + "deletionTime": "2023-03-24T20:50:46Z" + } + ] + } + }, + { + "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-25T16:11:27Z", + "deletionTime": "2023-03-25T16:23:23Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", + "creationTime": "2023-03-25T16:11:28Z", + "deletionTime": "2023-03-25T16:23:23Z" + } + ] + } + }, + { + "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z" + } + ] + } + }, + { + "name": "2533e0b0-a675-441d-9b41-147c66cb8834", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-26T16:03:42Z", + "deletionTime": "2023-03-26T16:15:36Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", + "creationTime": "2023-03-26T16:03:43Z", + "deletionTime": "2023-03-26T16:15:36Z" + } + ] + } + }, + { + "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-27T03:23:23Z", + "deletionTime": "2023-03-27T03:41:45Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", + "creationTime": "2023-03-27T03:23:24Z", + "deletionTime": "2023-03-27T03:41:45Z" + } + ] + } + }, + { + "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", + "properties": { + "accountName": "grem-test-72", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z" + } + ] + } + }, + { + "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T02:19:03Z", + "deletionTime": "2023-03-28T02:22:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", + "creationTime": "2023-03-28T02:19:04Z", + "deletionTime": "2023-03-28T02:22:53Z" + } + ] + } + }, + { + "name": "a9481019-401b-431b-b5f7-440ec8798dfd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T03:39:15Z", + "deletionTime": "2023-03-28T03:42:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", + "creationTime": "2023-03-28T03:39:16Z", + "deletionTime": "2023-03-28T03:42:12Z" + } + ] + } + }, + { + "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T13:58:50Z", + "deletionTime": "2023-03-28T13:59:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", + "creationTime": "2023-03-28T13:58:51Z", + "deletionTime": "2023-03-28T13:59:37Z" + } + ] + } + }, + { + "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "properties": { + "accountName": "cosmosdb-1232", + "apiType": "Sql", + "creationTime": "2023-03-28T14:10:51Z", + "deletionTime": "2023-03-28T14:13:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", + "creationTime": "2023-03-28T14:10:52Z", + "deletionTime": "2023-03-28T14:13:58Z" + } + ] + } + }, + { + "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", + "properties": { + "accountName": "cosmosdb-1233", + "apiType": "Sql", + "creationTime": "2023-03-28T14:25:17Z", + "deletionTime": "2023-03-28T14:28:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", + "creationTime": "2023-03-28T14:25:18Z", + "deletionTime": "2023-03-28T14:28:04Z" + } + ] + } + }, + { + "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:35:15Z", + "deletionTime": "2023-03-28T14:39:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", + "creationTime": "2023-03-28T14:35:16Z", + "deletionTime": "2023-03-28T14:39:43Z" + } + ] + } + }, + { + "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "properties": { + "accountName": "cosmosdb-1234", + "apiType": "Sql", + "creationTime": "2023-03-28T14:54:34Z", + "deletionTime": "2023-03-28T14:58:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", + "creationTime": "2023-03-28T14:54:35Z", + "deletionTime": "2023-03-28T14:58:59Z" + } + ] + } + }, + { + "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "properties": { + "accountName": "cosmosdb-12103", + "apiType": "Sql", + "creationTime": "2023-03-28T15:09:04Z", + "deletionTime": "2023-03-28T15:27:39Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", + "creationTime": "2023-03-28T15:09:05Z", + "deletionTime": "2023-03-28T15:27:39Z" + } + ] + } + }, + { + "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "properties": { + "accountName": "restored2-cosmosdb-12103-3", + "apiType": "Sql", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z" + } + ] + } + }, + { + "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", + "properties": { + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", + "creationTime": "2023-03-28T15:34:43Z", + "deletionTime": "2023-03-28T15:39:16Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z" + } + ] + } + }, + { + "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "properties": { + "accountName": "r-database-account-9490", + "apiType": "Sql", + "creationTime": "2023-03-28T22:16:00Z", + "deletionTime": "2023-03-28T22:16:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", + "creationTime": "2023-03-28T22:16:01Z", + "deletionTime": "2023-03-28T22:16:48Z" + } + ] + } + }, + { + "name": "03ad66ba-329b-42a9-a663-7175c237d696", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", + "properties": { + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T01:52:39Z", + "deletionTime": "2023-03-29T01:53:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", + "creationTime": "2023-03-29T01:52:40Z", + "deletionTime": "2023-03-29T01:53:32Z" + } + ] + } + }, + { + "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "properties": { + "accountName": "r-database-account-8615", + "apiType": "Sql", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z" + } + ] + } + }, + { + "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", + "properties": { + "accountName": "r-database-account-6456", + "apiType": "Sql", + "creationTime": "2023-03-29T02:33:02Z", + "deletionTime": "2023-03-29T02:34:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", + "creationTime": "2023-03-29T02:33:03Z", + "deletionTime": "2023-03-29T02:34:43Z" + } + ] + } + }, + { + "name": "835d93a1-22dd-478a-b58d-426efe281471", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", + "properties": { + "accountName": "r-database-account-4855", + "apiType": "Sql", + "creationTime": "2023-03-29T02:47:00Z", + "deletionTime": "2023-03-29T02:49:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", + "creationTime": "2023-03-29T02:47:01Z", + "deletionTime": "2023-03-29T02:49:00Z" + } + ] + } + }, + { + "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "properties": { + "accountName": "r-database-account-84", + "apiType": "Sql", + "creationTime": "2023-03-29T03:26:20Z", + "deletionTime": "2023-03-29T03:28:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", + "creationTime": "2023-03-29T03:26:21Z", + "deletionTime": "2023-03-29T03:28:03Z" + } + ] + } + }, + { + "name": "745f1b21-405d-46bf-8788-0d661ffbb160", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", + "properties": { + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T03:40:43Z", + "deletionTime": "2023-03-29T03:42:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", + "creationTime": "2023-03-29T03:40:44Z", + "deletionTime": "2023-03-29T03:42:31Z" + } + ] + } + }, + { + "name": "454b0097-ad05-4177-9048-93cff3b23e4c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", + "properties": { + "accountName": "r-database-account-985", + "apiType": "Sql", + "creationTime": "2023-03-29T04:04:48Z", + "deletionTime": "2023-03-29T04:05:36Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", + "creationTime": "2023-03-29T04:04:49Z", + "deletionTime": "2023-03-29T04:05:36Z" + } + ] + } + }, + { + "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", + "properties": { + "accountName": "r-database-account-411", + "apiType": "Sql", + "creationTime": "2023-03-29T04:32:28Z", + "deletionTime": "2023-03-29T04:34:13Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", + "creationTime": "2023-03-29T04:32:29Z", + "deletionTime": "2023-03-29T04:34:13Z" + } + ] + } + }, + { + "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", + "properties": { + "accountName": "r-database-account-7460", + "apiType": "Sql", + "creationTime": "2023-03-29T04:59:34Z", + "deletionTime": "2023-03-29T05:01:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", + "creationTime": "2023-03-29T04:59:35Z", + "deletionTime": "2023-03-29T05:01:02Z" + } + ] + } + }, + { + "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "properties": { + "accountName": "r-database-account-6301", + "apiType": "Sql", + "creationTime": "2023-03-29T05:27:44Z", + "deletionTime": "2023-03-29T05:29:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", + "creationTime": "2023-03-29T05:27:45Z", + "deletionTime": "2023-03-29T05:29:32Z" + } + ] + } + }, + { + "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "properties": { + "accountName": "r-database-account-725", + "apiType": "Sql", + "creationTime": "2023-03-29T05:51:55Z", + "deletionTime": "2023-03-29T05:53:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", + "creationTime": "2023-03-29T05:51:56Z", + "deletionTime": "2023-03-29T05:53:14Z" + } + ] + } + }, + { + "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "properties": { + "accountName": "r-database-account-5868", + "apiType": "Sql", + "creationTime": "2023-03-29T06:07:55Z", + "deletionTime": "2023-03-29T06:10:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", + "creationTime": "2023-03-29T06:07:56Z", + "deletionTime": "2023-03-29T06:10:43Z" + } + ] + } + }, + { + "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "properties": { + "accountName": "r-database-account-6513", + "apiType": "Sql", + "creationTime": "2023-03-29T06:41:45Z", + "deletionTime": "2023-03-29T06:45:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", + "creationTime": "2023-03-29T06:41:46Z", + "deletionTime": "2023-03-29T06:45:18Z" + } + ] + } + }, + { + "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "properties": { + "accountName": "r-database-account-79", + "apiType": "Sql", + "creationTime": "2023-03-29T07:22:12Z", + "deletionTime": "2023-03-29T07:24:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", + "creationTime": "2023-03-29T07:22:13Z", + "deletionTime": "2023-03-29T07:24:10Z" + } + ] + } + }, + { + "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "properties": { + "accountName": "r-database-account-766", + "apiType": "Sql", + "creationTime": "2023-03-29T08:19:11Z", + "deletionTime": "2023-03-29T08:20:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", + "creationTime": "2023-03-29T08:19:12Z", + "deletionTime": "2023-03-29T08:20:09Z" + } + ] + } + }, + { + "name": "fa235396-6959-4dc1-932d-2ac66d318878", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", + "properties": { + "accountName": "r-database-account-9810", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:33:51Z", + "deletionTime": "2023-03-29T08:48:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", + "creationTime": "2023-03-29T08:33:53Z", + "deletionTime": "2023-03-29T08:48:10Z" + } + ] + } + }, + { + "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "properties": { + "accountName": "r-database-account-6103", + "apiType": "Sql", + "creationTime": "2023-03-29T09:01:29Z", + "deletionTime": "2023-03-29T09:13:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", + "creationTime": "2023-03-29T09:01:30Z", + "deletionTime": "2023-03-29T09:13:42Z" + } + ] + } + }, + { + "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "properties": { + "accountName": "r-database-account-8066", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:28:36Z", + "deletionTime": "2023-03-29T09:44:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", + "creationTime": "2023-03-29T09:28:37Z", + "deletionTime": "2023-03-29T09:44:31Z" + } + ] + } + }, + { + "name": "ddab1ead-237f-448e-8291-995fddb1ae74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", + "properties": { + "accountName": "r-database-account-7977", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T10:01:55Z", + "deletionTime": "2023-03-29T10:03:30Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", + "creationTime": "2023-03-29T10:01:56Z", + "deletionTime": "2023-03-29T10:03:30Z" + } + ] + } + }, + { + "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "properties": { + "accountName": "r-database-account-116", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T10:20:03Z", + "deletionTime": "2023-03-29T10:21:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", + "creationTime": "2023-03-29T10:20:04Z", + "deletionTime": "2023-03-29T10:21:16Z" + } + ] + } + }, + { + "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", + "properties": { + "accountName": "restoredaccount-7426", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z" + } + ] + } + }, + { + "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "properties": { + "accountName": "r-database-account-9884", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:16:22Z", + "deletionTime": "2023-03-29T10:33:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", + "creationTime": "2023-03-29T08:16:23Z", + "deletionTime": "2023-03-29T10:33:43Z" + } + ] + } + }, + { + "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", + "properties": { + "accountName": "r-database-account-2379", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:28:35Z", + "deletionTime": "2023-03-29T16:44:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", + "creationTime": "2023-03-29T16:28:36Z", + "deletionTime": "2023-03-29T16:44:35Z" + } + ] + } + }, + { + "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", + "properties": { + "accountName": "r-database-account-3992", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T16:22:41Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", + "creationTime": "2023-03-29T16:22:42Z", + "deletionTime": "2023-03-29T16:57:31Z" + } + ] + } + }, + { + "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "properties": { + "accountName": "restoredaccount-232", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z" + } + ] + } + }, + { + "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", + "properties": { + "accountName": "r-database-account-1794", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:14:16Z", + "deletionTime": "2023-03-29T17:15:46Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", + "creationTime": "2023-03-29T17:14:17Z", + "deletionTime": "2023-03-29T17:15:46Z" + } + ] + } + }, + { + "name": "8940962c-1866-49f7-871f-38869cce24f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", + "properties": { + "accountName": "r-database-account-7040", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T17:32:14Z", + "deletionTime": "2023-03-29T17:33:38Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", + "creationTime": "2023-03-29T17:32:15Z", + "deletionTime": "2023-03-29T17:33:38Z" + } + ] + } + }, + { + "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "properties": { + "accountName": "r-database-account-959", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:41:56Z", + "deletionTime": "2023-03-29T17:42:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", + "creationTime": "2023-03-29T17:41:58Z", + "deletionTime": "2023-03-29T17:42:37Z" + } + ] + } + }, + { + "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "properties": { + "accountName": "r-database-account-8612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:51:17Z", + "deletionTime": "2023-03-29T18:07:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", + "creationTime": "2023-03-29T17:51:18Z", + "deletionTime": "2023-03-29T18:07:55Z" + } + ] + } + }, + { + "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", + "properties": { + "accountName": "r-database-account-640", + "apiType": "Sql", + "creationTime": "2023-03-29T18:21:12Z", + "deletionTime": "2023-03-29T18:37:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", + "creationTime": "2023-03-29T18:21:13Z", + "deletionTime": "2023-03-29T18:37:25Z" + } + ] + } + }, + { + "name": "ebcdc313-e068-4539-bfc9-63238422f44d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", + "properties": { + "accountName": "r-database-account-6103", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:45:36Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", + "creationTime": "2023-03-29T17:45:37Z", + "deletionTime": "2023-03-29T18:49:19Z" + } + ] + } + }, + { + "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "properties": { + "accountName": "restoredaccount-9093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z" + } + ] + } + }, + { + "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "properties": { + "accountName": "restoredaccount-5464", + "apiType": "Sql", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z" + } + ] + } + }, + { + "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", + "properties": { + "accountName": "r-database-account-582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:55:11Z", + "deletionTime": "2023-03-29T18:56:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", + "creationTime": "2023-03-29T18:55:12Z", + "deletionTime": "2023-03-29T18:56:12Z" + } + ] + } + }, + { + "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "properties": { + "accountName": "r-database-account-7109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:11:47Z", + "deletionTime": "2023-03-29T19:13:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", + "creationTime": "2023-03-29T19:11:48Z", + "deletionTime": "2023-03-29T19:13:28Z" + } + ] + } + }, + { + "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", + "properties": { + "accountName": "r-database-account-1862", + "apiType": "Sql", + "creationTime": "2023-03-29T19:27:17Z", + "deletionTime": "2023-03-29T19:28:11Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", + "creationTime": "2023-03-29T19:27:18Z", + "deletionTime": "2023-03-29T19:28:11Z" + } + ] + } + }, + { + "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", + "properties": { + "accountName": "r-database-account-669", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:41:10Z", + "deletionTime": "2023-03-29T19:42:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", + "creationTime": "2023-03-29T19:41:11Z", + "deletionTime": "2023-03-29T19:42:32Z" + } + ] + } + }, + { + "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", + "properties": { + "accountName": "r-database-account-8361", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T19:57:31Z", + "deletionTime": "2023-03-29T19:58:15Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", + "creationTime": "2023-03-29T19:57:32Z", + "deletionTime": "2023-03-29T19:58:15Z" + } + ] + } + }, + { + "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", + "properties": { + "accountName": "r-database-account-9", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:12:42Z", + "deletionTime": "2023-03-29T20:28:47Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", + "creationTime": "2023-03-29T20:12:43Z", + "deletionTime": "2023-03-29T20:28:47Z" + } + ] + } + }, + { + "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "properties": { + "accountName": "r-database-account-7334", + "apiType": "Sql", + "creationTime": "2023-03-29T20:42:13Z", + "deletionTime": "2023-03-29T20:44:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", + "creationTime": "2023-03-29T20:42:14Z", + "deletionTime": "2023-03-29T20:44:52Z" + } + ] + } + }, + { + "name": "9513098d-df71-4d21-8d95-2fd12d55402e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", + "properties": { + "accountName": "r-database-account-4820", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:00:04Z", + "deletionTime": "2023-03-29T21:16:44Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", + "creationTime": "2023-03-29T21:00:05Z", + "deletionTime": "2023-03-29T21:16:44Z" + } + ] + } + }, + { + "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "properties": { + "accountName": "r-database-account-2346", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z" + } + ] + } + }, + { + "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", + "properties": { + "accountName": "restoredaccount-4730", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z" + } + ] + } + }, + { + "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "properties": { + "accountName": "restoredaccount-1173", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z" + } + ] + } + }, + { + "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", + "properties": { + "accountName": "r-database-account-3981", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T21:50:14Z", + "deletionTime": "2023-03-29T21:52:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", + "creationTime": "2023-03-29T21:50:15Z", + "deletionTime": "2023-03-29T21:52:00Z" + } + ] + } + }, + { + "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "properties": { + "accountName": "r-database-account-6608", + "apiType": "Sql", + "creationTime": "2023-03-29T22:05:54Z", + "deletionTime": "2023-03-29T22:06:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", + "creationTime": "2023-03-29T22:05:55Z", + "deletionTime": "2023-03-29T22:06:58Z" + } + ] + } + }, + { + "name": "d003df48-a9ea-4212-a771-0c539141cd9d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", + "properties": { + "accountName": "r-database-account-9561", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:19:29Z", + "deletionTime": "2023-03-29T22:20:23Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", + "creationTime": "2023-03-29T22:19:30Z", + "deletionTime": "2023-03-29T22:20:23Z" + } + ] + } + }, + { + "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", + "properties": { + "accountName": "r-database-account-1309", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T22:36:33Z", + "deletionTime": "2023-03-29T22:37:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", + "creationTime": "2023-03-29T22:36:35Z", + "deletionTime": "2023-03-29T22:37:50Z" + } + ] + } + }, + { + "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "properties": { + "accountName": "dsapaliga-restore-test5", + "apiType": "Sql", + "creationTime": "2023-03-29T21:59:36Z", + "deletionTime": "2023-03-29T22:56:12Z", + "oldestRestorableTime": "2023-03-22T22:56:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", + "creationTime": "2023-03-29T21:59:38Z", + "deletionTime": "2023-03-29T22:56:12Z" + } + ] + } + }, + { + "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", + "properties": { + "accountName": "dsapaliga-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z", + "oldestRestorableTime": "2023-03-22T22:56:35Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z" + } + ] + } + }, + { + "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "properties": { + "accountName": "dsapaliga-test-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z", + "oldestRestorableTime": "2023-03-22T22:57:04Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z" + } + ] + } + }, + { + "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "properties": { + "accountName": "dsapaliga-restore-test", + "apiType": "Sql", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z", + "oldestRestorableTime": "2023-03-22T22:57:42Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", + "creationTime": "2023-03-29T19:42:26Z", + "deletionTime": "2023-03-29T22:57:42Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z" + } + ] + } + }, + { + "name": "52581e9f-9743-4007-9041-e15df28ce4ee", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", + "properties": { + "accountName": "r-database-account-1604", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:51:34Z", + "deletionTime": "2023-03-29T23:07:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", + "creationTime": "2023-03-29T22:51:35Z", + "deletionTime": "2023-03-29T23:07:58Z" + } + ] + } + }, + { + "name": "9ab892fe-ad41-4e51-a646-530c226c8772", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", + "properties": { + "accountName": "r-database-account-39", + "apiType": "Sql", + "creationTime": "2023-03-29T23:21:19Z", + "deletionTime": "2023-03-29T23:37:29Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", + "creationTime": "2023-03-29T23:21:20Z", + "deletionTime": "2023-03-29T23:37:29Z" + } + ] + } + }, + { + "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "properties": { + "accountName": "r-database-account-6553", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T23:52:19Z", + "deletionTime": "2023-03-29T23:54:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", + "creationTime": "2023-03-29T23:52:20Z", + "deletionTime": "2023-03-29T23:54:50Z" + } + ] + } + }, + { + "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", + "properties": { + "accountName": "r-database-account-8730", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T00:45:13Z", + "deletionTime": "2023-03-30T00:49:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", + "creationTime": "2023-03-30T00:45:15Z", + "deletionTime": "2023-03-30T00:49:42Z" + } + ] + } + }, + { + "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "properties": { + "accountName": "r-database-account-2459", + "apiType": "Sql", + "creationTime": "2023-03-30T01:04:05Z", + "deletionTime": "2023-03-30T01:06:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", + "creationTime": "2023-03-30T01:04:06Z", + "deletionTime": "2023-03-30T01:06:50Z" + } + ] + } + }, + { + "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "properties": { + "accountName": "r-database-account-2957", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T01:23:37Z", + "deletionTime": "2023-03-30T01:26:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", + "creationTime": "2023-03-30T01:23:39Z", + "deletionTime": "2023-03-30T01:26:18Z" + } + ] + } + }, + { + "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "properties": { + "accountName": "r-database-account-6086", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T01:44:49Z", + "deletionTime": "2023-03-30T01:54:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", + "creationTime": "2023-03-30T01:44:50Z", + "deletionTime": "2023-03-30T01:54:03Z" + } + ] + } + }, + { + "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", + "properties": { + "accountName": "r-database-account-9503", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T02:14:47Z", + "deletionTime": "2023-03-30T02:19:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", + "creationTime": "2023-03-30T02:14:48Z", + "deletionTime": "2023-03-30T02:19:28Z" + } + ] + } + }, + { + "name": "a717fb23-baed-4b80-ab44-bedcce157333", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", + "properties": { + "accountName": "r-database-account-255", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T02:41:09Z", + "deletionTime": "2023-03-30T02:50:27Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", + "creationTime": "2023-03-30T02:41:10Z", + "deletionTime": "2023-03-30T02:50:27Z" + } + ] + } + }, + { + "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "properties": { + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-30T03:16:29Z", + "deletionTime": "2023-03-30T03:24:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", + "creationTime": "2023-03-30T03:18:49Z", + "deletionTime": "2023-03-30T03:24:26Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", + "creationTime": "2023-03-30T03:16:30Z", + "deletionTime": "2023-03-30T03:24:26Z" + } + ] + } + }, + { + "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "properties": { + "accountName": "r-database-account-7398", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T03:22:44Z", + "deletionTime": "2023-03-30T03:24:34Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", + "creationTime": "2023-03-30T03:22:45Z", + "deletionTime": "2023-03-30T03:24:34Z" + } + ] + } + }, + { + "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "properties": { + "accountName": "r-database-account-2003", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T03:40:25Z", + "deletionTime": "2023-03-30T03:41:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", + "creationTime": "2023-03-30T03:40:26Z", + "deletionTime": "2023-03-30T03:41:26Z" + } + ] + } + }, + { + "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "properties": { + "accountName": "dsapaliga-rcg-migrationtest", + "apiType": "Sql", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z", + "oldestRestorableTime": "2023-03-23T03:56:45Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z" + } + ] + } + }, + { + "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", + "properties": { + "accountName": "r-database-account-3308", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T03:55:54Z", + "deletionTime": "2023-03-30T03:56:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", + "creationTime": "2023-03-30T03:55:55Z", + "deletionTime": "2023-03-30T03:56:52Z" + } + ] + } + }, + { + "name": "daf00acd-625e-4dcd-8453-247b297129a3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", + "properties": { + "accountName": "dsapaliga-restored-cli-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z", + "oldestRestorableTime": "2023-03-23T03:57:10Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z" + } + ] + } + }, + { + "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", + "properties": { + "accountName": "dsapaliga-xrr-cli", + "apiType": "Sql", + "creationTime": "2023-03-29T23:10:13Z", + "deletionTime": "2023-03-30T03:57:17Z", + "oldestRestorableTime": "2023-03-23T03:57:17Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", + "creationTime": "2023-03-29T23:12:40Z", + "deletionTime": "2023-03-30T03:57:17Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", + "creationTime": "2023-03-29T23:10:14Z", + "deletionTime": "2023-03-30T03:57:17Z" + } + ] + } + }, + { + "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", + "properties": { + "accountName": "dsapaliga-xrr-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z", + "oldestRestorableTime": "2023-03-23T03:57:27Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z" + } + ] + } + }, + { + "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", + "properties": { + "accountName": "dsapaliga-xrr-restored-eastus2rg", + "apiType": "Sql", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z", + "oldestRestorableTime": "2023-03-23T03:57:36Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z" + } + ] + } + }, + { + "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "properties": { + "accountName": "dsapaliga-xrr-restorefix", + "apiType": "Sql", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z", + "oldestRestorableTime": "2023-03-23T04:15:46Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", + "creationTime": "2023-03-30T03:51:46Z", + "deletionTime": "2023-03-30T04:15:46Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z" + } + ] + } + }, + { + "name": "2896560d-7c61-44b5-95a3-2e325d44b464", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", + "properties": { + "accountName": "dsapaliga-xrr", + "apiType": "Sql", + "creationTime": "2023-03-29T23:01:28Z", + "deletionTime": "2023-03-30T04:16:00Z", + "oldestRestorableTime": "2023-03-23T04:16:00Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", + "creationTime": "2023-03-29T23:11:33Z", + "deletionTime": "2023-03-30T04:16:00Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", + "creationTime": "2023-03-29T23:01:29Z", + "deletionTime": "2023-03-30T04:16:00Z" + } + ] + } + }, + { + "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", + "properties": { + "accountName": "r-database-account-9362", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:14:52Z", + "deletionTime": "2023-03-30T04:33:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", + "creationTime": "2023-03-30T04:14:53Z", + "deletionTime": "2023-03-30T04:33:19Z" + } + ] + } + }, + { + "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", + "properties": { + "accountName": "r-database-account-7026", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T04:49:23Z", + "deletionTime": "2023-03-30T05:05:15Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", + "creationTime": "2023-03-30T04:49:24Z", + "deletionTime": "2023-03-30T05:05:15Z" + } + ] + } + }, + { + "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", + "properties": { + "accountName": "r-database-account-8518", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:21:59Z", + "deletionTime": "2023-03-30T05:23:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", + "creationTime": "2023-03-30T05:22:00Z", + "deletionTime": "2023-03-30T05:23:37Z" + } + ] + } + }, + { + "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "properties": { + "accountName": "restoredaccount-8613", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z" + } + ] + } + }, + { + "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "properties": { + "accountName": "restoredaccount-4321", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z" + } + ] + } + }, + { + "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "properties": { + "accountName": "r-database-account-9910", + "apiType": "Sql", + "creationTime": "2023-03-30T05:44:40Z", + "deletionTime": "2023-03-30T06:00:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", + "creationTime": "2023-03-30T05:44:41Z", + "deletionTime": "2023-03-30T06:00:37Z" + } + ] + } + }, + { + "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "properties": { + "accountName": "r-database-account-8895", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T06:29:10Z", + "deletionTime": "2023-03-30T06:47:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", + "creationTime": "2023-03-30T06:29:12Z", + "deletionTime": "2023-03-30T06:47:25Z" + } + ] + } + }, + { + "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "properties": { + "accountName": "restoredaccount-6039", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z" + } + ] + } + }, + { + "name": "53b30478-fadc-4af9-bde8-663f3793b182", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", + "properties": { + "accountName": "r-database-account-6131", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T07:23:46Z", + "deletionTime": "2023-03-30T07:39:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", + "creationTime": "2023-03-30T07:23:47Z", + "deletionTime": "2023-03-30T07:39:31Z" + } + ] + } + }, + { + "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", + "properties": { + "accountName": "r-database-account-5579", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:00:42Z", + "deletionTime": "2023-03-30T08:02:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", + "creationTime": "2023-03-30T08:00:43Z", + "deletionTime": "2023-03-30T08:02:03Z" + } + ] + } + }, + { + "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", + "properties": { + "accountName": "r-database-account-6802", + "apiType": "Sql", + "creationTime": "2023-03-30T08:15:53Z", + "deletionTime": "2023-03-30T08:16:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", + "creationTime": "2023-03-30T08:15:54Z", + "deletionTime": "2023-03-30T08:16:49Z" + } + ] + } + }, + { + "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", + "properties": { + "accountName": "r-database-account-4928", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:29:55Z", + "deletionTime": "2023-03-30T08:30:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", + "creationTime": "2023-03-30T08:29:56Z", + "deletionTime": "2023-03-30T08:30:59Z" + } + ] + } + }, + { + "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", + "properties": { + "accountName": "r-database-account-9554", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T08:45:00Z", + "deletionTime": "2023-03-30T08:46:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", + "creationTime": "2023-03-30T08:45:01Z", + "deletionTime": "2023-03-30T08:46:14Z" + } + ] + } + }, + { + "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", + "properties": { + "accountName": "r-database-account-9311", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:00:35Z", + "deletionTime": "2023-03-30T09:16:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", + "creationTime": "2023-03-30T09:00:36Z", + "deletionTime": "2023-03-30T09:16:50Z" + } + ] + } + }, + { + "name": "521a5d65-de37-47be-88ca-ec32b564a261", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", + "properties": { + "accountName": "r-database-account-2240", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:32:58Z", + "deletionTime": "2023-03-30T09:51:38Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", + "creationTime": "2023-03-30T09:32:59Z", + "deletionTime": "2023-03-30T09:51:38Z" + } + ] + } + }, + { + "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", + "properties": { + "accountName": "r-database-account-1851", + "apiType": "Sql", + "creationTime": "2023-03-30T10:05:27Z", + "deletionTime": "2023-03-30T10:21:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", + "creationTime": "2023-03-30T10:05:28Z", + "deletionTime": "2023-03-30T10:21:42Z" + } + ] + } + }, + { + "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", + "properties": { + "accountName": "r-database-account-5797", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T10:37:02Z", + "deletionTime": "2023-03-30T10:55:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", + "creationTime": "2023-03-30T10:37:04Z", + "deletionTime": "2023-03-30T10:55:19Z" + } + ] + } + }, + { + "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", + "properties": { + "accountName": "r-database-account-9560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:11:57Z", + "deletionTime": "2023-03-30T11:25:05Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", + "creationTime": "2023-03-30T11:11:58Z", + "deletionTime": "2023-03-30T11:25:05Z" + } + ] + } + }, + { + "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", + "properties": { + "accountName": "r-database-account-1767", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:41:56Z", + "deletionTime": "2023-03-30T11:43:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", + "creationTime": "2023-03-30T11:41:57Z", + "deletionTime": "2023-03-30T11:43:33Z" + } + ] + } + }, + { + "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "properties": { + "accountName": "restoredaccount-4001", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "properties": { + "accountName": "restoredaccount-7112", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "0370cb08-0af9-4438-b21f-405a5564b689", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", + "properties": { + "accountName": "restoredaccount-9834", + "apiType": "Sql", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "6c273b23-ae84-4945-b093-d57bca835c7c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", + "properties": { + "accountName": "restoredaccount-4009", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "17de7698-0393-4b12-ba51-99d12ba83904", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", + "properties": { + "accountName": "r-database-account-9743", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:00:07Z", + "deletionTime": "2023-03-30T12:01:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", + "creationTime": "2023-03-30T12:00:08Z", + "deletionTime": "2023-03-30T12:01:49Z" + } + ] + } + }, + { + "name": "987831cb-c610-4631-a650-0b6678c31649", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", + "properties": { + "accountName": "r-database-account-3771", + "apiType": "Sql", + "creationTime": "2023-03-30T12:15:11Z", + "deletionTime": "2023-03-30T12:15:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", + "creationTime": "2023-03-30T12:15:12Z", + "deletionTime": "2023-03-30T12:15:59Z" + } + ] + } + }, + { + "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", + "properties": { + "accountName": "r-database-account-3969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:29:18Z", + "deletionTime": "2023-03-30T12:30:13Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", + "creationTime": "2023-03-30T12:29:19Z", + "deletionTime": "2023-03-30T12:30:13Z" + } + ] + } + }, + { + "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", + "properties": { + "accountName": "r-database-account-7064", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T12:44:53Z", + "deletionTime": "2023-03-30T12:46:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", + "creationTime": "2023-03-30T12:44:54Z", + "deletionTime": "2023-03-30T12:46:04Z" + } + ] + } + }, + { + "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "properties": { + "accountName": "r-database-account-8980", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:00:40Z", + "deletionTime": "2023-03-30T13:17:11Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", + "creationTime": "2023-03-30T13:00:41Z", + "deletionTime": "2023-03-30T13:17:11Z" + } + ] + } + }, + { + "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "properties": { + "accountName": "r-database-account-2102", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:33:35Z", + "deletionTime": "2023-03-30T13:51:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", + "creationTime": "2023-03-30T13:33:36Z", + "deletionTime": "2023-03-30T13:51:57Z" + } + ] + } + }, + { + "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", + "properties": { + "accountName": "r-database-account-6294", + "apiType": "Sql", + "creationTime": "2023-03-30T14:05:48Z", + "deletionTime": "2023-03-30T14:21:29Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", + "creationTime": "2023-03-30T14:05:49Z", + "deletionTime": "2023-03-30T14:21:29Z" + } + ] + } + }, + { + "name": "86a5260e-5153-431d-8eab-af58b83494af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", + "properties": { + "accountName": "r-database-account-2370", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:35:58Z", + "deletionTime": "2023-03-30T14:54:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", + "creationTime": "2023-03-30T14:35:59Z", + "deletionTime": "2023-03-30T14:54:17Z" + } + ] + } + }, + { + "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "properties": { + "accountName": "r-database-account-3273", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:10:49Z", + "deletionTime": "2023-03-30T15:24:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", + "creationTime": "2023-03-30T15:10:50Z", + "deletionTime": "2023-03-30T15:24:06Z" + } + ] + } + }, + { + "name": "8246105a-a890-4491-9dd6-7292d01fea88", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", + "properties": { + "accountName": "r-database-account-3250", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:40:22Z", + "deletionTime": "2023-03-30T15:41:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", + "creationTime": "2023-03-30T15:40:23Z", + "deletionTime": "2023-03-30T15:41:57Z" + } + ] + } + }, + { + "name": "bbf50286-0d85-4979-9c86-63d10090b51a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", + "properties": { + "accountName": "restoredaccount-2722", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z" + } + ] + } + }, + { + "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", + "properties": { + "accountName": "restoredaccount-4323", + "apiType": "Sql", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z" + } + ] + } + }, + { + "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", + "properties": { + "accountName": "restoredaccount-2887", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z" + } + ] + } + }, + { + "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "properties": { + "accountName": "restoredaccount-3024", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z" + } + ] + } + }, + { + "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "properties": { + "accountName": "r-database-account-4043", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:31:27Z", + "deletionTime": "2023-03-30T16:47:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", + "creationTime": "2023-03-30T16:31:28Z", + "deletionTime": "2023-03-30T16:47:52Z" + } + ] + } + }, + { + "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "properties": { + "accountName": "restoredaccount-7511", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z" + } + ] + } + }, + { + "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "properties": { + "accountName": "r-database-account-353", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z" + } + ] + } + }, + { + "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", + "properties": { + "accountName": "r-database-account-8087", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:24:28Z", + "deletionTime": "2023-03-30T17:39:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", + "creationTime": "2023-03-30T17:24:29Z", + "deletionTime": "2023-03-30T17:39:50Z" + } + ] + } + }, + { + "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "properties": { + "accountName": "restoredaccount-560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z" + } + ] + } + }, + { + "name": "d9e2fd03-4af1-4649-98c3-65f580724594", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", + "properties": { + "accountName": "r-database-account-7446", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:08:24Z", + "deletionTime": "2023-03-30T19:10:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", + "creationTime": "2023-03-30T19:08:25Z", + "deletionTime": "2023-03-30T19:10:04Z" + } + ] + } + }, + { + "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", + "properties": { + "accountName": "r-database-account-8409", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:30:14Z", + "deletionTime": "2023-03-30T19:46:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", + "creationTime": "2023-03-30T19:30:15Z", + "deletionTime": "2023-03-30T19:46:59Z" + } + ] + } + }, + { + "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "properties": { + "accountName": "restoredaccount-9502", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z" + } + ] + } + }, + { + "name": "a274527e-da37-49f9-9878-cef9f55b334d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", + "properties": { + "accountName": "r-database-account-4548", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:23:16Z", + "deletionTime": "2023-03-30T20:41:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", + "creationTime": "2023-03-30T20:23:17Z", + "deletionTime": "2023-03-30T20:41:33Z" + } + ] + } + }, + { + "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", + "properties": { + "accountName": "restoredaccount-3745", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z" + } + ] + } + }, + { + "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", + "properties": { + "accountName": "r-database-account-2582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T21:50:24Z", + "deletionTime": "2023-03-30T21:52:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", + "creationTime": "2023-03-30T21:50:27Z", + "deletionTime": "2023-03-30T21:52:04Z" + } + ] + } + }, + { + "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", + "properties": { + "accountName": "r-database-account-8779", + "apiType": "Sql", + "creationTime": "2023-03-30T22:06:33Z", + "deletionTime": "2023-03-30T22:07:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", + "creationTime": "2023-03-30T22:06:34Z", + "deletionTime": "2023-03-30T22:07:17Z" + } + ] + } + }, + { + "name": "38947549-a1bf-4023-bc95-88dcc312797f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", + "properties": { + "accountName": "r-database-account-4386", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:20:34Z", + "deletionTime": "2023-03-30T22:21:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", + "creationTime": "2023-03-30T22:20:35Z", + "deletionTime": "2023-03-30T22:21:28Z" + } + ] + } + }, + { + "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "properties": { + "accountName": "r-database-account-3583", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T22:35:57Z", + "deletionTime": "2023-03-30T22:36:47Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", + "creationTime": "2023-03-30T22:35:58Z", + "deletionTime": "2023-03-30T22:36:47Z" + } + ] + } + }, + { + "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "properties": { + "accountName": "r-database-account-5053", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:51:37Z", + "deletionTime": "2023-03-30T23:05:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", + "creationTime": "2023-03-30T22:51:38Z", + "deletionTime": "2023-03-30T23:05:43Z" + } + ] + } + }, + { + "name": "17692a3a-23c6-428d-a13a-94657bdea47a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", + "properties": { + "accountName": "r-database-account-9618", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:22:07Z", + "deletionTime": "2023-03-30T23:40:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", + "creationTime": "2023-03-30T23:22:08Z", + "deletionTime": "2023-03-30T23:40:57Z" + } + ] + } + }, + { + "name": "aae41121-0386-45f5-884b-acca11a878e3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", + "properties": { + "accountName": "restoredaccount-2225", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z" + } + ] + } + }, + { + "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", + "properties": { + "accountName": "r-database-account-220", + "apiType": "Sql", + "creationTime": "2023-03-31T00:05:32Z", + "deletionTime": "2023-03-31T00:21:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", + "creationTime": "2023-03-31T00:05:33Z", + "deletionTime": "2023-03-31T00:21:52Z" + } + ] + } + }, + { + "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", + "properties": { + "accountName": "restoredaccount-9446", + "apiType": "Sql", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z" + } + ] + } + }, + { + "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "properties": { + "accountName": "r-database-account-2092", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T00:47:34Z", + "deletionTime": "2023-03-31T01:05:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", + "creationTime": "2023-03-31T00:47:35Z", + "deletionTime": "2023-03-31T01:05:40Z" + } + ] + } + }, + { + "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "properties": { + "accountName": "restoredaccount-6025", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z" + } + ] + } + }, + { + "name": "89218c06-82d7-4397-a460-2f07c20d7138", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", + "properties": { + "accountName": "r-database-account-2331", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:32:56Z", + "deletionTime": "2023-03-31T01:49:23Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", + "creationTime": "2023-03-31T01:32:57Z", + "deletionTime": "2023-03-31T01:49:23Z" + } + ] + } + }, + { + "name": "480bf65c-2961-46e6-a44c-4de49632a509", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", + "properties": { + "accountName": "restoredaccount-6086", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z" + } + ] + } + }, + { + "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "properties": { + "accountName": "r-database-account-3761", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T02:17:45Z", + "deletionTime": "2023-03-31T02:19:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", + "creationTime": "2023-03-31T02:17:46Z", + "deletionTime": "2023-03-31T02:19:03Z" + } + ] + } + }, + { + "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", + "properties": { + "accountName": "r-database-account-176", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T02:35:45Z", + "deletionTime": "2023-03-31T02:37:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", + "creationTime": "2023-03-31T02:35:46Z", + "deletionTime": "2023-03-31T02:37:16Z" + } + ] + } + }, + { + "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", + "properties": { + "accountName": "r-database-account-9754", + "apiType": "Sql", + "creationTime": "2023-03-31T02:51:04Z", + "deletionTime": "2023-03-31T02:51:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", + "creationTime": "2023-03-31T02:51:05Z", + "deletionTime": "2023-03-31T02:51:58Z" + } + ] + } + }, + { + "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "properties": { + "accountName": "r-database-account-3560", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:04:37Z", + "deletionTime": "2023-03-31T03:05:38Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", + "creationTime": "2023-03-31T03:04:38Z", + "deletionTime": "2023-03-31T03:05:38Z" + } + ] + } + }, + { + "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "properties": { + "accountName": "r-database-account-7061", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T03:21:54Z", + "deletionTime": "2023-03-31T03:23:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", + "creationTime": "2023-03-31T03:21:55Z", + "deletionTime": "2023-03-31T03:23:03Z" + } + ] + } + }, + { + "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", + "properties": { + "accountName": "r-database-account-6492", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:37:32Z", + "deletionTime": "2023-03-31T03:51:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", + "creationTime": "2023-03-31T03:37:33Z", + "deletionTime": "2023-03-31T03:51:53Z" + } + ] + } + }, + { + "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "properties": { + "accountName": "r-database-account-2187", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T04:07:50Z", + "deletionTime": "2023-03-31T04:26:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", + "creationTime": "2023-03-31T04:07:51Z", + "deletionTime": "2023-03-31T04:26:04Z" + } + ] + } + }, + { + "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "properties": { + "accountName": "restoredaccount-3749", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z" + } + ] + } + }, + { + "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "properties": { + "accountName": "r-database-account-1319", + "apiType": "Sql", + "creationTime": "2023-03-31T04:51:37Z", + "deletionTime": "2023-03-31T05:08:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", + "creationTime": "2023-03-31T04:51:38Z", + "deletionTime": "2023-03-31T05:08:00Z" + } + ] + } + }, + { + "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "properties": { + "accountName": "restoredaccount-949", + "apiType": "Sql", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z" + } + ] + } + }, + { + "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "properties": { + "accountName": "r-database-account-3444", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:33:47Z", + "deletionTime": "2023-03-31T05:52:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", + "creationTime": "2023-03-31T05:33:48Z", + "deletionTime": "2023-03-31T05:52:04Z" + } + ] + } + }, + { + "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "properties": { + "accountName": "restoredaccount-8369", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z" + } + ] + } + }, + { + "name": "a6938641-f254-423b-877a-01a80f789530", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", + "properties": { + "accountName": "r-database-account-4184", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:20:37Z", + "deletionTime": "2023-03-31T06:36:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", + "creationTime": "2023-03-31T06:20:38Z", + "deletionTime": "2023-03-31T06:36:54Z" + } + ] + } + }, + { + "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", + "properties": { + "accountName": "restoredaccount-8230", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z" + } + ] + } + }, + { + "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", + "properties": { + "accountName": "r-database-account-9421", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:10:08Z", + "deletionTime": "2023-03-31T07:27:01Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", + "creationTime": "2023-03-31T07:10:09Z", + "deletionTime": "2023-03-31T07:27:01Z" + } + ] + } + }, + { + "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", + "properties": { + "accountName": "restoredaccount-2737", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z" + } + ] + } + }, + { + "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "properties": { + "accountName": "r-database-account-4921", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:56:33Z", + "deletionTime": "2023-03-31T07:58:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", + "creationTime": "2023-03-31T07:56:34Z", + "deletionTime": "2023-03-31T07:58:09Z" + } + ] + } + }, + { + "name": "bea1d046-d612-49e3-b64c-3e82a216987a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", + "properties": { + "accountName": "r-database-account-4832", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T08:15:55Z", + "deletionTime": "2023-03-31T08:33:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", + "creationTime": "2023-03-31T08:15:57Z", + "deletionTime": "2023-03-31T08:33:06Z" + } + ] + } + }, + { + "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "properties": { + "accountName": "restoredaccount-9360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z" + } + ] + } + }, + { + "name": "9e6527c2-ded9-493a-9086-df70877c305d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", + "properties": { + "accountName": "r-database-account-7247", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T09:00:28Z", + "deletionTime": "2023-03-31T09:01:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", + "creationTime": "2023-03-31T09:00:29Z", + "deletionTime": "2023-03-31T09:01:48Z" + } + ] + } + }, + { + "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", + "properties": { + "accountName": "r-database-account-2911", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:04:29Z", + "deletionTime": "2023-03-31T15:05:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", + "creationTime": "2023-03-31T15:04:30Z", + "deletionTime": "2023-03-31T15:05:51Z" + } + ] + } + }, + { + "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", + "properties": { + "accountName": "r-database-account-7482", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:22:06Z", + "deletionTime": "2023-03-31T15:23:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", + "creationTime": "2023-03-31T15:22:08Z", + "deletionTime": "2023-03-31T15:23:48Z" + } + ] + } + }, + { + "name": "c739e02a-8d12-44a1-9b43-72dee580e901", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", + "properties": { + "accountName": "r-database-account-2396", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T16:34:52Z", + "deletionTime": "2023-04-04T16:36:27Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", + "creationTime": "2023-04-04T16:34:53Z", + "deletionTime": "2023-04-04T16:36:27Z" + } + ] + } + }, + { + "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", + "properties": { + "accountName": "r-database-account-2962", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T16:56:08Z", + "deletionTime": "2023-04-04T16:57:51Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", + "creationTime": "2023-04-04T16:56:09Z", + "deletionTime": "2023-04-04T16:57:51Z" + } + ] + } + }, + { + "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", + "properties": { + "accountName": "r-database-account-2963", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:15:44Z", + "deletionTime": "2023-04-04T17:17:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", + "creationTime": "2023-04-04T17:15:45Z", + "deletionTime": "2023-04-04T17:17:16Z" + } + ] + } + }, + { + "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "properties": { + "accountName": "r-database-account-6481", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:49:37Z", + "deletionTime": "2023-04-04T17:51:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", + "creationTime": "2023-04-04T17:49:38Z", + "deletionTime": "2023-04-04T17:51:33Z" + } + ] + } + }, + { + "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", + "properties": { + "accountName": "r-database-account-5265", + "apiType": "Sql", + "creationTime": "2023-04-04T18:05:44Z", + "deletionTime": "2023-04-04T18:06:15Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", + "creationTime": "2023-04-04T18:05:45Z", + "deletionTime": "2023-04-04T18:06:15Z" + } + ] + } + }, + { + "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", + "properties": { + "accountName": "r-database-account-2888", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:48:32Z", + "deletionTime": "2023-04-04T18:50:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", + "creationTime": "2023-04-04T18:48:33Z", + "deletionTime": "2023-04-04T18:50:14Z" + } + ] + } + }, + { + "name": "ad1760ce-6137-41f0-843a-84a233b507fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", + "properties": { + "accountName": "r-database-account-3827", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:16:39Z", + "deletionTime": "2023-04-04T19:18:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", + "creationTime": "2023-04-04T19:16:40Z", + "deletionTime": "2023-04-04T19:18:14Z" + } + ] + } + }, + { + "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", + "properties": { + "accountName": "r-database-account-7735", + "apiType": "Sql", + "creationTime": "2023-04-04T19:32:03Z", + "deletionTime": "2023-04-04T19:33:01Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", + "creationTime": "2023-04-04T19:32:04Z", + "deletionTime": "2023-04-04T19:33:01Z" + } + ] + } + }, + { + "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", + "properties": { + "accountName": "r-database-account-1093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:46:39Z", + "deletionTime": "2023-04-04T19:47:45Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", + "creationTime": "2023-04-04T19:46:40Z", + "deletionTime": "2023-04-04T19:47:45Z" + } + ] + } + }, + { + "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", + "properties": { + "accountName": "r-database-account-5066", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z" + } + ] + } + }, + { + "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", + "properties": { + "accountName": "r-database-account-1835", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:17:28Z", + "deletionTime": "2023-04-04T20:34:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", + "creationTime": "2023-04-04T20:17:29Z", + "deletionTime": "2023-04-04T20:34:14Z" + } + ] + } + }, + { + "name": "cb2e954a-4e71-425a-b780-25555527fc7b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", + "properties": { + "accountName": "restoredaccount-5931", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z" + } + ] + } + }, + { + "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "properties": { + "accountName": "r-database-account-8394", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:02:22Z", + "deletionTime": "2023-04-04T21:20:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", + "creationTime": "2023-04-04T21:02:23Z", + "deletionTime": "2023-04-04T21:20:17Z" + } + ] + } + }, + { + "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", + "properties": { + "accountName": "r-database-account-5571", + "apiType": "Sql", + "creationTime": "2023-04-04T21:44:41Z", + "deletionTime": "2023-04-04T21:45:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", + "creationTime": "2023-04-04T21:44:42Z", + "deletionTime": "2023-04-04T21:45:35Z" + } + ] + } + }, + { + "name": "987588f7-7709-4336-aa45-223395911848", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", + "properties": { + "accountName": "r-database-account-1689", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T22:09:17Z", + "deletionTime": "2023-04-04T22:10:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", + "creationTime": "2023-04-04T22:09:19Z", + "deletionTime": "2023-04-04T22:10:56Z" + } + ] + } + }, + { + "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "properties": { + "accountName": "r-database-account-4876", + "apiType": "Sql", + "creationTime": "2023-04-04T22:24:45Z", + "deletionTime": "2023-04-04T22:25:39Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", + "creationTime": "2023-04-04T22:24:46Z", + "deletionTime": "2023-04-04T22:25:39Z" + } + ] + } + }, + { + "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "properties": { + "accountName": "r-database-account-3793", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T22:38:37Z", + "deletionTime": "2023-04-04T22:39:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", + "creationTime": "2023-04-04T22:38:38Z", + "deletionTime": "2023-04-04T22:39:26Z" + } + ] + } + }, + { + "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "properties": { + "accountName": "r-database-account-2846", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T22:54:10Z", + "deletionTime": "2023-04-04T22:55:15Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", + "creationTime": "2023-04-04T22:54:11Z", + "deletionTime": "2023-04-04T22:55:15Z" + } + ] + } + }, + { + "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "properties": { + "accountName": "r-database-account-121", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:09:10Z", + "deletionTime": "2023-04-04T23:26:11Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", + "creationTime": "2023-04-04T23:09:11Z", + "deletionTime": "2023-04-04T23:26:11Z" + } + ] + } + }, + { + "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", + "properties": { + "accountName": "restoredaccount-7907", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z" + } + ] + } + }, + { + "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "properties": { + "accountName": "r-database-account-5836", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:53:57Z", + "deletionTime": "2023-04-05T00:12:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", + "creationTime": "2023-04-04T23:53:58Z", + "deletionTime": "2023-04-05T00:12:42Z" + } + ] + } + }, + { + "name": "eda15431-8fd3-434e-a724-6478d0d766b0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", + "properties": { + "accountName": "restoredaccount-2781", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z" + } + ] + } + }, + { + "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", + "properties": { + "accountName": "r-database-account-886", + "apiType": "Sql", + "creationTime": "2023-04-05T00:38:08Z", + "deletionTime": "2023-04-05T00:55:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", + "creationTime": "2023-04-05T00:38:09Z", + "deletionTime": "2023-04-05T00:55:26Z" + } + ] + } + }, + { + "name": "0461674a-5302-4644-8006-15273be1dd01", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", + "properties": { + "accountName": "restoredaccount-1331", + "apiType": "Sql", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z" + } + ] + } + }, + { + "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "properties": { + "accountName": "r-database-account-5720", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:20:43Z", + "deletionTime": "2023-04-05T01:39:46Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", + "creationTime": "2023-04-05T01:20:44Z", + "deletionTime": "2023-04-05T01:39:46Z" + } + ] + } + }, + { + "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "properties": { + "accountName": "restoredaccount-3222", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z" + } + ] + } + }, + { + "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "properties": { + "accountName": "r-database-account-7279", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:07:38Z", + "deletionTime": "2023-04-05T02:24:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", + "creationTime": "2023-04-05T02:07:39Z", + "deletionTime": "2023-04-05T02:24:18Z" + } + ] + } + }, + { + "name": "3364799a-fb66-48f3-b389-45af2e775bd2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", + "properties": { + "accountName": "restoredaccount-2694", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z" + } + ] + } + }, + { + "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "properties": { + "accountName": "r-database-account-2111", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:52:15Z", + "deletionTime": "2023-04-05T02:53:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", + "creationTime": "2023-04-05T02:52:16Z", + "deletionTime": "2023-04-05T02:53:42Z" + } + ] + } + }, + { + "name": "1275f66f-c69b-4813-9b61-901e1ec451af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", + "properties": { + "accountName": "r-database-account-4270", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:09:42Z", + "deletionTime": "2023-04-05T03:11:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", + "creationTime": "2023-04-05T03:09:43Z", + "deletionTime": "2023-04-05T03:11:28Z" + } + ] + } + }, + { + "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", + "properties": { + "accountName": "r-database-account-6226", + "apiType": "Sql", + "creationTime": "2023-04-05T03:25:14Z", + "deletionTime": "2023-04-05T03:26:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", + "creationTime": "2023-04-05T03:25:15Z", + "deletionTime": "2023-04-05T03:26:12Z" + } + ] + } + }, + { + "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", + "properties": { + "accountName": "r-database-account-4472", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:39:46Z", + "deletionTime": "2023-04-05T03:40:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", + "creationTime": "2023-04-05T03:39:47Z", + "deletionTime": "2023-04-05T03:40:55Z" + } + ] + } + }, + { + "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", + "properties": { + "accountName": "r-database-account-5112", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T03:56:41Z", + "deletionTime": "2023-04-05T03:57:47Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", + "creationTime": "2023-04-05T03:56:42Z", + "deletionTime": "2023-04-05T03:57:47Z" + } + ] + } + }, + { + "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", + "properties": { + "accountName": "r-database-account-8806", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:11:45Z", + "deletionTime": "2023-04-05T04:37:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", + "creationTime": "2023-04-05T04:11:47Z", + "deletionTime": "2023-04-05T04:37:16Z" + } + ] + } + }, + { + "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", + "properties": { + "accountName": "restoredaccount-6850", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "fcd234fa-a27c-4150-9595-d0db433584e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", + "properties": { + "accountName": "r-database-account-705", + "apiType": "Sql", + "creationTime": "2023-04-05T05:56:56Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", + "creationTime": "2023-04-05T05:56:57Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "properties": { + "accountName": "r-database-account-4894", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:13:31Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", + "creationTime": "2023-04-05T06:13:32Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "properties": { + "accountName": "r-database-account-3212", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T06:08:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", + "creationTime": "2023-04-05T06:08:09Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "properties": { + "accountName": "r-database-account-9540", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:53:04Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", + "creationTime": "2023-04-05T05:53:05Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "properties": { + "accountName": "r-database-account-4658", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:02:37Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", + "creationTime": "2023-04-05T06:02:38Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "properties": { + "accountName": "r-database-account-3189", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:35:19Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", + "creationTime": "2023-04-05T06:35:20Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "properties": { + "accountName": "restoredaccount-7747", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z" + } + ] + } + }, + { + "name": "adc4a343-1599-470d-abcc-d951fdd50f37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", + "properties": { + "accountName": "r-database-account-3312", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:13:48Z", + "deletionTime": "2023-04-05T06:56:38Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", + "creationTime": "2023-04-04T17:13:49Z", + "deletionTime": "2023-04-05T06:56:38Z" + } + ] + } + }, + { + "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", + "properties": { + "accountName": "r-database-account-5846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:44:23Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", + "creationTime": "2023-04-04T21:44:25Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", + "properties": { + "accountName": "r-database-account-2760", + "apiType": "Sql", + "creationTime": "2023-04-04T21:33:57Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", + "creationTime": "2023-04-04T21:33:58Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "9ce35a43-8b24-4060-a058-191f976df7c1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", + "properties": { + "accountName": "restoredaccount-9271", + "apiType": "Sql", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", + "properties": { + "accountName": "r-database-account-9266", + "apiType": "Sql", + "creationTime": "2023-03-29T07:47:00Z", + "deletionTime": "2023-04-05T06:58:41Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", + "creationTime": "2023-03-29T07:47:01Z", + "deletionTime": "2023-04-05T06:58:41Z" + } + ] + } + }, + { + "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "properties": { + "accountName": "r-database-account-641", + "apiType": "Sql", + "creationTime": "2023-03-29T04:26:01Z", + "deletionTime": "2023-04-05T06:59:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", + "creationTime": "2023-03-29T04:26:02Z", + "deletionTime": "2023-04-05T06:59:03Z" + } + ] + } + }, + { + "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "properties": { + "accountName": "r-database-account-3287", + "apiType": "Sql", + "creationTime": "2023-03-29T07:55:06Z", + "deletionTime": "2023-04-05T07:00:47Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", + "creationTime": "2023-03-29T07:55:07Z", + "deletionTime": "2023-04-05T07:00:47Z" + } + ] + } + }, + { + "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "properties": { + "accountName": "r-database-account-3926", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:08:41Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", + "creationTime": "2023-03-29T17:08:42Z", + "deletionTime": "2023-04-05T07:01:53Z" + } + ] + } + }, + { + "name": "92ce3190-d16b-438f-9791-b2254a597435", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", + "properties": { + "accountName": "r-database-account-1530", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:05:13Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", + "creationTime": "2023-03-31T07:05:14Z", + "deletionTime": "2023-04-05T07:01:53Z" + } + ] + } + }, + { + "name": "c5934152-2095-41b0-9962-72be301ec23c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", + "properties": { + "accountName": "r-database-account-1333", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T07:09:38Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", + "creationTime": "2023-03-30T07:09:40Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", + "properties": { + "accountName": "r-database-account-2197", + "apiType": "Sql", + "creationTime": "2023-03-29T04:24:10Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", + "creationTime": "2023-03-29T04:24:11Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "properties": { + "accountName": "r-database-account-4608", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T00:10:43Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", + "creationTime": "2023-03-30T00:10:44Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "properties": { + "accountName": "r-database-account-4659", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:19:29Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", + "creationTime": "2023-04-04T18:19:30Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "properties": { + "accountName": "r-database-account-5637", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:25:03Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", + "creationTime": "2023-03-30T16:25:04Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "properties": { + "accountName": "r-database-account-5467", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:53:26Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", + "creationTime": "2023-04-05T04:53:27Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "401f849e-50e6-483b-813a-1a5f1059006c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", + "properties": { + "accountName": "r-database-account-5933", + "apiType": "Sql", + "creationTime": "2023-04-04T19:13:48Z", + "deletionTime": "2023-04-05T07:01:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", + "creationTime": "2023-04-04T19:13:49Z", + "deletionTime": "2023-04-05T07:01:55Z" + } + ] + } + }, + { + "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", + "properties": { + "accountName": "r-database-account-1535", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:20:58Z", + "deletionTime": "2023-04-05T07:01:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", + "creationTime": "2023-03-30T20:21:00Z", + "deletionTime": "2023-04-05T07:01:58Z" + } + ] + } + }, + { + "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", + "properties": { + "accountName": "r-database-account-5305", + "apiType": "Sql", + "creationTime": "2023-03-29T02:15:48Z", + "deletionTime": "2023-04-05T07:02:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", + "creationTime": "2023-03-29T02:15:49Z", + "deletionTime": "2023-04-05T07:02:00Z" + } + ] + } + }, + { + "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", + "properties": { + "accountName": "restoredaccount-590", + "apiType": "Sql", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "properties": { + "accountName": "restoredaccount-3736", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "af699620-0019-4a6b-ad59-e7c6381814ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", + "properties": { + "accountName": "restoredaccount-7822", + "apiType": "Sql", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", + "properties": { + "accountName": "restoredaccount-5262", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z" + } + ] + } + }, + { + "name": "05442da3-1214-4c48-9883-b06ab54491dd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", + "properties": { + "accountName": "r-database-account-6510", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:12:03Z", + "deletionTime": "2023-04-05T16:13:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", + "creationTime": "2023-04-05T16:12:04Z", + "deletionTime": "2023-04-05T16:13:54Z" + } + ] + } + }, + { + "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", + "properties": { + "accountName": "r-database-account-6751", + "apiType": "Sql", + "creationTime": "2023-04-05T16:17:14Z", + "deletionTime": "2023-04-05T16:17:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", + "creationTime": "2023-04-05T16:17:16Z", + "deletionTime": "2023-04-05T16:17:54Z" + } + ] + } + }, + { + "name": "554b58bc-ad47-4031-9100-02ef15baa510", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", + "properties": { + "accountName": "r-database-account-3896", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:22:51Z", + "deletionTime": "2023-04-05T16:24:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", + "creationTime": "2023-04-05T16:22:52Z", + "deletionTime": "2023-04-05T16:24:03Z" + } + ] + } + }, + { + "name": "d97105e7-6a53-435f-9219-21b7e6ace085", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", + "properties": { + "accountName": "r-database-account-8009", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T16:28:41Z", + "deletionTime": "2023-04-05T16:29:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", + "creationTime": "2023-04-05T16:28:42Z", + "deletionTime": "2023-04-05T16:29:40Z" + } + ] + } + }, + { + "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "properties": { + "accountName": "r-database-account-5770", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:34:14Z", + "deletionTime": "2023-04-05T16:51:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", + "creationTime": "2023-04-05T16:34:15Z", + "deletionTime": "2023-04-05T16:51:55Z" + } + ] + } + }, + { + "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "properties": { + "accountName": "restoredaccount-4079", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z" + } + ] + } + }, + { + "name": "a181c3ee-171b-4481-b30c-623238c24d41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", + "properties": { + "accountName": "restoredaccount-5402", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z" + } + ] + } + }, + { + "name": "115d217b-1e58-4653-af7e-756be6313d6e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", + "properties": { + "accountName": "r-database-account-5935", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:56:31Z", + "deletionTime": "2023-04-05T17:15:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", + "creationTime": "2023-04-05T16:56:32Z", + "deletionTime": "2023-04-05T17:15:52Z" + } + ] + } + }, + { + "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "properties": { + "accountName": "r-database-account-339", + "apiType": "Sql", + "creationTime": "2023-04-05T17:17:47Z", + "deletionTime": "2023-04-05T17:34:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", + "creationTime": "2023-04-05T17:17:48Z", + "deletionTime": "2023-04-05T17:34:52Z" + } + ] + } + }, + { + "name": "4350889f-8316-4611-8c7b-0de037f83cb3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", + "properties": { + "accountName": "restoredaccount-6292", + "apiType": "Sql", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z" + } + ] + } + }, + { + "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", + "properties": { + "accountName": "r-database-account-8514", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T17:39:47Z", + "deletionTime": "2023-04-05T17:58:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", + "creationTime": "2023-04-05T17:39:48Z", + "deletionTime": "2023-04-05T17:58:43Z" + } + ] + } + }, + { + "name": "e39d66a9-028e-499d-b488-fde2e53814c5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", + "properties": { + "accountName": "restoredaccount-9641", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z" + } + ] + } + }, + { + "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", + "properties": { + "accountName": "restoredaccount-2652", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z" + } + ] + } + }, + { + "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "properties": { + "accountName": "r-database-account-20", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:03:36Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", + "creationTime": "2023-04-05T18:03:37Z", + "deletionTime": "2023-04-05T18:21:00Z" + } + ] + } + }, + { + "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", + "properties": { + "accountName": "r-database-account-727", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:25:45Z", + "deletionTime": "2023-04-05T18:27:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", + "creationTime": "2023-04-05T18:25:47Z", + "deletionTime": "2023-04-05T18:27:03Z" + } + ] + } + }, + { + "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "properties": { + "accountName": "r-database-account-2209", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:38:04Z", + "deletionTime": "2023-04-05T18:40:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", + "creationTime": "2023-04-05T18:38:05Z", + "deletionTime": "2023-04-05T18:40:00Z" + } + ] + } + }, + { + "name": "e106c7e7-2828-4193-b125-0540ec42f85a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", + "properties": { + "accountName": "r-grem-db-account-3109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:20Z", + "deletionTime": "2023-04-05T19:17:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", + "creationTime": "2023-04-05T19:15:21Z", + "deletionTime": "2023-04-05T19:17:06Z" + } + ] + } + }, + { + "name": "19b77f33-9070-4bea-89ec-83ad22c59136", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", + "properties": { + "accountName": "r-grem-db-account-3153", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:32:53Z", + "deletionTime": "2023-04-05T19:33:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", + "creationTime": "2023-04-05T19:32:54Z", + "deletionTime": "2023-04-05T19:33:59Z" + } + ] + } + }, + { + "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", + "properties": { + "accountName": "r-grem-db-account-6612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:47:56Z", + "deletionTime": "2023-04-05T20:04:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", + "creationTime": "2023-04-05T19:47:57Z", + "deletionTime": "2023-04-05T20:04:52Z" + } + ] + } + }, + { + "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "properties": { + "accountName": "restoredaccount-5075", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z" + } + ] + } + }, + { + "name": "57958516-07cd-498b-b42b-d8bbde38fc72", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", + "properties": { + "accountName": "r-grem-db-account-2460", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:32:03Z", + "deletionTime": "2023-04-05T20:52:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", + "creationTime": "2023-04-05T20:32:04Z", + "deletionTime": "2023-04-05T20:52:58Z" + } + ] + } + }, + { + "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "properties": { + "accountName": "restoredaccount-9191", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z" + } + ] + } + }, + { + "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "properties": { + "accountName": "r-grem-db-account-917", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:20:40Z", + "deletionTime": "2023-04-05T21:22:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", + "creationTime": "2023-04-05T21:20:41Z", + "deletionTime": "2023-04-05T21:22:32Z" + } + ] + } + }, + { + "name": "d8af4291-a857-435c-9e68-add9be61e3e3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", + "properties": { + "accountName": "r-grem-db-account-4408", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:38:27Z", + "deletionTime": "2023-04-05T21:39:23Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", + "creationTime": "2023-04-05T21:38:28Z", + "deletionTime": "2023-04-05T21:39:23Z" + } + ] + } + }, + { + "name": "2348e86d-d845-4023-a61c-52a7c4998681", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", + "properties": { + "accountName": "r-grem-db-account-3493", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:53:12Z", + "deletionTime": "2023-04-05T22:10:15Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", + "creationTime": "2023-04-05T21:53:13Z", + "deletionTime": "2023-04-05T22:10:15Z" + } + ] + } + }, + { + "name": "10d05397-ea2c-4d64-a325-da1097b67a30", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", + "properties": { + "accountName": "restoredaccount-7617", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z" + } + ] + } + }, + { + "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "properties": { + "accountName": "r-grem-db-account-4657", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:37:57Z", + "deletionTime": "2023-04-05T22:57:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", + "creationTime": "2023-04-05T22:37:58Z", + "deletionTime": "2023-04-05T22:57:18Z" + } + ] + } + }, + { + "name": "b9c23cc0-13f3-4895-8534-809a00376677", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", + "properties": { + "accountName": "restoredaccount-1097", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z" + } + ] + } + }, + { + "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", + "properties": { + "accountName": "r-table-account-4377", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:25:55Z", + "deletionTime": "2023-04-05T23:27:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", + "creationTime": "2023-04-05T23:25:56Z", + "deletionTime": "2023-04-05T23:27:10Z" + } + ] + } + }, + { + "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", + "properties": { + "accountName": "r-table-account-1415", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:41:00Z", + "deletionTime": "2023-04-05T23:59:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", + "creationTime": "2023-04-05T23:41:01Z", + "deletionTime": "2023-04-05T23:59:07Z" + } + ] + } + }, + { + "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", + "properties": { + "accountName": "restoredaccount-5386", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z" + } + ] + } + }, + { + "name": "701f814c-13b7-4144-b75c-52946e6946cb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", + "properties": { + "accountName": "r-table-account-6354", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:26:22Z", + "deletionTime": "2023-04-06T00:43:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", + "creationTime": "2023-04-06T00:26:23Z", + "deletionTime": "2023-04-06T00:43:42Z" + } + ] + } + }, + { + "name": "a96f997d-2cbf-4a64-b917-c776e6908601", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", + "properties": { + "accountName": "restoredaccount-3726", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z" + } + ] + } + }, + { + "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "properties": { + "accountName": "r-table-account-6883", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:10:50Z", + "deletionTime": "2023-04-06T01:12:24Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", + "creationTime": "2023-04-06T01:10:51Z", + "deletionTime": "2023-04-06T01:12:24Z" + } + ] + } + }, + { + "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "properties": { + "accountName": "r-table-account-5301", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:30:03Z", + "deletionTime": "2023-04-06T01:31:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", + "creationTime": "2023-04-06T01:30:04Z", + "deletionTime": "2023-04-06T01:31:00Z" + } + ] + } + }, + { + "name": "999e9d75-47c8-4230-8a4e-677ee461269b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", + "properties": { + "accountName": "r-database-account-3960", + "apiType": "Sql", + "creationTime": "2023-04-06T02:16:51Z", + "deletionTime": "2023-04-06T02:17:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", + "creationTime": "2023-04-06T02:16:52Z", + "deletionTime": "2023-04-06T02:17:49Z" + } + ] + } + }, + { + "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "properties": { + "accountName": "r-database-account-6028", + "apiType": "Sql", + "creationTime": "2023-04-06T02:27:53Z", + "deletionTime": "2023-04-06T02:44:39Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", + "creationTime": "2023-04-06T02:27:54Z", + "deletionTime": "2023-04-06T02:44:39Z" + } + ] + } + }, + { + "name": "3065e921-a49b-43d6-84aa-037f18987a23", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", + "properties": { + "accountName": "restoredaccount-7075", + "apiType": "Sql", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z" + } + ] + } + }, + { + "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", + "properties": { + "accountName": "r-database-account-5983", + "apiType": "Sql", + "creationTime": "2023-04-06T03:09:16Z", + "deletionTime": "2023-04-06T03:10:13Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", + "creationTime": "2023-04-06T03:09:18Z", + "deletionTime": "2023-04-06T03:10:13Z" + } + ] + } + }, + { + "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "properties": { + "accountName": "r-database-account-7214", + "apiType": "Sql", + "creationTime": "2023-04-06T03:20:49Z", + "deletionTime": "2023-04-06T03:37:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", + "creationTime": "2023-04-06T03:20:50Z", + "deletionTime": "2023-04-06T03:37:02Z" + } + ] + } + }, + { + "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", + "properties": { + "accountName": "restoredaccount-1487", + "apiType": "Sql", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z" + } + ] + } + }, + { + "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", + "properties": { + "accountName": "r-table-account-2891", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:02:47Z", + "deletionTime": "2023-04-06T04:03:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", + "creationTime": "2023-04-06T04:02:48Z", + "deletionTime": "2023-04-06T04:03:49Z" + } + ] + } + }, + { + "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "properties": { + "accountName": "r-table-account-7603", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:18:01Z", + "deletionTime": "2023-04-06T04:36:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", + "creationTime": "2023-04-06T04:18:02Z", + "deletionTime": "2023-04-06T04:36:17Z" + } + ] + } + }, + { + "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", + "properties": { + "accountName": "restoredaccount-1355", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z" + } + ] + } + }, + { + "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", + "properties": { + "accountName": "r-table-account-6373", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:05:15Z", + "deletionTime": "2023-04-06T05:22:50Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", + "creationTime": "2023-04-06T05:05:16Z", + "deletionTime": "2023-04-06T05:22:50Z" + } + ] + } + }, + { + "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "properties": { + "accountName": "restoredaccount-665", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z" + } + ] + } + }, + { + "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", + "properties": { + "accountName": "r-table-account-1188", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:50:20Z", + "deletionTime": "2023-04-06T05:52:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", + "creationTime": "2023-04-06T05:50:21Z", + "deletionTime": "2023-04-06T05:52:03Z" + } + ] + } + }, + { + "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", + "properties": { + "accountName": "r-table-account-5261", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:08:10Z", + "deletionTime": "2023-04-06T06:09:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", + "creationTime": "2023-04-06T06:08:11Z", + "deletionTime": "2023-04-06T06:09:02Z" + } + ] + } + }, + { + "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", + "properties": { + "accountName": "r-grem-db-account-723", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:39:44Z", + "deletionTime": "2023-04-06T06:41:33Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", + "creationTime": "2023-04-06T06:39:45Z", + "deletionTime": "2023-04-06T06:41:33Z" + } + ] + } + }, + { + "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", + "properties": { + "accountName": "r-grem-db-account-7969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:58:36Z", + "deletionTime": "2023-04-06T06:59:36Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", + "creationTime": "2023-04-06T06:58:37Z", + "deletionTime": "2023-04-06T06:59:36Z" + } + ] + } + }, + { + "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", + "properties": { + "accountName": "r-grem-db-account-2577", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:15:43Z", + "deletionTime": "2023-04-06T07:33:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", + "creationTime": "2023-04-06T07:15:45Z", + "deletionTime": "2023-04-06T07:33:07Z" + } + ] + } + }, + { + "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "properties": { + "accountName": "restoredaccount-693", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z" + } + ] + } + }, + { + "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", + "properties": { + "accountName": "r-grem-db-account-4601", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:00:25Z", + "deletionTime": "2023-04-06T08:20:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", + "creationTime": "2023-04-06T08:00:26Z", + "deletionTime": "2023-04-06T08:20:12Z" + } + ] + } + }, + { + "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "properties": { + "accountName": "restoredaccount-1430", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z" + } + ] + } + }, + { + "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "properties": { + "accountName": "r-grem-db-account-7507", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:48:00Z", + "deletionTime": "2023-04-06T08:49:48Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", + "creationTime": "2023-04-06T08:48:01Z", + "deletionTime": "2023-04-06T08:49:48Z" + } + ] + } + }, + { + "name": "a8bfadea-a883-491c-8311-3202491cfe5d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", + "properties": { + "accountName": "r-grem-db-account-2606", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:05:50Z", + "deletionTime": "2023-04-06T09:06:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", + "creationTime": "2023-04-06T09:05:51Z", + "deletionTime": "2023-04-06T09:06:43Z" + } + ] + } + }, + { + "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "properties": { + "accountName": "r-grem-db-account-6681", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:21:06Z", + "deletionTime": "2023-04-06T09:38:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", + "creationTime": "2023-04-06T09:21:07Z", + "deletionTime": "2023-04-06T09:38:10Z" + } + ] + } + }, + { + "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "properties": { + "accountName": "restoredaccount-4215", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z" + } + ] + } + }, + { + "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", + "properties": { + "accountName": "r-grem-db-account-846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:06:04Z", + "deletionTime": "2023-04-06T10:25:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", + "creationTime": "2023-04-06T10:06:06Z", + "deletionTime": "2023-04-06T10:25:18Z" + } + ] + } + }, + { + "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "properties": { + "accountName": "restoredaccount-5193", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z" + } + ] + } + }, + { + "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "properties": { + "accountName": "r-table-account-6567", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T10:53:20Z", + "deletionTime": "2023-04-06T10:54:04Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", + "creationTime": "2023-04-06T10:53:21Z", + "deletionTime": "2023-04-06T10:54:04Z" + } + ] + } + }, + { + "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "properties": { + "accountName": "r-table-account-6921", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:08:49Z", + "deletionTime": "2023-04-06T11:27:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", + "creationTime": "2023-04-06T11:08:51Z", + "deletionTime": "2023-04-06T11:27:03Z" + } + ] + } + }, + { + "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", + "properties": { + "accountName": "restoredaccount-7286", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z" + } + ] + } + }, + { + "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "properties": { + "accountName": "r-table-account-5254", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:54:50Z", + "deletionTime": "2023-04-06T12:11:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", + "creationTime": "2023-04-06T11:54:51Z", + "deletionTime": "2023-04-06T12:11:56Z" + } + ] + } + }, + { + "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "properties": { + "accountName": "restoredaccount-6482", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z" + } + ] + } + }, + { + "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "properties": { + "accountName": "r-table-account-7579", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:39:46Z", + "deletionTime": "2023-04-06T12:41:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", + "creationTime": "2023-04-06T12:39:48Z", + "deletionTime": "2023-04-06T12:41:09Z" + } + ] + } + }, + { + "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", + "properties": { + "accountName": "cliz2xezqib6sfs", + "apiType": "Sql", + "creationTime": "2023-04-06T17:48:58Z", + "deletionTime": "2023-04-06T17:51:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", + "creationTime": "2023-04-06T17:48:59Z", + "deletionTime": "2023-04-06T17:51:37Z" + } + ] + } + }, + { + "name": "d4eb1a5c-fa82-416b-8765-73105541441a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", + "properties": { + "accountName": "climxyj6ppdtdi3", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:23Z", + "deletionTime": "2023-04-06T17:53:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", + "creationTime": "2023-04-06T17:50:24Z", + "deletionTime": "2023-04-06T17:53:09Z" + } + ] + } + }, + { + "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", + "properties": { + "accountName": "clinhlpp5ltdx45", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:16Z", + "deletionTime": "2023-04-06T17:53:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", + "creationTime": "2023-04-06T17:50:17Z", + "deletionTime": "2023-04-06T17:53:35Z" + } + ] + } + }, + { + "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "properties": { + "accountName": "clicvlfgrzahmvn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:25Z", + "deletionTime": "2023-04-06T17:54:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T17:54:37Z" + } + ] + } + }, + { + "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "properties": { + "accountName": "cli3hfttbxzir22", + "apiType": "Sql", + "creationTime": "2023-04-06T17:53:13Z", + "deletionTime": "2023-04-06T17:55:25Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", + "creationTime": "2023-04-06T17:53:14Z", + "deletionTime": "2023-04-06T17:55:25Z" + } + ] + } + }, + { + "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", + "properties": { + "accountName": "clioyp6agdkdrvk", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:56:23Z", + "deletionTime": "2023-04-06T17:58:30Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", + "creationTime": "2023-04-06T17:56:24Z", + "deletionTime": "2023-04-06T17:58:30Z" + } + ] + } + }, + { + "name": "c4ce576d-4033-4b12-a450-daa13093cf34", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", + "properties": { + "accountName": "clipniczjve2l4q", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:56:45Z", + "deletionTime": "2023-04-06T17:58:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", + "creationTime": "2023-04-06T17:56:46Z", + "deletionTime": "2023-04-06T17:58:52Z" + } + ] + } + }, + { + "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", + "properties": { + "accountName": "clitae37flgxvip", + "apiType": "Sql", + "creationTime": "2023-04-06T17:57:03Z", + "deletionTime": "2023-04-06T17:58:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", + "creationTime": "2023-04-06T17:57:04Z", + "deletionTime": "2023-04-06T17:58:56Z" + } + ] + } + }, + { + "name": "16cd72d1-8782-4faa-9e06-263055e4a852", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", + "properties": { + "accountName": "cliqeiwdwhcytpv", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:06Z", + "deletionTime": "2023-04-06T18:02:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", + "creationTime": "2023-04-06T18:02:07Z", + "deletionTime": "2023-04-06T18:02:32Z" + } + ] + } + }, + { + "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", + "properties": { + "accountName": "cling2ssmapqjtb", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:20Z", + "deletionTime": "2023-04-06T18:03:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", + "creationTime": "2023-04-06T18:02:21Z", + "deletionTime": "2023-04-06T18:03:00Z" + } + ] + } + }, + { + "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", + "properties": { + "accountName": "clic7r4mbsoucoq", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T18:04:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", + "creationTime": "2023-04-06T17:50:27Z", + "deletionTime": "2023-04-06T18:04:54Z" + } + ] + } + }, + { + "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", + "properties": { + "accountName": "cli6dll5uxhswmo", + "apiType": "Sql", + "creationTime": "2023-04-06T17:49:07Z", + "deletionTime": "2023-04-06T18:08:24Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", + "creationTime": "2023-04-06T17:49:08Z", + "deletionTime": "2023-04-06T18:08:24Z" + } + ] + } + }, + { + "name": "12fd85da-0738-45bc-a4ca-3576006082e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", + "properties": { + "accountName": "restoredaccount-7559", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z" + } + ] + } + }, + { + "name": "730730ee-ee98-48bf-9c87-a38abac5781d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", + "properties": { + "accountName": "r-grem-db-account-3799", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:54:33Z", + "deletionTime": "2023-04-06T18:11:45Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", + "creationTime": "2023-04-06T17:54:34Z", + "deletionTime": "2023-04-06T18:11:45Z" + } + ] + } + }, + { + "name": "a331a0ab-07a6-4831-827d-30e513076c75", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", + "properties": { + "accountName": "r-grem-db-account-8345", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:39Z", + "deletionTime": "2023-04-06T18:52:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", + "creationTime": "2023-04-06T18:35:40Z", + "deletionTime": "2023-04-06T18:52:37Z" + } + ] + } + }, + { + "name": "c20213cc-0b64-4141-abdc-45f028e756fd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", + "properties": { + "accountName": "restoredaccount-3447", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z" + } + ] + } + }, + { + "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "properties": { + "accountName": "r-grem-db-account-6227", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:23:52Z", + "deletionTime": "2023-04-06T19:41:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", + "creationTime": "2023-04-06T19:23:53Z", + "deletionTime": "2023-04-06T19:41:19Z" + } + ] + } + }, + { + "name": "4228ce2e-f496-4131-a7b4-a093f4644646", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", + "properties": { + "accountName": "restoredaccount-601", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z" + } + ] + } + }, + { + "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "properties": { + "accountName": "r-database-account-3957", + "apiType": "Sql", + "creationTime": "2023-04-06T20:07:56Z", + "deletionTime": "2023-04-06T20:08:54Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", + "creationTime": "2023-04-06T20:07:57Z", + "deletionTime": "2023-04-06T20:08:54Z" + } + ] + } + }, + { + "name": "53ad2502-1710-406d-84e3-296fce5bd44a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", + "properties": { + "accountName": "r-database-account-9163", + "apiType": "Sql", + "creationTime": "2023-04-06T20:19:51Z", + "deletionTime": "2023-04-06T20:36:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", + "creationTime": "2023-04-06T20:19:52Z", + "deletionTime": "2023-04-06T20:36:03Z" + } + ] + } + }, + { + "name": "70ea9f86-be31-455a-b5be-791409c2b437", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", + "properties": { + "accountName": "restoredaccount-7173", + "apiType": "Sql", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z" + } + ] + } + }, + { + "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", + "properties": { + "accountName": "r-database-account-3610", + "apiType": "Sql", + "creationTime": "2023-04-06T21:00:14Z", + "deletionTime": "2023-04-06T21:01:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", + "creationTime": "2023-04-06T21:00:15Z", + "deletionTime": "2023-04-06T21:01:06Z" + } + ] + } + }, + { + "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "properties": { + "accountName": "r-database-account-2590", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:43Z", + "deletionTime": "2023-04-06T21:29:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", + "creationTime": "2023-04-06T21:11:44Z", + "deletionTime": "2023-04-06T21:29:03Z" + } + ] + } + }, + { + "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "properties": { + "accountName": "restoredaccount-5783", + "apiType": "Sql", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z" + } + ] + } + }, + { + "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", + "properties": { + "accountName": "r-grem-db-account-360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T21:54:18Z", + "deletionTime": "2023-04-06T21:55:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", + "creationTime": "2023-04-06T21:54:19Z", + "deletionTime": "2023-04-06T21:55:57Z" + } + ] + } + }, + { + "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", + "properties": { + "accountName": "r-grem-db-account-5702", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:13:06Z", + "deletionTime": "2023-04-06T22:13:57Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", + "creationTime": "2023-04-06T22:13:07Z", + "deletionTime": "2023-04-06T22:13:57Z" + } + ] + } + }, + { + "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "properties": { + "accountName": "r-grem-db-account-7080", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:28:25Z", + "deletionTime": "2023-04-06T22:45:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", + "creationTime": "2023-04-06T22:28:26Z", + "deletionTime": "2023-04-06T22:45:55Z" + } + ] + } + }, + { + "name": "0045cc2f-f262-44f7-94be-a8a81258114b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", + "properties": { + "accountName": "restoredaccount-3266", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z" + } + ] + } + }, + { + "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", + "properties": { + "accountName": "r-grem-db-account-8379", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:13:12Z", + "deletionTime": "2023-04-06T23:33:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", + "creationTime": "2023-04-06T23:13:14Z", + "deletionTime": "2023-04-06T23:33:31Z" + } + ] + } + }, + { + "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "properties": { + "accountName": "restoredaccount-4898", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z" + } + ] + } + }, + { + "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "properties": { + "accountName": "r-grem-db-account-97", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:01:21Z", + "deletionTime": "2023-04-07T00:03:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", + "creationTime": "2023-04-07T00:01:22Z", + "deletionTime": "2023-04-07T00:03:03Z" + } + ] + } + }, + { + "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", + "properties": { + "accountName": "r-grem-db-account-359", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:19:33Z", + "deletionTime": "2023-04-07T00:20:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", + "creationTime": "2023-04-07T00:19:34Z", + "deletionTime": "2023-04-07T00:20:32Z" + } + ] + } + }, + { + "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "properties": { + "accountName": "r-grem-db-account-6322", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:35:00Z", + "deletionTime": "2023-04-07T00:51:27Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", + "creationTime": "2023-04-07T00:35:01Z", + "deletionTime": "2023-04-07T00:51:27Z" + } + ] + } + }, + { + "name": "89acddd1-7338-4be9-b3f3-a7c060975428", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", + "properties": { + "accountName": "restoredaccount-3920", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z" + } + ] + } + }, + { + "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "properties": { + "accountName": "r-grem-db-account-1985", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:20:59Z", + "deletionTime": "2023-04-07T01:39:59Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", + "creationTime": "2023-04-07T01:21:01Z", + "deletionTime": "2023-04-07T01:39:59Z" + } + ] + } + }, + { + "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "properties": { + "accountName": "restoredaccount-2245", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z" + } + ] + } + }, + { + "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "properties": { + "accountName": "r-table-account-6589", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:08:08Z", + "deletionTime": "2023-04-07T02:09:18Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", + "creationTime": "2023-04-07T02:08:09Z", + "deletionTime": "2023-04-07T02:09:18Z" + } + ] + } + }, + { + "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", + "properties": { + "accountName": "r-table-account-455", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:23:44Z", + "deletionTime": "2023-04-07T02:42:21Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", + "creationTime": "2023-04-07T02:23:45Z", + "deletionTime": "2023-04-07T02:42:21Z" + } + ] + } + }, + { + "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "properties": { + "accountName": "restoredaccount-27", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z" + } + ] + } + }, + { + "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "properties": { + "accountName": "r-table-account-4096", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:09:53Z", + "deletionTime": "2023-04-07T03:26:55Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", + "creationTime": "2023-04-07T03:09:54Z", + "deletionTime": "2023-04-07T03:26:55Z" + } + ] + } + }, + { + "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", + "properties": { + "accountName": "restoredaccount-1168", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z" + } + ] + } + }, + { + "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", + "properties": { + "accountName": "r-table-account-6117", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:54:19Z", + "deletionTime": "2023-04-07T03:55:39Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", + "creationTime": "2023-04-07T03:54:20Z", + "deletionTime": "2023-04-07T03:55:39Z" + } + ] + } + }, + { + "name": "0554d9f5-654a-4d8b-b684-27f659539579", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", + "properties": { + "accountName": "r-table-account-5255", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:11:45Z", + "deletionTime": "2023-04-07T04:12:39Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", + "creationTime": "2023-04-07T04:11:47Z", + "deletionTime": "2023-04-07T04:12:39Z" + } + ] + } + }, + { + "name": "fece0537-1813-4eca-ba83-43a475cc913c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", + "properties": { + "accountName": "r-table-account-555", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:26:38Z", + "deletionTime": "2023-04-07T04:45:11Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", + "creationTime": "2023-04-07T04:26:39Z", + "deletionTime": "2023-04-07T04:45:11Z" + } + ] + } + }, + { + "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "properties": { + "accountName": "restoredaccount-3867", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z" + } + ] + } + }, + { + "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "properties": { + "accountName": "r-table-account-4311", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:13:59Z", + "deletionTime": "2023-04-07T05:30:58Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", + "creationTime": "2023-04-07T05:14:00Z", + "deletionTime": "2023-04-07T05:30:58Z" + } + ] + } + }, + { + "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "properties": { + "accountName": "restoredaccount-7020", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z" + } + ] + } + }, + { + "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "properties": { + "accountName": "r-table-account-6934", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:58:40Z", + "deletionTime": "2023-04-07T06:00:10Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", + "creationTime": "2023-04-07T05:58:41Z", + "deletionTime": "2023-04-07T06:00:10Z" + } + ] + } + }, + { + "name": "6d446c65-d616-4aa3-8138-ed609a031011", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", + "properties": { + "accountName": "cliz4gfhacxt3ra", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:02:28Z", + "deletionTime": "2023-04-07T18:06:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", + "creationTime": "2023-04-07T18:02:29Z", + "deletionTime": "2023-04-07T18:06:12Z" + } + ] + } + }, + { + "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "properties": { + "accountName": "clizzr52zwge4ps", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:16:23Z", + "deletionTime": "2023-04-07T18:19:37Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", + "creationTime": "2023-04-07T18:16:24Z", + "deletionTime": "2023-04-07T18:19:37Z" + } + ] + } + }, + { + "name": "ab946470-3753-427d-a821-ec8a57709a65", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", + "properties": { + "accountName": "cliyfwfppqkfatd", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:23:09Z", + "deletionTime": "2023-04-07T18:49:00Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", + "creationTime": "2023-04-07T18:23:10Z", + "deletionTime": "2023-04-07T18:49:00Z" + } + ] + } + }, + { + "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "properties": { + "accountName": "clinxdvetbmpu2e", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:54:49Z", + "deletionTime": "2023-04-07T19:21:12Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", + "creationTime": "2023-04-07T18:54:50Z", + "deletionTime": "2023-04-07T19:21:12Z" + } + ] + } + }, + { + "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", + "properties": { + "accountName": "clilwpd6a2jivng", + "apiType": "Sql", + "creationTime": "2023-04-07T22:22:56Z", + "deletionTime": "2023-04-07T22:49:32Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", + "creationTime": "2023-04-07T22:22:57Z", + "deletionTime": "2023-04-07T22:49:32Z" + } + ] + } + }, + { + "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", + "properties": { + "accountName": "cli5ohlmiu76mcl", + "apiType": "Sql", + "creationTime": "2023-04-08T14:54:41Z", + "deletionTime": "2023-04-08T15:00:16Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", + "creationTime": "2023-04-08T14:54:42Z", + "deletionTime": "2023-04-08T15:00:16Z" + } + ] + } + }, + { + "name": "20547469-51f9-4bd8-af49-537306f0b327", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", + "properties": { + "accountName": "clifmmb7dwsbns2", + "apiType": "Sql", + "creationTime": "2023-04-08T15:18:01Z", + "deletionTime": "2023-04-08T15:49:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", + "creationTime": "2023-04-08T15:18:02Z", + "deletionTime": "2023-04-08T15:49:43Z" + } + ] + } + }, + { + "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "properties": { + "accountName": "cliv5od2aotadzs", + "apiType": "Sql", + "creationTime": "2023-04-08T15:52:34Z", + "deletionTime": "2023-04-08T16:18:52Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", + "creationTime": "2023-04-08T15:52:35Z", + "deletionTime": "2023-04-08T16:18:52Z" + } + ] + } + }, + { + "name": "62bf06d8-9e56-4434-9078-423179904be7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", + "properties": { + "accountName": "clijr7md3oh7aue", + "apiType": "Sql", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z" + } + ] + } + }, + { + "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "properties": { + "accountName": "clidkdojm4zyywo", + "apiType": "Sql", + "creationTime": "2023-04-08T17:18:16Z", + "deletionTime": "2023-04-08T17:22:23Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", + "creationTime": "2023-04-08T17:18:17Z", + "deletionTime": "2023-04-08T17:22:23Z" + } + ] + } + }, + { + "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "properties": { + "accountName": "clidhqrfu4m2zyv", + "apiType": "Sql", + "creationTime": "2023-04-10T17:53:22Z", + "deletionTime": "2023-04-10T17:56:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", + "creationTime": "2023-04-10T17:53:23Z", + "deletionTime": "2023-04-10T17:56:06Z" + } + ] + } + }, + { + "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "properties": { + "accountName": "mk-ps-pna-enabled", + "apiType": "Sql", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z" + } + ] + } + }, + { + "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "properties": { + "accountName": "mk-test-ps-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z" + } + ] + } + }, + { + "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "properties": { + "accountName": "mayank-test-src", + "apiType": "Sql", + "creationTime": "2023-04-12T19:51:34Z", + "deletionTime": "2023-04-12T23:26:03Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", + "creationTime": "2023-04-12T19:51:35Z", + "deletionTime": "2023-04-12T23:26:03Z" + } + ] + } + }, + { + "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "properties": { + "accountName": "climpgqg4rhbujz", + "apiType": "Sql", + "creationTime": "2023-04-13T13:44:29Z", + "deletionTime": "2023-04-13T13:48:14Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", + "creationTime": "2023-04-13T13:44:30Z", + "deletionTime": "2023-04-13T13:48:14Z" + } + ] + } + }, + { + "name": "6d55af6c-8889-4938-ba25-28afb7858035", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", + "properties": { + "accountName": "mayank-src", + "apiType": "Sql", + "creationTime": "2023-04-13T17:30:02Z", + "deletionTime": "2023-04-13T18:35:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", + "creationTime": "2023-04-13T17:30:03Z", + "deletionTime": "2023-04-13T18:35:56Z" + } + ] + } + }, + { + "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "properties": { + "accountName": "mayank-pspreview-test", + "apiType": "Sql", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z" + } + ] + } + }, + { + "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "properties": { + "accountName": "r-database-account-3188", + "apiType": "Sql", + "creationTime": "2023-04-18T13:44:01Z", + "deletionTime": "2023-04-18T14:06:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", + "creationTime": "2023-04-18T13:44:02Z", + "deletionTime": "2023-04-18T14:06:35Z" + } + ] + } + }, + { + "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "properties": { + "accountName": "restoredaccount-5903", + "apiType": "Sql", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z" + } + ] + } + }, + { + "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "properties": { + "accountName": "r-database-account-8442", + "apiType": "Sql", + "creationTime": "2023-04-18T18:21:09Z", + "deletionTime": "2023-04-18T18:43:26Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", + "creationTime": "2023-04-18T18:21:10Z", + "deletionTime": "2023-04-18T18:43:26Z" + } + ] + } + }, + { + "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", + "properties": { + "accountName": "restoredaccount-5883", + "apiType": "Sql", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z" + } + ] + } + }, + { + "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", + "properties": { + "accountName": "r-database-account-8968", + "apiType": "Sql", + "creationTime": "2023-04-18T20:58:17Z", + "deletionTime": "2023-04-18T21:21:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", + "creationTime": "2023-04-18T20:58:18Z", + "deletionTime": "2023-04-18T21:21:06Z" + } + ] + } + }, + { + "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", + "properties": { + "accountName": "restoredaccount-8805", + "apiType": "Sql", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z" + } + ] + } + }, + { + "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "properties": { + "accountName": "r-database-account-7565", + "apiType": "Sql", + "creationTime": "2023-04-19T04:54:02Z", + "deletionTime": "2023-04-19T05:17:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", + "creationTime": "2023-04-19T04:54:03Z", + "deletionTime": "2023-04-19T05:17:07Z" + } + ] + } + }, + { + "name": "a440fc94-a486-473c-bdeb-b62363814132", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", + "properties": { + "accountName": "restoredaccount-8250", + "apiType": "Sql", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z" + } + ] + } + }, + { + "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "properties": { + "accountName": "r-database-account-3177", + "apiType": "Sql", + "creationTime": "2023-04-19T07:32:19Z", + "deletionTime": "2023-04-19T07:54:43Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", + "creationTime": "2023-04-19T07:32:20Z", + "deletionTime": "2023-04-19T07:54:43Z" + } + ] + } + }, + { + "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "properties": { + "accountName": "restoredaccount-9058", + "apiType": "Sql", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z" + } + ] + } + }, + { + "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "properties": { + "accountName": "r-database-account-9523", + "apiType": "Sql", + "creationTime": "2023-04-19T19:31:56Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", + "creationTime": "2023-04-19T19:31:57Z", + "deletionTime": "2023-04-19T23:47:56Z" + } + ] + } + }, + { + "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", + "properties": { + "accountName": "restoredaccount-4287", + "apiType": "Sql", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z" + } + ] + } + }, + { + "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "properties": { + "accountName": "r-database-account-8435", + "apiType": "Sql", + "creationTime": "2023-04-06T02:11:39Z", + "deletionTime": "2023-04-19T23:49:01Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", + "creationTime": "2023-04-06T02:11:40Z", + "deletionTime": "2023-04-19T23:49:01Z" + } + ] + } + }, + { + "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "properties": { + "accountName": "r-database-account-5580", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T18:31:49Z", + "deletionTime": "2023-04-19T23:53:21Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", + "creationTime": "2023-04-05T18:31:50Z", + "deletionTime": "2023-04-19T23:53:21Z" + } + ] + } + }, + { + "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "properties": { + "accountName": "r-database-account-163", + "apiType": "Sql", + "creationTime": "2023-04-18T16:23:17Z", + "deletionTime": "2023-04-19T23:54:07Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", + "creationTime": "2023-04-18T16:23:18Z", + "deletionTime": "2023-04-19T23:54:07Z" + } + ] + } + }, + { + "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "properties": { + "accountName": "r-database-account-8550", + "apiType": "Sql", + "creationTime": "2023-04-06T02:07:24Z", + "deletionTime": "2023-04-19T23:57:08Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", + "creationTime": "2023-04-06T02:07:26Z", + "deletionTime": "2023-04-19T23:57:08Z" + } + ] + } + }, + { + "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "properties": { + "accountName": "r-database-account-605", + "apiType": "Sql", + "creationTime": "2023-04-20T00:04:33Z", + "deletionTime": "2023-04-20T00:05:28Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", + "creationTime": "2023-04-20T00:04:34Z", + "deletionTime": "2023-04-20T00:05:28Z" + } + ] + } + }, + { + "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", + "properties": { + "accountName": "r-database-account-1077", + "apiType": "Sql", + "creationTime": "2023-04-20T00:07:31Z", + "deletionTime": "2023-04-20T00:30:02Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", + "creationTime": "2023-04-20T00:07:32Z", + "deletionTime": "2023-04-20T00:30:02Z" + } + ] + } + }, + { + "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", + "properties": { + "accountName": "restoredaccount-5322", + "apiType": "Sql", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z" + } + ] + } + }, + { + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", + "properties": { + "accountName": "r-database-account-5132", + "apiType": "Sql", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" + } + ] + } + }, + { + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" + } + ] + } + }, + { + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", + "properties": { + "accountName": "restoredaccount-1053", + "apiType": "Sql", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-21T15:57:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "properties": { + "accountName": "drop-continuous7", + "apiType": "Sql", + "creationTime": "2022-05-26T18:49:51Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", + "creationTime": "2022-05-26T18:49:52Z" + } + ] + } + }, + { + "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "properties": { + "accountName": "periodicacctdrop", + "apiType": "Sql", + "creationTime": "2022-08-24T22:57:51Z", + "oldestRestorableTime": "2023-04-13T15:57:29Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", + "creationTime": "2022-08-24T22:57:51Z" + } + ] + } + }, + { + "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "properties": { + "accountName": "periodicacctdrop2", + "apiType": "Sql", + "creationTime": "2022-05-26T20:16:50Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", + "creationTime": "2022-05-26T20:16:50Z" + } + ] + } + }, + { + "name": "b169ba58-4696-4196-99a4-51995d99f004", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "properties": { + "accountName": "readregionrestore-1", + "apiType": "Sql", + "creationTime": "2023-03-02T00:15:37Z", + "oldestRestorableTime": "2023-03-21T15:57:29Z", + "restorableLocations": [ + { + "locationName": "Southeast Asia", + "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", + "creationTime": "2023-03-02T00:15:37Z" + }, + { + "locationName": "Central India", + "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", + "creationTime": "2023-03-02T00:38:10Z" + } + ] + } + }, + { + "name": "83301fff-71b5-4cb0-a399-3c6331b78411", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "properties": { + "accountName": "portal-mongo-test", + "apiType": "MongoDB", + "creationTime": "2023-03-27T17:28:08Z", + "deletionTime": "2023-03-27T17:30:49Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", + "creationTime": "2023-03-27T17:28:09Z", + "deletionTime": "2023-03-27T17:30:49Z" + } + ] + } + }, + { + "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "properties": { + "accountName": "amisi-8bd4a726", + "apiType": "Sql", + "creationTime": "2023-03-29T07:24:07Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", + "creationTime": "2023-03-29T07:26:03Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", + "creationTime": "2023-03-29T07:24:08Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "properties": { + "accountName": "amisi-da11000f", + "apiType": "Sql", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", + "creationTime": "2023-03-29T07:09:11Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "properties": { + "accountName": "dsapaliga-restore-test2", + "apiType": "Sql", + "creationTime": "2023-03-29T19:36:21Z", + "deletionTime": "2023-03-29T22:55:47Z", + "oldestRestorableTime": "2023-03-22T22:55:47Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", + "creationTime": "2023-03-29T19:36:22Z", + "deletionTime": "2023-03-29T22:55:47Z" + } + ] + } + }, + { + "name": "66326971-fd72-4b66-9495-da9f95f0e86a", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "properties": { + "accountName": "dsapaliga-restore-test3", + "apiType": "Sql", + "creationTime": "2023-03-29T21:45:59Z", + "deletionTime": "2023-03-29T22:55:54Z", + "oldestRestorableTime": "2023-03-22T22:55:54Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", + "creationTime": "2023-03-29T21:48:10Z", + "deletionTime": "2023-03-29T21:57:56Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", + "creationTime": "2023-03-29T21:46:00Z", + "deletionTime": "2023-03-29T22:55:54Z" + } + ] + } + }, + { + "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "properties": { + "accountName": "dsapaliga-restore-test4", + "apiType": "Sql", + "creationTime": "2023-03-29T22:08:33Z", + "deletionTime": "2023-03-29T22:56:00Z", + "oldestRestorableTime": "2023-03-22T22:56:00Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", + "creationTime": "2023-03-29T22:08:34Z", + "deletionTime": "2023-03-29T22:56:00Z" + } + ] + } + }, + { + "name": "84a35eb5-784c-4923-a52f-60bd04765953", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "properties": { + "accountName": "dsapaliga-restore-test6", + "apiType": "Sql", + "creationTime": "2023-03-29T22:24:23Z", + "deletionTime": "2023-03-29T22:56:18Z", + "oldestRestorableTime": "2023-03-22T22:56:18Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", + "creationTime": "2023-03-29T22:26:42Z", + "deletionTime": "2023-03-29T22:56:18Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", + "creationTime": "2023-03-29T22:24:24Z", + "deletionTime": "2023-03-29T22:56:18Z" + } + ] + } + }, + { + "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "properties": { + "accountName": "dsapaliga-restored-westus-m", + "apiType": "Sql", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z", + "oldestRestorableTime": "2023-03-22T22:56:46Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z" + } + ] + } + }, + { + "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "properties": { + "accountName": "cli-continuous30-sopplsfv", + "apiType": "Sql", + "creationTime": "2023-03-29T23:59:38Z", + "deletionTime": "2023-03-30T00:12:32Z", + "oldestRestorableTime": "2023-03-23T00:12:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", + "creationTime": "2023-03-30T00:02:04Z", + "deletionTime": "2023-03-30T00:12:32Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", + "creationTime": "2023-03-29T23:59:39Z", + "deletionTime": "2023-03-30T00:12:32Z" + } + ] + } + }, + { + "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "properties": { + "accountName": "cli-continuous30-l5utea24-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "properties": { + "accountName": "cli-continuous30-l5utea24", + "apiType": "Sql", + "creationTime": "2023-03-30T00:33:44Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", + "creationTime": "2023-03-30T00:36:04Z", + "deletionTime": "2023-03-30T01:02:30Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", + "creationTime": "2023-03-30T00:33:45Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "properties": { + "accountName": "cli-continuous30-3eb7aosu", + "apiType": "Sql", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z", + "oldestRestorableTime": "2023-03-23T03:46:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", + "creationTime": "2023-03-30T03:35:19Z", + "deletionTime": "2023-03-30T03:46:34Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z" + } + ] + } + }, + { + "name": "856077e3-8335-4b95-9577-2ebf016ee892", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "properties": { + "accountName": "cli-continuous30-tqwxb6nj", + "apiType": "Sql", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z", + "oldestRestorableTime": "2023-03-23T04:05:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", + "creationTime": "2023-03-30T03:53:50Z", + "deletionTime": "2023-03-30T04:05:05Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z" + } + ] + } + }, + { + "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "properties": { + "accountName": "cli-continuous30-cmjnvki7", + "apiType": "Sql", + "creationTime": "2023-03-30T04:58:52Z", + "deletionTime": "2023-03-30T05:12:19Z", + "oldestRestorableTime": "2023-03-23T05:12:19Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", + "creationTime": "2023-03-30T05:01:09Z", + "deletionTime": "2023-03-30T05:12:19Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", + "creationTime": "2023-03-30T04:58:53Z", + "deletionTime": "2023-03-30T05:12:19Z" + } + ] + } + }, + { + "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5", + "apiType": "Sql", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", + "creationTime": "2023-03-30T14:12:07Z", + "deletionTime": "2023-03-30T14:38:59Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "f68b64bb-38f3-429b-be8f-81e44763929d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "properties": { + "accountName": "cli-continuous30-ta4jrave", + "apiType": "Sql", + "creationTime": "2023-03-30T14:48:08Z", + "deletionTime": "2023-03-30T15:16:54Z", + "oldestRestorableTime": "2023-03-23T15:16:54Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", + "creationTime": "2023-03-30T14:50:33Z", + "deletionTime": "2023-03-30T15:16:54Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", + "creationTime": "2023-03-30T14:48:09Z", + "deletionTime": "2023-03-30T15:16:54Z" + } + ] + } + }, + { + "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "properties": { + "accountName": "amisi-8bd4a726-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z" + } + ] + } + }, + { + "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "properties": { + "accountName": "amisi-765b8849", + "apiType": "Sql", + "creationTime": "2023-03-30T20:15:03Z", + "deletionTime": "2023-03-31T06:20:15Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", + "creationTime": "2023-03-30T20:15:04Z", + "deletionTime": "2023-03-31T06:20:15Z" + } + ] + } + }, + { + "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "apiType": "Sql", + "creationTime": "2022-09-29T05:44:13Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", + "creationTime": "2022-09-29T05:44:13Z" + } + ] + } + }, + { + "name": "a672303a-644d-4996-9d49-b3d2eddea72d", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "apiType": "Sql", + "creationTime": "2023-03-10T00:42:29Z", + "oldestRestorableTime": "2023-03-21T15:57:30Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", + "creationTime": "2023-03-10T00:42:29Z" + } + ] + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "120", + "Content-Type": "application/json", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-bcd14d98c2d566fb-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9ac35d6dfc38ad6f8e8f2b626624bb76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-database-5035" + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:34 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/operationResults/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1935a524-b43e-4908-881d-b1987f8a48b1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "bcb0b77e-d2e1-4ddc-89a6-799294b92f45", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155735Z:1935a524-b43e-4908-881d-b1987f8a48b1" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-7c77d6ae39dbc3b8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "901f5852dcacf2467581b9b0f0cc17ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bb22ed17-0272-4b76-a6a3-3447f29cc8af", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "bb22ed17-0272-4b76-a6a3-3447f29cc8af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155735Z:bb22ed17-0272-4b76-a6a3-3447f29cc8af" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-a671086d21126cf3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "daf53c54b0481ae9866a74db5d25ea55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:35 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "038bf25a-c7d9-49a2-88ac-e03651223278", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "038bf25a-c7d9-49a2-88ac-e03651223278", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155736Z:038bf25a-c7d9-49a2-88ac-e03651223278" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-4f468b8472330b75-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0d0faa202a04aec93cdb01b29a266859", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7482f5a7-96e1-4884-8d07-4fd50a365d35", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "7482f5a7-96e1-4884-8d07-4fd50a365d35", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155737Z:7482f5a7-96e1-4884-8d07-4fd50a365d35" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-f8b0d7fbdfdea62c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85f5e3459444a1386f050a41686b944f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ade22223-8c8e-4e82-a001-5622ac09e925", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ade22223-8c8e-4e82-a001-5622ac09e925", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155738Z:ade22223-8c8e-4e82-a001-5622ac09e925" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-0593d5a85decf355-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "468f639609bc29b573469e6daf368060", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "05fcbacb-9712-4588-91cc-77a24542a470", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "05fcbacb-9712-4588-91cc-77a24542a470", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155740Z:05fcbacb-9712-4588-91cc-77a24542a470" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-6f8f48460206b92a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a951a02652f8c10716d9eff208746d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a312c28c-25af-4145-96f0-40b3f641c51b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "a312c28c-25af-4145-96f0-40b3f641c51b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155744Z:a312c28c-25af-4145-96f0-40b3f641c51b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-c1579edf0607d84a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "361bb24622963c9d2dcc12fef6caf239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9ace00b-6b0b-4069-84d3-f9b42bb48ba6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "d9ace00b-6b0b-4069-84d3-f9b42bb48ba6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155752Z:d9ace00b-6b0b-4069-84d3-f9b42bb48ba6" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-8b7c09e5db93954b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4e3fa9851ad631205303d44e6bb609eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "479", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3d7eb341-fd1e-4f63-b24b-f2ff50358122", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "3d7eb341-fd1e-4f63-b24b-f2ff50358122", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155753Z:3d7eb341-fd1e-4f63-b24b-f2ff50358122" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", + "name": "sql-database-5035", + "properties": { + "resource": { + "id": "sql-database-5035", + "_rid": "j3owAA==", + "_self": "dbs/j3owAA==/", + "_etag": "\u00220000f40a-0000-0600-0000-644160f60000\u0022", + "_colls": "colls/", + "_users": "users/", + "_ts": 1682006262 + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "489", + "Content-Type": "application/json", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-2bb8e417fe78ac38-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1afc27ccca497ddf584c63521296a67b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-container-8650", + "indexingPolicy": { + "automatic": true, + "indexingMode": "consistent", + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point" + ] + } + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + } + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:53 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650/operationResults/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "20b12b1c-6e3e-406f-b09c-ad484e9d64f3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "bb499232-b656-443a-b0f2-2f327cb7cd80", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155754Z:20b12b1c-6e3e-406f-b09c-ad484e9d64f3" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-8235e28ecfa17fe4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a329fe261ef5df3b60d07dcdbdde416c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "010a99f6-dfea-4f4a-90c2-facdf46878b3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "010a99f6-dfea-4f4a-90c2-facdf46878b3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155754Z:010a99f6-dfea-4f4a-90c2-facdf46878b3" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-276b2f7dcbc841b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3c06d32da392d107fb6b306637912e87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:54 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e7719608-a805-422e-b936-59ba7cab5b56", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e7719608-a805-422e-b936-59ba7cab5b56", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155755Z:e7719608-a805-422e-b936-59ba7cab5b56" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-bb917a0145ffc2cb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "132ca0d4036d46853e97e7277d5ed40b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d5276651-e2ab-439e-873b-7f597918fd91", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d5276651-e2ab-439e-873b-7f597918fd91", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155756Z:d5276651-e2ab-439e-873b-7f597918fd91" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-4774aaf93bcf01bb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a2026a13bca8230f657a78aedd4a8cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "653819cc-63d3-45ef-a872-036d81dd08ac", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "653819cc-63d3-45ef-a872-036d81dd08ac", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155757Z:653819cc-63d3-45ef-a872-036d81dd08ac" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-058e918b10245a40-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1df8f5a22db22aff4ec0fdfbbce0549d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:57:58 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eac99458-2ce8-49d8-87bc-9626eb177969", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "eac99458-2ce8-49d8-87bc-9626eb177969", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155759Z:eac99458-2ce8-49d8-87bc-9626eb177969" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-ad1889ff8e387c46-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "11c42596b47099bc6fa91c155bfa5869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:58:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1fea19ea-9b79-4d6c-b3cc-cfde45993230", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "1fea19ea-9b79-4d6c-b3cc-cfde45993230", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155803Z:1fea19ea-9b79-4d6c-b3cc-cfde45993230" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-65ec96052aa50f31-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "888417eeb665745826f62c0a3d35c615", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:58:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "03880cf7-70f2-4b7e-afaf-f06468f52062", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "03880cf7-70f2-4b7e-afaf-f06468f52062", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155811Z:03880cf7-70f2-4b7e-afaf-f06468f52062" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-c9bbe9c10d8c82ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c7f30a039710ee5e385fae0910e9ce53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "1374", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 15:58:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "26470c33-e543-4a73-84a8-c157333cb48f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "26470c33-e543-4a73-84a8-c157333cb48f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155811Z:26470c33-e543-4a73-84a8-c157333cb48f" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", + "name": "sql-container-8650", + "properties": { + "resource": { + "id": "sql-container-8650", + "indexingPolicy": { + "indexingMode": "consistent", + "automatic": true, + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + }, + { + "path": "/\u0022_etag\u0022/?" + } + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point", + "LineString", + "Polygon", + "MultiPolygon" + ] + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + }, + "uniqueKeyPolicy": { + "uniqueKeys": [] + }, + "conflictResolutionPolicy": { + "mode": "LastWriterWins", + "conflictResolutionPath": "/_ts", + "conflictResolutionProcedure": "" + }, + "backupPolicy": { + "type": 1 + }, + "geospatialConfig": { + "type": "Geography" + }, + "_rid": "j3owAIouD24=", + "_ts": 1682006282, + "_self": "dbs/j3owAA==/colls/j3owAIouD24=/", + "_etag": "\u00220000f90a-0000-0600-0000-6441610a0000\u0022", + "_docs": "docs/", + "_sprocs": "sprocs/", + "_triggers": "triggers/", + "_udfs": "udfs/", + "_conflicts": "conflicts/", + "statistics": [ + { + "id": "0", + "sizeInKB": 0, + "documentCount": 0, + "sampledDistinctPartitionKeyCount": 0, + "partitionKeys": [] + } + ] + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "578", + "Content-Type": "application/json", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-dcc1b5c58e18a74f-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5ba40c9437cbcde050ea7a87b15c39e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "location": "westcentralus", + "properties": { + "locations": [ + { + "locationName": "northcentralus", + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "createMode": "Restore", + "restoreParameters": { + "restoreMode": "PointInTime", + "sourceBackupLocation": "West Central US", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "restoreTimestampInUtc": "2023-04-20T16:59:32.0000000Z" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2864", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:37 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296/operationResults/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c53c6305-a689-4258-a662-bf9883498c66", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170237Z:c53c6305-a689-4258-a662-bf9883498c66" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296", + "name": "restoredaccount-3296", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T17:02:34.837115Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "restoreTimestampInUtc": "2023-04-20T16:59:32Z", + "sourceBackupLocation": "West Central US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T17:02:34.837115Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T17:02:34.837115Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:02:34.837115Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:02:34.837115Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-ba905f4768676b07-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "28a8a3d8ba21d33713fac0ace3668603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b4ad616a-dc72-4721-ba46-498bb5cf3df9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "b4ad616a-dc72-4721-ba46-498bb5cf3df9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170242Z:b4ad616a-dc72-4721-ba46-498bb5cf3df9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-0cd0d2ffa260fa8b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d70925744d7e3bd6b5ebc47c31d77eec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170243Z:d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-25f57ee4adbd02bc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0eaf53ad10b34cc1db7df39698aad630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:43 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eb0d9695-9245-4a57-992a-59c6801e2675", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "eb0d9695-9245-4a57-992a-59c6801e2675", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170244Z:eb0d9695-9245-4a57-992a-59c6801e2675" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-f966f42d5951d832-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "299402c8655a8ba9cd6d7336f5bba13c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "de0ee014-816a-4cd1-b8c8-d141f5d3e568", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "de0ee014-816a-4cd1-b8c8-d141f5d3e568", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170245Z:de0ee014-816a-4cd1-b8c8-d141f5d3e568" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-1df94855416d58f2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "90fed37b78b7634f63bcfb005a3fa20a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "35789de9-89e8-4c93-837c-05e99165c2a3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "35789de9-89e8-4c93-837c-05e99165c2a3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170247Z:35789de9-89e8-4c93-837c-05e99165c2a3" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-5ec0e1b550655f86-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2eb3941455424892aa2441459d8b571f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:50 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "abe9d602-93f0-4e35-a8e2-74d51788af3d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "abe9d602-93f0-4e35-a8e2-74d51788af3d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170251Z:abe9d602-93f0-4e35-a8e2-74d51788af3d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-4e9c74c3e58fcb0a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c51ab6dc46ab5079b231c59d69a8318d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:02:59 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9ab03b4-89bc-497b-b16a-39fc42fbb926", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "d9ab03b4-89bc-497b-b16a-39fc42fbb926", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170259Z:d9ab03b4-89bc-497b-b16a-39fc42fbb926" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-27868b656c81bc1a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "602168ca720826f941b6e592360ac5d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:03:16 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170316Z:90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-010bbc893eaf08f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a324dc65dd24ce5f1a627c1190f4de01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:03:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "15caa767-2077-4fba-a7a8-8a9f72e94045", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "15caa767-2077-4fba-a7a8-8a9f72e94045", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170348Z:15caa767-2077-4fba-a7a8-8a9f72e94045" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-6ac4dafb1a8e0c12-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "347ab3f2f66a6a16bcf483f460e619a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:04:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fb1d16d-0d4a-4de7-8e37-d738a2965061", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "8fb1d16d-0d4a-4de7-8e37-d738a2965061", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170420Z:8fb1d16d-0d4a-4de7-8e37-d738a2965061" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-f2f66faf53870c55-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8d38ec6b8d84ed68085245a6f6e8964d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:04:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "436b5d44-db83-4f51-968f-75defa1d7f11", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "436b5d44-db83-4f51-968f-75defa1d7f11", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170452Z:436b5d44-db83-4f51-968f-75defa1d7f11" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e654f9865027c499-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "829fe4d8918f6e6dc5bae6305a6a6e34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:05:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "38d95b20-ffba-41b1-ad1e-85de3bfbfcae", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "38d95b20-ffba-41b1-ad1e-85de3bfbfcae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170524Z:38d95b20-ffba-41b1-ad1e-85de3bfbfcae" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-72ade9d8f167289f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a3a5d34851bc657c4b8d2b17b07073d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:05:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "414f90e3-eebd-49e0-ba0b-2513aa46df73", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "414f90e3-eebd-49e0-ba0b-2513aa46df73", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170556Z:414f90e3-eebd-49e0-ba0b-2513aa46df73" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-8f0f61d603fc8e88-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c1c365d9646da197ec9c8caa738939e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:06:27 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "184121d9-2634-4b39-8650-14693fd7e969", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "184121d9-2634-4b39-8650-14693fd7e969", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170628Z:184121d9-2634-4b39-8650-14693fd7e969" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-ff6a6b394928233d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "225e11e3f3438790673a37016556bd54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:07:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170700Z:6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-06534bfb5694693c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "23d21246f24eb1edb9ca24f289b1bd12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:07:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5b2f93fa-0951-4892-8b89-cb283e3270df", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "5b2f93fa-0951-4892-8b89-cb283e3270df", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170732Z:5b2f93fa-0951-4892-8b89-cb283e3270df" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-64d8408fcce5f3b0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9f338df951126a90a595140b5f177528", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:08:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "171cabe6-86c7-4e48-b1d3-a492d550f008", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "171cabe6-86c7-4e48-b1d3-a492d550f008", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170804Z:171cabe6-86c7-4e48-b1d3-a492d550f008" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-43257c389d7e9edc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9584730b6f65f14f24ac6878ce9dfeb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:08:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0b55542a-5741-4fab-b237-f9d93457a6fb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "0b55542a-5741-4fab-b237-f9d93457a6fb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170837Z:0b55542a-5741-4fab-b237-f9d93457a6fb" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-6d99644ed63cbcf4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d708257d1e22f54281687eb9dde152a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:09:08 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "996ed2cd-41a0-444a-a97a-4421e8d55fe7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "996ed2cd-41a0-444a-a97a-4421e8d55fe7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170909Z:996ed2cd-41a0-444a-a97a-4421e8d55fe7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-60cced6d1663a1c3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "15e7fb55272d8aad3e427b65e8189b08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:09:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a0a3634d-0570-4a27-81ab-05642224c842", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "a0a3634d-0570-4a27-81ab-05642224c842", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170941Z:a0a3634d-0570-4a27-81ab-05642224c842" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-742c8acdcd049f74-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a8e5f979d0fed06318f14fdf1961342", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:10:12 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5707af6d-1496-4409-9d63-722d8ea4c73d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "5707af6d-1496-4409-9d63-722d8ea4c73d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171013Z:5707af6d-1496-4409-9d63-722d8ea4c73d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-120afbf04d341955-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d322c65ae8b65588777d99dfa3dc0c68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:10:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e420532a-1157-492a-8b5f-f5cfc7f4b4c1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "e420532a-1157-492a-8b5f-f5cfc7f4b4c1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171045Z:e420532a-1157-492a-8b5f-f5cfc7f4b4c1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-78c6ce71e80735d9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e2276cc1853b792f5f9e49d13af98a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:11:16 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d736992-ef16-4770-bc94-398fe91a7356", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "0d736992-ef16-4770-bc94-398fe91a7356", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171117Z:0d736992-ef16-4770-bc94-398fe91a7356" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-299eeedf0c365c69-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "210b382ec8f5ae51d638c29104264954", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:11:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0dd3608c-ef47-4f07-af45-fc71435b57f9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "0dd3608c-ef47-4f07-af45-fc71435b57f9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171149Z:0dd3608c-ef47-4f07-af45-fc71435b57f9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-fe5bcd8124a8693b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7b31ab82947442ee336bdebc03ea42c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:12:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "10736018-7b7b-47a6-8a7c-25bec5d7e669", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "10736018-7b7b-47a6-8a7c-25bec5d7e669", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171221Z:10736018-7b7b-47a6-8a7c-25bec5d7e669" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e794c53116446a35-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ab1f1e5ead104732473a71a5500b3ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:12:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "141367e2-b1dd-4481-860e-2ffd48f39ddf", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "141367e2-b1dd-4481-860e-2ffd48f39ddf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171253Z:141367e2-b1dd-4481-860e-2ffd48f39ddf" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-4aba54f9f638e489-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "671b90b01d7e99334ac8ed8aea94aaec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:13:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a56c422a-5c72-495c-a013-7474c3e7d57a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a56c422a-5c72-495c-a013-7474c3e7d57a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171325Z:a56c422a-5c72-495c-a013-7474c3e7d57a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-782f3b1010f761a0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "13acfaf6df759883382d5600edd3ec32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:13:57 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "369804e8-734d-4a6b-81b1-50f2e0cb01f6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "369804e8-734d-4a6b-81b1-50f2e0cb01f6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171358Z:369804e8-734d-4a6b-81b1-50f2e0cb01f6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-8e41c8a4883505e5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "730c0fb7dbcfc749bd172008fce8198f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:14:29 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d48dfc19-a9ec-419c-962c-348b032b608c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d48dfc19-a9ec-419c-962c-348b032b608c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171430Z:d48dfc19-a9ec-419c-962c-348b032b608c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e74cf7a1d19ddcef-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b24bbc8a054d0590c822e51c633ac76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "60f6093e-6176-4ab2-a099-4dd87c192f59", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "60f6093e-6176-4ab2-a099-4dd87c192f59", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171502Z:60f6093e-6176-4ab2-a099-4dd87c192f59" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-d8be36ff61db5a51-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dad2bbdc37871a1db1e4555dbf7a9b4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9df74c0-8b6d-41d9-9d28-bd1a30c7e038", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "d9df74c0-8b6d-41d9-9d28-bd1a30c7e038", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171534Z:d9df74c0-8b6d-41d9-9d28-bd1a30c7e038" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-a47cbd9930bbda10-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3137c61391ae17deb63b664cacf7008a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "3234", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b14b45f3-222c-4e3c-ac21-328a9426cda6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "b14b45f3-222c-4e3c-ac21-328a9426cda6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171534Z:b14b45f3-222c-4e3c-ac21-328a9426cda6" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296", + "name": "restoredaccount-3296", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T17:15:17.1331103Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://restoredaccount-3296.documents.azure.com:443/", + "sqlEndpoint": "https://restoredaccount-3296.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-3296-northcentralus", + "locationName": "North Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "restoreTimestampInUtc": "2023-04-20T16:59:32Z", + "sourceBackupLocation": "West Central US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T17:15:17.1331103Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T17:15:17.1331103Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:15:17.1331103Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:15:17.1331103Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-ef50cf266b527a81-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "412ca96b3f1691089d0aaa6f4afc1191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:34 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f9935221-1878-4c19-8db3-faba68a6413b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "1949d3d5-b489-4ef6-bfe3-9652000a2302", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171535Z:f9935221-1878-4c19-8db3-faba68a6413b" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-601873e13ecac27a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "15f1cbe3594ed339bea694a4e76ecdba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4868b5ac-0107-4407-8d53-9acde00cec5e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "4868b5ac-0107-4407-8d53-9acde00cec5e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171535Z:4868b5ac-0107-4407-8d53-9acde00cec5e" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-ad54db7366bb37b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cd64d42a00b9f08ee1e1655b1bbbc0cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "943adfd4-a900-4121-9afb-2ee2101f2d0d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "943adfd4-a900-4121-9afb-2ee2101f2d0d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171536Z:943adfd4-a900-4121-9afb-2ee2101f2d0d" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-73f2dbf23deca624-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7f8bf09bfc0a8e43a56a4154e523636d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:37 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9b099426-7568-4f1d-bf6a-28a7e6e3c78d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "9b099426-7568-4f1d-bf6a-28a7e6e3c78d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171537Z:9b099426-7568-4f1d-bf6a-28a7e6e3c78d" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-df7d79ccc6f8d0c8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fb2169eda16de3003c00346df4ddb802", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1a434940-0217-4b30-848b-17dbfa7af90c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "1a434940-0217-4b30-848b-17dbfa7af90c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171539Z:1a434940-0217-4b30-848b-17dbfa7af90c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f81e74a2bce8afad-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f608c8e54ee32eb091d6274ebf3a0bbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ab55a94-1f3b-4922-9f97-6634cf2bbf19", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "7ab55a94-1f3b-4922-9f97-6634cf2bbf19", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171541Z:7ab55a94-1f3b-4922-9f97-6634cf2bbf19" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-06d39890450a6338-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b16ef77dc59afa5ef0a84209c7d699c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "902e262e-5df9-4526-bdd2-052d5a6e6619", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "902e262e-5df9-4526-bdd2-052d5a6e6619", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171545Z:902e262e-5df9-4526-bdd2-052d5a6e6619" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fb7d989683ce3f65-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1c6f3eb26d1a9f8ab9f36a9779b12302", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:15:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3e7f81bd-80da-49d5-a7df-a759c8ed3d24", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "3e7f81bd-80da-49d5-a7df-a759c8ed3d24", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171553Z:3e7f81bd-80da-49d5-a7df-a759c8ed3d24" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d9cec4dfac01a71e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fcef77f5066f20686a0e063a0ba666bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:16:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07edb4cd-3e71-49d5-b2eb-a893684027af", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "07edb4cd-3e71-49d5-b2eb-a893684027af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171609Z:07edb4cd-3e71-49d5-b2eb-a893684027af" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-57ccdb6a2106f868-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "809b603ceecb0fa26dcff7a65ac7813e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:16:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8946ab84-49d0-42fe-831a-0cfe30424387", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "8946ab84-49d0-42fe-831a-0cfe30424387", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171641Z:8946ab84-49d0-42fe-831a-0cfe30424387" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d48d7fe55a09b9ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "50133f849de6ab57d64eb20c674f9313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:17:12 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c798d50-f571-45a7-be74-d46dcfeeb778", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "4c798d50-f571-45a7-be74-d46dcfeeb778", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171713Z:4c798d50-f571-45a7-be74-d46dcfeeb778" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fccc7ac87c9deb3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "195aae8da3160737d4df8fa00ec2c5a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:17:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ceb906bc-a611-4b57-ae09-6289c98810ee", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "ceb906bc-a611-4b57-ae09-6289c98810ee", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171745Z:ceb906bc-a611-4b57-ae09-6289c98810ee" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-a8a26bdf858af6ae-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cbb6c78d16939fd508f0a97c3b96a81d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:18:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171817Z:f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f5ad778bd9a99692-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac19e43b686ce028080c7b060eb79c14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:18:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a64b9c83-693d-49d0-8c73-ead2eb04570a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "a64b9c83-693d-49d0-8c73-ead2eb04570a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171849Z:a64b9c83-693d-49d0-8c73-ead2eb04570a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d6c927a5734e067f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9f7f0f88c7997680d9bb1025f9bacb3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:19:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ac9a5c2a-804a-412f-a846-540dfd34eda0", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "ac9a5c2a-804a-412f-a846-540dfd34eda0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171921Z:ac9a5c2a-804a-412f-a846-540dfd34eda0" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f1a1ba0ecdccd498-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2a64713719a924369fd5c3869bce9151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:19:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d0384ff-28c8-4682-a944-f62dee9a9248", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "1d0384ff-28c8-4682-a944-f62dee9a9248", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171954Z:1d0384ff-28c8-4682-a944-f62dee9a9248" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-24b30a034220a8cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2cf495530816748464a2d3b15702e74d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:20:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a67ca024-436d-4609-8116-dcd258b91e60", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "a67ca024-436d-4609-8116-dcd258b91e60", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172026Z:a67ca024-436d-4609-8116-dcd258b91e60" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-b9e5c3cec1bb61fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9cce3c4072526f6ad85a00c404f9db0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:20:57 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "99b7c90f-4690-4cf9-ad7f-b54cf9699377", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "99b7c90f-4690-4cf9-ad7f-b54cf9699377", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172058Z:99b7c90f-4690-4cf9-ad7f-b54cf9699377" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-7db7bf9729be34b5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63d2bf2a9ec62e27edf0c5064685cd9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:21:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c67bdba-8c02-47e4-b896-1f7b878dd696", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "4c67bdba-8c02-47e4-b896-1f7b878dd696", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172130Z:4c67bdba-8c02-47e4-b896-1f7b878dd696" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fe4c2a0b3229a039-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5e4675eef400e0ff2a8553bc08bf706b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:22:02 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "82bcf547-63c9-45ad-a456-dd166031495b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "82bcf547-63c9-45ad-a456-dd166031495b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172202Z:82bcf547-63c9-45ad-a456-dd166031495b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fb2a401767f786cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9886c8c6832fa187159fae61ac642853", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:22:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e2f58c70-f43b-4037-af77-33da213069b8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "e2f58c70-f43b-4037-af77-33da213069b8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172234Z:e2f58c70-f43b-4037-af77-33da213069b8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-def1c1d5ec4bde29-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8ed6638d7db2350abff239414a6b262d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:23:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172306Z:4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-0d5db0616c85f177-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7d405a8034fe6b6deea44860459d33c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:23:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a161a55f-9653-4821-b1e9-d13105912b4a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "a161a55f-9653-4821-b1e9-d13105912b4a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172338Z:a161a55f-9653-4821-b1e9-d13105912b4a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-06a25192f4a1f2d3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a42f005ce1e949b8be51d83d4a4557aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:24:10 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "84534319-80fc-4326-9598-a27fc6d7f16a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "84534319-80fc-4326-9598-a27fc6d7f16a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172410Z:84534319-80fc-4326-9598-a27fc6d7f16a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-e01048dda9bc7840-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "52e18178ab245855f56a9f0e34aaef22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:24:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43f93b83-0868-4bea-95e0-37f8a46cd321", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "43f93b83-0868-4bea-95e0-37f8a46cd321", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172443Z:43f93b83-0868-4bea-95e0-37f8a46cd321" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-1c664eaa43e4a5af-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ae472be823b9e44a1f6bfac5c3021a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:14 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9751dff-e925-403d-80ec-362b9a502239", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "d9751dff-e925-403d-80ec-362b9a502239", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172515Z:d9751dff-e925-403d-80ec-362b9a502239" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f7d4927484c357cc68a563ad500224b2-437f029721534652-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c4e79e4de1bcb1a2aad7ae7e42aa1414", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d26f805e-ffdb-4276-a8d4-de5b3a18a066", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "d26f805e-ffdb-4276-a8d4-de5b3a18a066", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172547Z:d26f805e-ffdb-4276-a8d4-de5b3a18a066" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-669188f521420978-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d77eb6610c60f66e3d43b02deba8fcc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:47 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "580453d1-a784-4cc8-9545-0bd7cfb32ad2", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "915ccf62-4f56-4617-a80a-8ded062d7d3b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172548Z:580453d1-a784-4cc8-9545-0bd7cfb32ad2" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-acb02ff72889feff-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a64baae249b140472ff087783075c501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "977b5fdb-702d-4a5e-b723-d10385c1c1e8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "977b5fdb-702d-4a5e-b723-d10385c1c1e8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172548Z:977b5fdb-702d-4a5e-b723-d10385c1c1e8" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-158e163352587273-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4a35e9da7ee936514fa1082d6c0a2377", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ae432516-5857-4995-9f57-29eb92997e9d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "ae432516-5857-4995-9f57-29eb92997e9d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172549Z:ae432516-5857-4995-9f57-29eb92997e9d" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-1e815e5bf90d631c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "414ab9e6565d0014af7f66d2a3edad59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d65a155-e812-449f-9d0e-b083d97597a7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "1d65a155-e812-449f-9d0e-b083d97597a7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172550Z:1d65a155-e812-449f-9d0e-b083d97597a7" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6ddd1aefae146219-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ea899e6e118f640e59155610401ad425", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "606b27d6-ad48-4c78-975f-e1378710c4fd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "606b27d6-ad48-4c78-975f-e1378710c4fd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172551Z:606b27d6-ad48-4c78-975f-e1378710c4fd" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-0f58b093b211ae5f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "77910fcc842a84a3d5349b69177f9261", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2897a977-fb83-44b9-9792-c8dbf471f6f9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "2897a977-fb83-44b9-9792-c8dbf471f6f9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172553Z:2897a977-fb83-44b9-9792-c8dbf471f6f9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-433fede26d0fdbe3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cdbeaef33980d5e7abe6e848ff03bf94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:25:57 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e2700a3-b9a8-4ec3-9119-55af471d4d18", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "2e2700a3-b9a8-4ec3-9119-55af471d4d18", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172558Z:2e2700a3-b9a8-4ec3-9119-55af471d4d18" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-59aca308151b44f1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "930540ab365bea2ffa04145b76a44cd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:26:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34b02875-c817-4ef9-82da-c2fe7c09ceda", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "34b02875-c817-4ef9-82da-c2fe7c09ceda", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172606Z:34b02875-c817-4ef9-82da-c2fe7c09ceda" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6edc73778375d3f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "921cf482065b93a527bccb449c5b85d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:26:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4dc2a745-c42d-4d1c-b222-e8ff1311dff7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "4dc2a745-c42d-4d1c-b222-e8ff1311dff7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172622Z:4dc2a745-c42d-4d1c-b222-e8ff1311dff7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-460ddccb302500b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d7bd0675fe79bd067fd4d37b248c5f06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:26:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "28532e50-f512-4ce7-826d-570b881b3d39", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "28532e50-f512-4ce7-826d-570b881b3d39", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172654Z:28532e50-f512-4ce7-826d-570b881b3d39" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-dea20aa0e7fd4b5e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0ac50e992ce7a5389b726b9f6aea4e9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:27:26 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3d73d560-2115-465f-8b2f-f1a97e90ff5b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "3d73d560-2115-465f-8b2f-f1a97e90ff5b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172726Z:3d73d560-2115-465f-8b2f-f1a97e90ff5b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-227424b3c1ef3392-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6fe5437f75e68360ee5e138733296e9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:27:58 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "181f8748-10f6-4129-8f21-f14ac28f4a44", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "181f8748-10f6-4129-8f21-f14ac28f4a44", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172758Z:181f8748-10f6-4129-8f21-f14ac28f4a44" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-7e0382d792d6f937-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8dabc55c7a9648eacd183b0792665395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:28:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172830Z:aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-ec11437e070ebefa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e1fc3485efa7231fae411c8819b17171", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:29:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "170f1e7a-7891-4c0b-9dd1-69c0c538428a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "170f1e7a-7891-4c0b-9dd1-69c0c538428a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172902Z:170f1e7a-7891-4c0b-9dd1-69c0c538428a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6dbd7f1ceea599d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a442d103c03e0409599da2cd3958f087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:29:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "957011c8-3c43-4240-be53-8e3b30ecc9ff", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "957011c8-3c43-4240-be53-8e3b30ecc9ff", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172934Z:957011c8-3c43-4240-be53-8e3b30ecc9ff" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-9937bc096d4c396b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff017d0b8d2d6df3a588df545e622e1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:30:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2ace47bc-fba2-431c-aae3-c13e372a8cb9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "2ace47bc-fba2-431c-aae3-c13e372a8cb9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173006Z:2ace47bc-fba2-431c-aae3-c13e372a8cb9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-4bda094c8af5cf9a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c104caa7ae24c5562af7870a4d52e955", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:30:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34dbfac7-93a3-4313-bc2e-38b83a2f3b2c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "34dbfac7-93a3-4313-bc2e-38b83a2f3b2c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173039Z:34dbfac7-93a3-4313-bc2e-38b83a2f3b2c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-f3d86d749647b2ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9c7c955172af7543ddd5ffb5e0b4a6f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:31:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e2f6b898-af77-4e94-83e6-208332cf08f6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e2f6b898-af77-4e94-83e6-208332cf08f6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173111Z:e2f6b898-af77-4e94-83e6-208332cf08f6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-575e1c2822d3ff7b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f26856e2e545d62263cd43606e91f53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:31:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "816dd2e7-8d35-41a0-b22c-2d60e42c871b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "816dd2e7-8d35-41a0-b22c-2d60e42c871b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173143Z:816dd2e7-8d35-41a0-b22c-2d60e42c871b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-04d309d2bdcfe17a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c803899f92e5356c878ee44faea0e476", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:32:14 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a40bc77a-a7bb-433d-b43b-59913349ddb4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "a40bc77a-a7bb-433d-b43b-59913349ddb4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173215Z:a40bc77a-a7bb-433d-b43b-59913349ddb4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-d982c2650e8a0a94-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c79c90507a2b2201321f75739d0d6ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:32:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "25397b96-e4f0-4e99-ae8c-cf683846fec3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "25397b96-e4f0-4e99-ae8c-cf683846fec3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173247Z:25397b96-e4f0-4e99-ae8c-cf683846fec3" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-cca732bc5325dbec-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5616acb5ddb1db1119f1e7c54a13ae85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:33:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ebdf053c-e43e-4140-bdac-651278aecd8d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "ebdf053c-e43e-4140-bdac-651278aecd8d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173319Z:ebdf053c-e43e-4140-bdac-651278aecd8d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-e9c9a10c2d267d28-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "75e55e57574d242788e096c51df89779", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:33:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "41da63e8-5553-49fe-aee2-672a1949bc90", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "41da63e8-5553-49fe-aee2-672a1949bc90", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173351Z:41da63e8-5553-49fe-aee2-672a1949bc90" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-5bc9b1adeec25f97-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0299f01f8d8a72c47ec0ae3a923cd71e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:34:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173423Z:7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-bfe292b9d7764819-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3f1cef71fa275ea784f2ced1474bbd20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:34:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a688c850-6818-405d-a743-5ad207e57061", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a688c850-6818-405d-a743-5ad207e57061", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173455Z:a688c850-6818-405d-a743-5ad207e57061" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-133eba839ed1db3d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5aa66e5aab79c9fb9a73f68ca9ed924b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:35:27 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a7f9df9-1894-4a77-87c9-0bc493921f40", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "5a7f9df9-1894-4a77-87c9-0bc493921f40", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173528Z:5a7f9df9-1894-4a77-87c9-0bc493921f40" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-df5e32805abd4761-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2e54770857dc2552483b7e97bff32b32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:35:59 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173600Z:0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-586ff9a47177599a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "24e08d027d96c6a4f352a5b4031ab596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a3c93558-686b-44d8-8487-82f88b472e79", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "a3c93558-686b-44d8-8487-82f88b472e79", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173632Z:a3c93558-686b-44d8-8487-82f88b472e79" + }, + "ResponseBody": { + "status": "Succeeded" + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": null, + "RandomSeed": "1139936748", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestoreAsync.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestoreAsync.json new file mode 100644 index 000000000000..27880ef004e0 --- /dev/null +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestoreAsync.json @@ -0,0 +1,18837 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-2975?api-version=**", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b290c744b219fea91844de1f2d589522-7b233ed56cd8e457-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "930bc9c1b8c15b28d6812f95cf142a92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 17:36:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "49143418-432f-4866-a1a5-888fa45c907f", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "49143418-432f-4866-a1a5-888fa45c907f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173636Z:49143418-432f-4866-a1a5-888fa45c907f" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975", + "name": "dbaccount-2975", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "575", + "Content-Type": "application/json", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-6af7f54281d90961-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4d25c025841ab17e4b723ccbd37b8a7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": {}, + "location": "westcentralus", + "properties": { + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxStalenessPrefix": 300, + "maxIntervalInSeconds": 1000 + }, + "locations": [ + { + "locationName": "westcentralus", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "isVirtualNetworkFilterEnabled": true, + "enableAutomaticFailover": false, + "connectorOffer": "Small", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "backupPolicy": { + "type": "Continuous" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2478", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:42 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/operationResults/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "54f82cb1-29c1-4866-ae74-3c9cfb861768", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "e7062402-43b9-447c-96b1-f467eebf3581", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173642Z:54f82cb1-29c1-4866-ae74-3c9cfb861768" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488", + "name": "r-database-account-1488", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T17:36:40.9212868Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": true, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": { + "schemaType": "WellDefined" + }, + "instanceId": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "createMode": "Default", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T17:36:40.9212868Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T17:36:40.9212868Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:36:40.9212868Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:36:40.9212868Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-80ebaaaa841c47a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8cd8ec7c8a0445a68ce27546eb900305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2598d864-ca2b-4abd-adfc-c3439eae9131", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "2598d864-ca2b-4abd-adfc-c3439eae9131", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173642Z:2598d864-ca2b-4abd-adfc-c3439eae9131" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-2f82de5f4cb046ce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5cf615a5691b6e6b2663a0b8ccfcdcc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:43 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd44f677-5021-44ad-b273-90f4ee57531b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "fd44f677-5021-44ad-b273-90f4ee57531b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173643Z:fd44f677-5021-44ad-b273-90f4ee57531b" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-578956eeb31f848c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e64e7a90fda24e7b10c89dd54153d61c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e950bbd3-9100-4dbf-ab32-6e5a1cc1a00e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "e950bbd3-9100-4dbf-ab32-6e5a1cc1a00e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173644Z:e950bbd3-9100-4dbf-ab32-6e5a1cc1a00e" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-30bb9336ebc8323f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c0dcb25e859113a6806a66a0eaee788f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d782fd9b-c0fd-44df-9a55-267418200d6f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "d782fd9b-c0fd-44df-9a55-267418200d6f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173645Z:d782fd9b-c0fd-44df-9a55-267418200d6f" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-292f690d030749a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "70b5b2051c41a76399a84b53cc962dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a5dcb01-217d-4747-b1ae-04ac8e31e994", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "5a5dcb01-217d-4747-b1ae-04ac8e31e994", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173647Z:5a5dcb01-217d-4747-b1ae-04ac8e31e994" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-5cc204fb2ee3ec03-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a59838d1c200b32d43b653897da6422", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6b57e0bb-adbc-42bc-b264-6e8afc03e899", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "6b57e0bb-adbc-42bc-b264-6e8afc03e899", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173652Z:6b57e0bb-adbc-42bc-b264-6e8afc03e899" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-8abe135712e5cf67-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8fcf0d4f659d42db4e3526e9395346ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:36:59 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "93dbfa81-74ce-4142-88c9-2e51d1ef9f09", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "93dbfa81-74ce-4142-88c9-2e51d1ef9f09", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173700Z:93dbfa81-74ce-4142-88c9-2e51d1ef9f09" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-c261c36463662a0d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6613923c5e94e96f7faa9c06b62a0fbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:37:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9ad48ae1-836d-4eba-ae25-bb32b2c20d2a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "9ad48ae1-836d-4eba-ae25-bb32b2c20d2a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173716Z:9ad48ae1-836d-4eba-ae25-bb32b2c20d2a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-22f7fec1fbc4c894-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bf0329439ec72835a817cbeaf548d181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:37:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91d1297d-0489-449c-a753-89fe3320080a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "91d1297d-0489-449c-a753-89fe3320080a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173748Z:91d1297d-0489-449c-a753-89fe3320080a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-88d64c4ba15df1d8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "04fb7bf4fdc7f18e9de50ff2c8d58b23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:38:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43532653-d056-42f3-9970-54eabb7d7e5a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "43532653-d056-42f3-9970-54eabb7d7e5a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173820Z:43532653-d056-42f3-9970-54eabb7d7e5a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-2bd6a0b80076fe2c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "10a56626874f9e235cebbe7c9384f437", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:38:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "39e65d56-72fa-40ac-ad24-f6d9b958d52a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "39e65d56-72fa-40ac-ad24-f6d9b958d52a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173852Z:39e65d56-72fa-40ac-ad24-f6d9b958d52a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-13ab17d0fd34f8c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3b111bd90a2e45f89a1221e18f435fd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:39:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "66e53ca5-cfc6-4023-b73a-740efa47d076", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "66e53ca5-cfc6-4023-b73a-740efa47d076", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173924Z:66e53ca5-cfc6-4023-b73a-740efa47d076" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e7062402-43b9-447c-96b1-f467eebf3581?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-6f3c1dd1bce600a0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8ec4a78cc1a26c31575da8db3f125e18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:39:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dbfda086-507a-41b5-8575-9b310fc9a6b6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "dbfda086-507a-41b5-8575-9b310fc9a6b6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173956Z:dbfda086-507a-41b5-8575-9b310fc9a6b6" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7a85e97e19c63133c6247b1c17125009-c9f1e52a566d9745-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ad19d8f14fc31bf46e60753d66410f19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "2927", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:39:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a0175c0-fb19-4025-826d-ec64eec3d910", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "5a0175c0-fb19-4025-826d-ec64eec3d910", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173956Z:5a0175c0-fb19-4025-826d-ec64eec3d910" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488", + "name": "r-database-account-1488", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T17:39:32.4452068Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://r-database-account-1488.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-1488.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": true, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": { + "schemaType": "WellDefined" + }, + "instanceId": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "createMode": "Default", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-1488-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-1488-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "documentEndpoint": "https://r-database-account-1488-westcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "r-database-account-1488-westcentralus", + "locationName": "West Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [ + { + "ipAddressOrRange": "23.43.231.120" + } + ], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T17:39:32.4452068Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T17:39:32.4452068Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:39:32.4452068Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T17:39:32.4452068Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7c113304d429ce536e6d666d11f4a42f-780702242adac2b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ebefeb8c65c01794e9a5e4d1621c0688", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 17:39:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "95215772-4710-486a-b1fa-9a2dbd321f5f", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "95215772-4710-486a-b1fa-9a2dbd321f5f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173956Z:95215772-4710-486a-b1fa-9a2dbd321f5f" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "authorizationSource": "RoleBased", + "managedByTenants": [ + { + "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" + } + ], + "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "CosmosDB-Backup-Restore", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b6f008b4b1293d0fb2a81f424bf30516", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "477693", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 20 Apr 2023 17:40:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "323fecac-297f-4b68-a3db-213325bd4a60", + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "323fecac-297f-4b68-a3db-213325bd4a60", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174001Z:323fecac-297f-4b68-a3db-213325bd4a60" + }, + "ResponseBody": { + "value": [ + { + "name": "22c487b3-d5c7-45de-be94-38fecee66cd3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/22c487b3-d5c7-45de-be94-38fecee66cd3", + "properties": { + "accountName": "barprod-systemid-sw-1109027095", + "apiType": "Sql", + "creationTime": "2022-12-13T19:12:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "debbeba6-2699-44df-a689-5e9a867f51e5", + "creationTime": "2022-12-13T19:12:36Z" + } + ] + } + }, + { + "name": "2b49ac91-ad60-4807-9b6b-4041645b4f5e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b49ac91-ad60-4807-9b6b-4041645b4f5e", + "properties": { + "accountName": "barprod-systemid-sw-1109027095-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T19:33:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5bd4a33-9470-4496-a2ba-6d31b52ff4b1", + "creationTime": "2022-12-13T19:33:35Z" + } + ] + } + }, + { + "name": "13e27035-3df0-42e7-8048-6d0cbd5c7f80", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/13e27035-3df0-42e7-8048-6d0cbd5c7f80", + "properties": { + "accountName": "barprod-systemid-sw-1305567950", + "apiType": "Sql", + "creationTime": "2022-12-13T21:09:30Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "fc983ed2-abe6-4914-a686-46bcdc85a54e", + "creationTime": "2022-12-13T21:09:31Z" + } + ] + } + }, + { + "name": "a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", + "properties": { + "accountName": "barprod-systemid-sw-1305567950-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T21:30:58Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2438a28c-af6b-4e7f-9984-6a644cf0e897", + "creationTime": "2022-12-13T21:30:58Z" + } + ] + } + }, + { + "name": "84e4a829-6f5a-4ca5-bdc5-86b650e38aea", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/84e4a829-6f5a-4ca5-bdc5-86b650e38aea", + "properties": { + "accountName": "vinh-restore-fail", + "apiType": "Sql", + "creationTime": "2022-12-13T22:07:03Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f4eed423-2ade-4121-94a1-22c3aa3f7a17", + "creationTime": "2022-12-13T22:07:03Z" + } + ] + } + }, + { + "name": "d494b442-7138-4a38-8f78-b301967b497b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d494b442-7138-4a38-8f78-b301967b497b", + "properties": { + "accountName": "vinh-restore-fail2", + "apiType": "Sql", + "creationTime": "2022-12-13T22:10:55Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c49dc5ba-6bdb-4470-b8b3-afa33fe3112a", + "creationTime": "2022-12-13T22:10:55Z" + } + ] + } + }, + { + "name": "9e46844f-6285-4408-b60f-9de3c6aab0cf", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e46844f-6285-4408-b60f-9de3c6aab0cf", + "properties": { + "accountName": "vinh-restore-not-fail3", + "apiType": "Sql", + "creationTime": "2022-12-13T23:32:55Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "9131c392-b756-489b-aafd-0f9227b15fc6", + "creationTime": "2022-12-13T23:32:55Z" + } + ] + } + }, + { + "name": "49c3f2e6-d728-41f9-8dff-257140ec7aa1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/49c3f2e6-d728-41f9-8dff-257140ec7aa1", + "properties": { + "accountName": "barprod-systemid-sw-1525116479", + "apiType": "Sql", + "creationTime": "2022-12-13T23:28:39Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6ab357f4-901f-4b4d-b01f-25fd52c525d7", + "creationTime": "2022-12-13T23:28:40Z" + } + ] + } + }, + { + "name": "24dd6ee0-d69d-4f3b-b14c-319245f75a1a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/24dd6ee0-d69d-4f3b-b14c-319245f75a1a", + "properties": { + "accountName": "barprod-systemid-sw-1526492563", + "apiType": "Sql", + "creationTime": "2022-12-13T23:30:14Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d91ab187-9143-4584-9a21-e7ffab1a8b51", + "creationTime": "2022-12-13T23:30:15Z" + } + ] + } + }, + { + "name": "f6c79664-838d-45f6-82dc-58dd1ea6aa69", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f6c79664-838d-45f6-82dc-58dd1ea6aa69", + "properties": { + "accountName": "barprod-systemid-sw-1526492563-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T23:51:46Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "550716f8-9a42-4512-bd9f-d8a864df27c2", + "creationTime": "2022-12-13T23:51:46Z" + } + ] + } + }, + { + "name": "db48bc7b-8dae-4fcd-a131-b3220fac8b0a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db48bc7b-8dae-4fcd-a131-b3220fac8b0a", + "properties": { + "accountName": "barprod-systemid-sw-1525116479-rl1", + "apiType": "Sql", + "creationTime": "2022-12-13T23:54:20Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "a416d1a0-a506-4baa-b833-460653ff60c4", + "creationTime": "2022-12-13T23:54:20Z" + } + ] + } + }, + { + "name": "3c95a287-aaeb-464e-a79d-cad370f919b1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c95a287-aaeb-464e-a79d-cad370f919b1", + "properties": { + "accountName": "vinh-restore-fail-2identities", + "apiType": "Sql", + "creationTime": "2022-12-16T01:32:31Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "5dc84958-10f0-4c44-b51d-b860e41c4801", + "creationTime": "2022-12-16T01:32:31Z" + } + ] + } + }, + { + "name": "2b128b5f-7348-49a7-99b2-4cf75919d54e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b128b5f-7348-49a7-99b2-4cf75919d54e", + "properties": { + "accountName": "cli-xrr-k6di52knuaghjx6ns", + "apiType": "Sql", + "creationTime": "2023-04-06T15:49:22Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "69017173-ea84-4fab-a59e-dcda978e7641", + "creationTime": "2023-04-06T15:49:23Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "c24b16be-2f6b-441f-86cb-bab05c86c299", + "creationTime": "2023-04-06T15:51:35Z" + } + ] + } + }, + { + "name": "60c98996-836d-441d-84bf-dd71663bc121", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/60c98996-836d-441d-84bf-dd71663bc121", + "properties": { + "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", + "apiType": "Sql", + "creationTime": "2023-04-06T17:07:39Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b0a87252-bf99-40cb-b5bc-9afcf6580e23", + "creationTime": "2023-04-06T17:07:39Z" + } + ] + } + }, + { + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", + "properties": { + "accountName": "r-database-account-6809", + "apiType": "Sql", + "creationTime": "2023-04-17T19:29:22Z", + "oldestRestorableTime": "2023-04-17T19:29:22Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z" + } + ] + } + }, + { + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "properties": { + "accountName": "r-database-account-7066", + "apiType": "Sql", + "creationTime": "2023-04-19T23:41:57Z", + "oldestRestorableTime": "2023-04-19T23:41:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z" + } + ] + } + }, + { + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "properties": { + "accountName": "r-database-account-1488", + "apiType": "Sql", + "creationTime": "2023-04-20T17:39:33Z", + "oldestRestorableTime": "2023-04-20T17:39:33Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z" + } + ] + } + }, + { + "name": "2217666b-a543-4788-adf9-f8059e864343", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2217666b-a543-4788-adf9-f8059e864343", + "properties": { + "accountName": "cli-xrr-jvikyutenetrnlpvv-restored", + "apiType": "Sql", + "creationTime": "2023-04-05T23:38:55Z", + "deletionTime": "2023-04-05T23:40:47Z", + "oldestRestorableTime": "2023-03-29T23:40:47Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "299aef44-c8ef-4cc0-9e04-234195bc3daa", + "creationTime": "2023-04-05T23:38:55Z", + "deletionTime": "2023-04-05T23:40:47Z" + } + ] + } + }, + { + "name": "8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", + "properties": { + "accountName": "cli-xrr-jvikyutenetrnlpvv", + "apiType": "Sql", + "creationTime": "2023-04-05T22:22:58Z", + "deletionTime": "2023-04-05T23:40:48Z", + "oldestRestorableTime": "2023-03-29T23:40:48Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5bb2cfc-69d8-4117-aae6-985ddc57ecd4", + "creationTime": "2023-04-05T22:23:00Z", + "deletionTime": "2023-04-05T23:40:48Z" + } + ] + } + }, + { + "name": "18ad6f7b-4a4c-414a-af6e-c0c0794275a9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/18ad6f7b-4a4c-414a-af6e-c0c0794275a9", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T15:41:19Z", + "deletionTime": "2023-04-06T16:51:10Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b9fc8ff1-bb30-4f1d-962a-b9e7108a9b58", + "creationTime": "2023-04-06T15:45:43Z", + "deletionTime": "2023-04-06T16:51:10Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c666de0b-5116-4c8f-9273-e18afaa847ef", + "creationTime": "2023-04-06T15:41:19Z", + "deletionTime": "2023-04-06T16:51:10Z" + } + ] + } + }, + { + "name": "621ef049-57db-46e5-b21b-abb7d9fbc7d1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/621ef049-57db-46e5-b21b-abb7d9fbc7d1", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T17:50:09Z", + "deletionTime": "2023-04-06T18:56:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d9fe4287-0192-4d20-9c13-7d8240ff9b4e", + "creationTime": "2023-04-06T17:52:38Z", + "deletionTime": "2023-04-06T18:56:25Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d9b2f14a-b42e-47d2-94c5-9e4a669c2bd1", + "creationTime": "2023-04-06T17:50:10Z", + "deletionTime": "2023-04-06T18:56:25Z" + } + ] + } + }, + { + "name": "8107171d-0bae-4a08-9ac9-42f31d494443", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8107171d-0bae-4a08-9ac9-42f31d494443", + "properties": { + "accountName": "cli-xrr-g7yczvt2zofiguzec-restored", + "apiType": "Sql", + "creationTime": "2023-04-06T19:04:42Z", + "deletionTime": "2023-04-06T19:05:19Z", + "oldestRestorableTime": "2023-03-30T19:05:19Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b02de377-f83f-4e90-9533-f08d5e81a700", + "creationTime": "2023-04-06T19:04:42Z", + "deletionTime": "2023-04-06T19:05:19Z" + } + ] + } + }, + { + "name": "780cc0ea-0ba6-47d1-84da-ca1d24f3d411", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/780cc0ea-0ba6-47d1-84da-ca1d24f3d411", + "properties": { + "accountName": "cli-xrr-g7yczvt2zofiguzec", + "apiType": "Sql", + "creationTime": "2023-04-06T17:44:45Z", + "deletionTime": "2023-04-06T19:05:19Z", + "oldestRestorableTime": "2023-03-30T19:05:19Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "3718d4c7-c627-444e-8f6b-be2e444c55ed", + "creationTime": "2023-04-06T17:47:20Z", + "deletionTime": "2023-04-06T19:05:19Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "27e66009-ee24-4168-8c82-c65648eecb4d", + "creationTime": "2023-04-06T17:44:46Z", + "deletionTime": "2023-04-06T19:05:19Z" + } + ] + } + }, + { + "name": "3c050d72-850b-4a5c-b352-10100c9dbc9f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c050d72-850b-4a5c-b352-10100c9dbc9f", + "properties": { + "accountName": "ps-xrr-cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-04-06T19:55:04Z", + "deletionTime": "2023-04-06T21:02:28Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "677324d5-f1fe-4862-b496-e76ae3028aac", + "creationTime": "2023-04-06T19:58:16Z", + "deletionTime": "2023-04-06T21:02:28Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "95bc63cb-8474-4d19-b075-01ac042cf578", + "creationTime": "2023-04-06T19:55:06Z", + "deletionTime": "2023-04-06T21:02:28Z" + } + ] + } + }, + { + "name": "eed95519-8c04-4871-a9a2-2a2894cb94df", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/eed95519-8c04-4871-a9a2-2a2894cb94df", + "properties": { + "accountName": "restored-ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-06T22:30:52Z", + "deletionTime": "2023-04-06T22:32:02Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6d790f06-7de4-4cb4-9e08-83096f4b8578", + "creationTime": "2023-04-06T22:30:52Z", + "deletionTime": "2023-04-06T22:32:02Z" + } + ] + } + }, + { + "name": "fb22603e-7627-45ce-a52f-92cbb70ebd86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fb22603e-7627-45ce-a52f-92cbb70ebd86", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:17Z", + "deletionTime": "2023-04-06T22:32:04Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "41b5569f-2256-4f98-9b6e-26c070557a53", + "creationTime": "2023-04-06T21:14:20Z", + "deletionTime": "2023-04-06T22:32:04Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d835a5bf-29c1-4c4f-bc76-fc0dca1ac730", + "creationTime": "2023-04-06T21:11:18Z", + "deletionTime": "2023-04-06T22:32:04Z" + } + ] + } + }, + { + "name": "92d85476-12b6-43c3-94dc-5e7b80acfc6f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/92d85476-12b6-43c3-94dc-5e7b80acfc6f", + "properties": { + "accountName": "amisitestpitracc1-restored1", + "apiType": "Sql", + "creationTime": "2023-04-07T05:15:13Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-31T16:42:28Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "548c7363-9c92-493b-aee5-fdcadf24d35a", + "creationTime": "2023-04-07T05:15:13Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "932dc036-7768-49c5-b84a-3f3d34c1e612", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/932dc036-7768-49c5-b84a-3f3d34c1e612", + "properties": { + "accountName": "new-acc", + "apiType": "Sql", + "creationTime": "2023-04-07T04:11:01Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-31T16:42:28Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6bd731dd-1700-464f-8899-bd368cc85aac", + "creationTime": "2023-04-07T04:11:01Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "9fbe0e1d-baac-4500-ae10-a216f9729ca6", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9fbe0e1d-baac-4500-ae10-a216f9729ca6", + "properties": { + "accountName": "amisitestpitracc1-restored1", + "apiType": "Sql", + "creationTime": "2023-04-07T18:52:04Z", + "deletionTime": "2023-04-07T19:03:48Z", + "oldestRestorableTime": "2023-03-31T19:03:48Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "992ce2d9-3bb2-4521-88e2-6da041fab90e", + "creationTime": "2023-04-07T18:52:04Z", + "deletionTime": "2023-04-07T19:03:48Z" + } + ] + } + }, + { + "name": "cc3cd261-363c-4bab-9ba7-cc5fb46602c0", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/cc3cd261-363c-4bab-9ba7-cc5fb46602c0", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T20:14:52Z", + "deletionTime": "2023-04-07T21:19:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d5ff53da-a80d-4a29-8a41-bb2265458254", + "creationTime": "2023-04-07T20:14:53Z", + "deletionTime": "2023-04-07T21:19:01Z" + } + ] + } + }, + { + "name": "09413a43-255a-4ddf-88c0-76edcec1c2de", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/09413a43-255a-4ddf-88c0-76edcec1c2de", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T21:36:53Z", + "deletionTime": "2023-04-07T22:53:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "a387f10f-908a-4c90-850a-9bbdd283b73c", + "creationTime": "2023-04-07T21:36:54Z", + "deletionTime": "2023-04-07T22:53:51Z" + } + ] + } + }, + { + "name": "758db8a5-60e2-449f-a604-e625601bb5f8", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/758db8a5-60e2-449f-a604-e625601bb5f8", + "properties": { + "accountName": "restored-ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-07T22:53:05Z", + "deletionTime": "2023-04-07T22:53:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "b42f5986-3a73-4da1-9c76-c40ad176c27d", + "creationTime": "2023-04-07T22:53:05Z", + "deletionTime": "2023-04-07T22:53:51Z" + } + ] + } + }, + { + "name": "a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105-restored", + "apiType": "Sql", + "creationTime": "2023-04-10T15:47:08Z", + "deletionTime": "2023-04-10T15:47:59Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "8e488c7d-0087-4e18-bc96-9d237043a7fc", + "creationTime": "2023-04-10T15:47:08Z", + "deletionTime": "2023-04-10T15:47:59Z" + } + ] + } + }, + { + "name": "e707fcc6-0240-4633-966c-9ef1b4eec147", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e707fcc6-0240-4633-966c-9ef1b4eec147", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-10T14:28:30Z", + "deletionTime": "2023-04-10T15:47:59Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "88184430-bbae-4221-96e5-1354de1e5de2", + "creationTime": "2023-04-10T14:30:49Z", + "deletionTime": "2023-04-10T15:47:59Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "671fa58b-535f-4c1a-b0a3-f673e7bddbfb", + "creationTime": "2023-04-10T14:28:31Z", + "deletionTime": "2023-04-10T15:47:59Z" + } + ] + } + }, + { + "name": "038f848f-248e-4bae-9d05-8e153eae6852", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/038f848f-248e-4bae-9d05-8e153eae6852", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-10T17:43:02Z", + "deletionTime": "2023-04-10T18:59:57Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "5108b700-4b47-4609-bd62-4fa7fa0539c9", + "creationTime": "2023-04-10T17:43:03Z", + "deletionTime": "2023-04-10T18:59:57Z" + } + ] + } + }, + { + "name": "3347c551-f760-4ebe-8aeb-5b35070ac7f7", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3347c551-f760-4ebe-8aeb-5b35070ac7f7", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106-restored", + "apiType": "Sql", + "creationTime": "2023-04-10T18:59:04Z", + "deletionTime": "2023-04-10T18:59:58Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cb2da128-5457-434e-a389-1b1b80b8f083", + "creationTime": "2023-04-10T18:59:04Z", + "deletionTime": "2023-04-10T18:59:58Z" + } + ] + } + }, + { + "name": "96da75d3-7481-447b-9604-492f6a4854fd", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/96da75d3-7481-447b-9604-492f6a4854fd", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T21:49:40Z", + "deletionTime": "2023-04-14T21:51:26Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f4c62b36-0050-40e1-998f-7f66a0a2c43d", + "creationTime": "2023-04-14T21:49:40Z", + "deletionTime": "2023-04-14T21:51:26Z" + } + ] + } + }, + { + "name": "913dafbd-608a-4fc3-93ce-8f5ca6124be7", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/913dafbd-608a-4fc3-93ce-8f5ca6124be7", + "properties": { + "accountName": "ps-xrr-cosmosdb-12105", + "apiType": "Sql", + "creationTime": "2023-04-14T20:29:55Z", + "deletionTime": "2023-04-14T21:51:27Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "39d3dcc4-0ecf-49fe-a68b-d87891f01380", + "creationTime": "2023-04-14T20:32:48Z", + "deletionTime": "2023-04-14T21:51:27Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "bcac2557-d18a-406f-977d-c8a6374b411a", + "creationTime": "2023-04-14T20:29:56Z", + "deletionTime": "2023-04-14T21:51:27Z" + } + ] + } + }, + { + "name": "202a4dbe-7599-4b7e-b69d-7168f2837f3a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/202a4dbe-7599-4b7e-b69d-7168f2837f3a", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106", + "apiType": "Sql", + "creationTime": "2023-04-14T22:00:54Z", + "deletionTime": "2023-04-14T23:18:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "77b1870a-f938-41fe-a3e4-a83bd87a80be", + "creationTime": "2023-04-14T22:00:55Z", + "deletionTime": "2023-04-14T23:18:25Z" + } + ] + } + }, + { + "name": "c4c969be-9110-4a37-8473-00163ab95ee3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c4c969be-9110-4a37-8473-00163ab95ee3", + "properties": { + "accountName": "ps-xrr-cosmosdb-12106-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T23:17:22Z", + "deletionTime": "2023-04-14T23:18:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "56d11020-be62-4ef2-b535-d75a4a3ad01d", + "creationTime": "2023-04-14T23:17:22Z", + "deletionTime": "2023-04-14T23:18:25Z" + } + ] + } + }, + { + "name": "7c1a5422-fef5-4863-a2a6-ce07680d98bb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7c1a5422-fef5-4863-a2a6-ce07680d98bb", + "properties": { + "accountName": "amisitestpitracc1", + "apiType": "Sql", + "creationTime": "2023-03-31T07:03:37Z", + "deletionTime": "2023-04-15T05:55:20Z", + "oldestRestorableTime": "2023-04-08T05:55:20Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "961c371c-2aea-446a-aaf3-abbbcfd2d73e", + "creationTime": "2023-04-02T17:08:56Z", + "deletionTime": "2023-04-15T05:55:20Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1d43fc2f-c366-46ab-8e14-38841a7fdfc1", + "creationTime": "2023-03-31T07:03:38Z", + "deletionTime": "2023-04-15T05:55:20Z" + } + ] + } + }, + { + "name": "3b30043c-455c-486f-98fb-f4d705658916", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3b30043c-455c-486f-98fb-f4d705658916", + "properties": { + "accountName": "r-database-account-177", + "apiType": "Sql", + "creationTime": "2023-04-17T19:11:24Z", + "deletionTime": "2023-04-17T19:14:59Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3d497d7c-c0c1-4c87-9aac-2c64a401be46", + "creationTime": "2023-04-17T19:11:25Z", + "deletionTime": "2023-04-17T19:14:59Z" + } + ] + } + }, + { + "name": "3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", + "properties": { + "accountName": "r-database-account-5987", + "apiType": "Sql", + "creationTime": "2023-04-17T19:41:46Z", + "deletionTime": "2023-04-17T19:45:17Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "533f84f3-c315-473c-8427-a21e5666eb6a", + "creationTime": "2023-04-17T19:41:47Z", + "deletionTime": "2023-04-17T19:45:17Z" + } + ] + } + }, + { + "name": "d196e206-a656-4c8d-a68e-9812ce4f79bc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d196e206-a656-4c8d-a68e-9812ce4f79bc", + "properties": { + "accountName": "r-database-account-192", + "apiType": "Sql", + "creationTime": "2023-04-17T21:39:56Z", + "deletionTime": "2023-04-17T21:43:27Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "56ca1104-e63a-4a62-a989-d323f5054121", + "creationTime": "2023-04-17T21:39:56Z", + "deletionTime": "2023-04-17T21:43:27Z" + } + ] + } + }, + { + "name": "c0a3bbc1-fc95-40f3-80e9-806d25576bbc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c0a3bbc1-fc95-40f3-80e9-806d25576bbc", + "properties": { + "accountName": "r-database-account-5405", + "apiType": "Sql", + "creationTime": "2023-04-17T22:20:01Z", + "deletionTime": "2023-04-17T22:21:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "36e17308-f9d4-4164-bb08-3494bd3a4300", + "creationTime": "2023-04-17T22:20:02Z", + "deletionTime": "2023-04-17T22:21:35Z" + } + ] + } + }, + { + "name": "45618f6c-684d-44ca-a63f-35c48cb1f22c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/45618f6c-684d-44ca-a63f-35c48cb1f22c", + "properties": { + "accountName": "r-database-account-4655", + "apiType": "Sql", + "creationTime": "2023-04-17T22:44:28Z", + "deletionTime": "2023-04-17T22:51:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b38ac40d-982c-46b7-8543-8374985f0e7f", + "creationTime": "2023-04-17T22:44:28Z", + "deletionTime": "2023-04-17T22:51:35Z" + } + ] + } + }, + { + "name": "b7a602eb-c62c-4686-94de-3203389c0ca8", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b7a602eb-c62c-4686-94de-3203389c0ca8", + "properties": { + "accountName": "r-database-account-1012", + "apiType": "Sql", + "creationTime": "2023-04-17T23:20:58Z", + "deletionTime": "2023-04-17T23:22:34Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "cba81aa1-1ff7-4e1f-a41f-46929e08d5df", + "creationTime": "2023-04-17T23:20:59Z", + "deletionTime": "2023-04-17T23:22:34Z" + } + ] + } + }, + { + "name": "6e977886-5eb0-4960-8a20-66df95947300", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6e977886-5eb0-4960-8a20-66df95947300", + "properties": { + "accountName": "r-database-account-364", + "apiType": "Sql", + "creationTime": "2023-04-17T23:38:00Z", + "deletionTime": "2023-04-17T23:54:37Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "63e0bfd9-f384-4e7b-a046-5e9292075995", + "creationTime": "2023-04-17T23:38:01Z", + "deletionTime": "2023-04-17T23:54:37Z" + } + ] + } + }, + { + "name": "b08b9da7-4548-4a01-aed7-5b69236ab9eb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b08b9da7-4548-4a01-aed7-5b69236ab9eb", + "properties": { + "accountName": "r-database-account-5281", + "apiType": "Sql", + "creationTime": "2023-04-17T23:57:24Z", + "deletionTime": "2023-04-17T23:58:57Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4ac58158-102d-4284-b780-5d003a8615ba", + "creationTime": "2023-04-17T23:57:25Z", + "deletionTime": "2023-04-17T23:58:57Z" + } + ] + } + }, + { + "name": "9390e99e-9079-48ac-b5cd-5760496b20ae", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9390e99e-9079-48ac-b5cd-5760496b20ae", + "properties": { + "accountName": "r-database-account-525", + "apiType": "Sql", + "creationTime": "2023-04-18T00:12:13Z", + "deletionTime": "2023-04-18T00:15:52Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b77da411-6c07-48d0-9c5e-80111da2c689", + "creationTime": "2023-04-18T00:12:14Z", + "deletionTime": "2023-04-18T00:15:52Z" + } + ] + } + }, + { + "name": "396130a8-4ded-4e10-92ab-5a252e2609ca", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/396130a8-4ded-4e10-92ab-5a252e2609ca", + "properties": { + "accountName": "r-database-account-4899", + "apiType": "Sql", + "creationTime": "2023-04-18T00:34:02Z", + "deletionTime": "2023-04-18T00:37:41Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "fda5034d-bd49-4a8e-98eb-3962584fe36c", + "creationTime": "2023-04-18T00:34:03Z", + "deletionTime": "2023-04-18T00:37:41Z" + } + ] + } + }, + { + "name": "0b561650-220e-49b2-89e7-e02c797c5104", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b561650-220e-49b2-89e7-e02c797c5104", + "properties": { + "accountName": "r-database-account-2485", + "apiType": "Sql", + "creationTime": "2023-04-18T01:04:49Z", + "deletionTime": "2023-04-18T01:08:23Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c80c0753-1c3e-4d09-84de-aa3af341ebec", + "creationTime": "2023-04-18T01:04:49Z", + "deletionTime": "2023-04-18T01:08:23Z" + } + ] + } + }, + { + "name": "9884fa67-17cc-4ab1-9611-34567fba800c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9884fa67-17cc-4ab1-9611-34567fba800c", + "properties": { + "accountName": "r-database-account-6167", + "apiType": "Sql", + "creationTime": "2023-04-18T01:21:53Z", + "deletionTime": "2023-04-18T01:33:08Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c9d166ff-65cb-4027-8f4d-cd2b823e1351", + "creationTime": "2023-04-18T01:21:54Z", + "deletionTime": "2023-04-18T01:33:08Z" + } + ] + } + }, + { + "name": "b362127b-54f7-4fd5-a5d2-0d23e3f0036d", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b362127b-54f7-4fd5-a5d2-0d23e3f0036d", + "properties": { + "accountName": "r-database-account-7767", + "apiType": "Sql", + "creationTime": "2023-04-18T02:09:18Z", + "deletionTime": "2023-04-18T03:26:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "451df3a0-f1dd-49e9-a51f-54b36e59413c", + "creationTime": "2023-04-18T02:09:19Z", + "deletionTime": "2023-04-18T03:26:25Z" + } + ] + } + }, + { + "name": "3f551a34-02ea-40f3-9d4a-05fb5cffc82b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3f551a34-02ea-40f3-9d4a-05fb5cffc82b", + "properties": { + "accountName": "restoredaccount-2452", + "apiType": "Sql", + "creationTime": "2023-04-18T03:25:35Z", + "deletionTime": "2023-04-18T03:36:07Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "491aee71-a14e-49f6-9199-48ab60993d85", + "creationTime": "2023-04-18T03:25:35Z", + "deletionTime": "2023-04-18T03:36:07Z" + } + ] + } + }, + { + "name": "baa31ca8-6687-4ad2-81c8-698ae261d580", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/baa31ca8-6687-4ad2-81c8-698ae261d580", + "properties": { + "accountName": "r-database-account-6395", + "apiType": "Sql", + "creationTime": "2023-04-18T13:32:30Z", + "deletionTime": "2023-04-18T13:33:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "91294dbc-b175-4134-8083-e6bca7c34ebb", + "creationTime": "2023-04-18T13:32:31Z", + "deletionTime": "2023-04-18T13:33:25Z" + } + ] + } + }, + { + "name": "51a901f8-bd15-4e0f-bf4e-94fd88fecf37", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/51a901f8-bd15-4e0f-bf4e-94fd88fecf37", + "properties": { + "accountName": "r-database-account-8228", + "apiType": "Sql", + "creationTime": "2023-04-17T22:55:26Z", + "deletionTime": "2023-04-18T14:27:44Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1cbf7297-7176-4542-9fa4-49d7e5e91bfa", + "creationTime": "2023-04-17T22:55:27Z", + "deletionTime": "2023-04-18T14:27:44Z" + } + ] + } + }, + { + "name": "57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", + "properties": { + "accountName": "r-database-account-9915", + "apiType": "Sql", + "creationTime": "2023-04-18T16:11:57Z", + "deletionTime": "2023-04-18T16:12:45Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b8ffc20c-97b8-465d-bdd3-60552f5a057c", + "creationTime": "2023-04-18T16:11:58Z", + "deletionTime": "2023-04-18T16:12:45Z" + } + ] + } + }, + { + "name": "7b3b3638-2bbd-47da-8416-8aca4ecc6741", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7b3b3638-2bbd-47da-8416-8aca4ecc6741", + "properties": { + "accountName": "r-database-account-7194", + "apiType": "Sql", + "creationTime": "2023-04-18T16:27:03Z", + "deletionTime": "2023-04-18T17:46:27Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f50c51e3-0925-4b0d-b12a-49116bd4c79f", + "creationTime": "2023-04-18T16:27:05Z", + "deletionTime": "2023-04-18T17:46:27Z" + } + ] + } + }, + { + "name": "81614a8b-b1e1-44a3-a223-2f2bdb60a73a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81614a8b-b1e1-44a3-a223-2f2bdb60a73a", + "properties": { + "accountName": "restoredaccount-9479", + "apiType": "Sql", + "creationTime": "2023-04-18T17:45:32Z", + "deletionTime": "2023-04-18T17:57:15Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "3edd60a8-0eb0-4d85-b25b-90c44c85b27f", + "creationTime": "2023-04-18T17:45:32Z", + "deletionTime": "2023-04-18T17:57:15Z" + } + ] + } + }, + { + "name": "a618d01f-1ae8-44b2-90d9-0e139e7c41ff", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a618d01f-1ae8-44b2-90d9-0e139e7c41ff", + "properties": { + "accountName": "r-database-account-3726", + "apiType": "Sql", + "creationTime": "2023-04-18T18:09:59Z", + "deletionTime": "2023-04-18T18:10:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "0371b9da-8df6-4189-9e14-250f3be44384", + "creationTime": "2023-04-18T18:10:00Z", + "deletionTime": "2023-04-18T18:10:51Z" + } + ] + } + }, + { + "name": "fedcb6fb-2428-4bd1-8afa-faebdef8a10f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fedcb6fb-2428-4bd1-8afa-faebdef8a10f", + "properties": { + "accountName": "r-database-account-1774", + "apiType": "Sql", + "creationTime": "2023-04-18T19:06:06Z", + "deletionTime": "2023-04-18T20:23:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ac9a99bf-4f6b-479e-80bf-7b16a84ac481", + "creationTime": "2023-04-18T19:06:07Z", + "deletionTime": "2023-04-18T20:23:01Z" + } + ] + } + }, + { + "name": "edc97856-e68e-4881-8f7c-7939b9bd2678", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/edc97856-e68e-4881-8f7c-7939b9bd2678", + "properties": { + "accountName": "restoredaccount-4128", + "apiType": "Sql", + "creationTime": "2023-04-18T20:22:32Z", + "deletionTime": "2023-04-18T20:33:48Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f5cf519e-fb56-4c39-963c-615683e9d6a0", + "creationTime": "2023-04-18T20:22:32Z", + "deletionTime": "2023-04-18T20:33:48Z" + } + ] + } + }, + { + "name": "34394e29-5e17-4da2-a734-ba74301275a5", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/34394e29-5e17-4da2-a734-ba74301275a5", + "properties": { + "accountName": "r-database-account-6660", + "apiType": "Sql", + "creationTime": "2023-04-18T20:47:01Z", + "deletionTime": "2023-04-18T20:47:57Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "28e95726-a165-4f67-a7e1-c416b1a9348f", + "creationTime": "2023-04-18T20:47:02Z", + "deletionTime": "2023-04-18T20:47:57Z" + } + ] + } + }, + { + "name": "ace1682c-5308-4c5d-a9db-7ff549629e40", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ace1682c-5308-4c5d-a9db-7ff549629e40", + "properties": { + "accountName": "r-database-account-9177", + "apiType": "Sql", + "creationTime": "2023-04-18T22:42:05Z", + "deletionTime": "2023-04-18T22:42:43Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "accc8467-dc2a-4143-b608-9c2344bb1e2e", + "creationTime": "2023-04-18T22:42:06Z", + "deletionTime": "2023-04-18T22:42:43Z" + } + ] + } + }, + { + "name": "4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", + "properties": { + "accountName": "r-database-account-2021", + "apiType": "Sql", + "creationTime": "2023-04-18T23:07:37Z", + "deletionTime": "2023-04-18T23:08:08Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "16dfa240-459b-4603-85b8-a396991a5e97", + "creationTime": "2023-04-18T23:07:38Z", + "deletionTime": "2023-04-18T23:08:08Z" + } + ] + } + }, + { + "name": "f8009a8a-a683-4969-a990-03f2fbc2c357", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f8009a8a-a683-4969-a990-03f2fbc2c357", + "properties": { + "accountName": "r-database-account-8744", + "apiType": "Sql", + "creationTime": "2023-04-19T03:02:08Z", + "deletionTime": "2023-04-19T04:19:02Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "17fd7f68-0b30-4914-ba38-df23f7fd370f", + "creationTime": "2023-04-19T03:02:09Z", + "deletionTime": "2023-04-19T04:19:02Z" + } + ] + } + }, + { + "name": "133f8fa2-4579-4865-a24c-025431c27770", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/133f8fa2-4579-4865-a24c-025431c27770", + "properties": { + "accountName": "restoredaccount-3290", + "apiType": "Sql", + "creationTime": "2023-04-19T04:18:33Z", + "deletionTime": "2023-04-19T04:29:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "8f15ca6f-59e6-4bc4-8d12-e34438839844", + "creationTime": "2023-04-19T04:18:33Z", + "deletionTime": "2023-04-19T04:29:51Z" + } + ] + } + }, + { + "name": "363500e0-8574-42d3-bcb0-78b9930907ed", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/363500e0-8574-42d3-bcb0-78b9930907ed", + "properties": { + "accountName": "r-database-account-9591", + "apiType": "Sql", + "creationTime": "2023-04-19T04:42:38Z", + "deletionTime": "2023-04-19T04:43:26Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "7d495937-f573-4895-a5a2-f7a57e189e0a", + "creationTime": "2023-04-19T04:42:39Z", + "deletionTime": "2023-04-19T04:43:26Z" + } + ] + } + }, + { + "name": "539f95cf-af16-4c95-8ba6-3d96971c755e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/539f95cf-af16-4c95-8ba6-3d96971c755e", + "properties": { + "accountName": "r-database-account-8090", + "apiType": "Sql", + "creationTime": "2023-04-19T05:41:29Z", + "deletionTime": "2023-04-19T06:58:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ffff6e0c-bb13-4441-9bfb-4eab39131773", + "creationTime": "2023-04-19T05:41:30Z", + "deletionTime": "2023-04-19T06:58:53Z" + } + ] + } + }, + { + "name": "48bd7479-e12e-42d5-9693-f0795eca3d89", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/48bd7479-e12e-42d5-9693-f0795eca3d89", + "properties": { + "accountName": "restoredaccount-6404", + "apiType": "Sql", + "creationTime": "2023-04-19T06:58:18Z", + "deletionTime": "2023-04-19T07:09:02Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "fa2c002a-9218-4777-a5cd-1880bde715ea", + "creationTime": "2023-04-19T06:58:18Z", + "deletionTime": "2023-04-19T07:09:02Z" + } + ] + } + }, + { + "name": "075a5d48-f9d7-4306-b262-03b3737ba475", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/075a5d48-f9d7-4306-b262-03b3737ba475", + "properties": { + "accountName": "r-database-account-4017", + "apiType": "Sql", + "creationTime": "2023-04-19T07:21:28Z", + "deletionTime": "2023-04-19T07:22:09Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b14d2cf8-83ac-45ff-bc4e-1f199f848240", + "creationTime": "2023-04-19T07:21:29Z", + "deletionTime": "2023-04-19T07:22:09Z" + } + ] + } + }, + { + "name": "2e6d7920-9c30-41cf-ab15-20d2f5c82abf", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2e6d7920-9c30-41cf-ab15-20d2f5c82abf", + "properties": { + "accountName": "r-database-account-2005", + "apiType": "Sql", + "creationTime": "2023-04-19T17:40:33Z", + "deletionTime": "2023-04-19T18:57:32Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f5d1cf26-ce18-43b2-9533-62904f9851a1", + "creationTime": "2023-04-19T17:40:34Z", + "deletionTime": "2023-04-19T18:57:32Z" + } + ] + } + }, + { + "name": "4ca1a638-30f9-412c-ba0e-e032a5b27651", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4ca1a638-30f9-412c-ba0e-e032a5b27651", + "properties": { + "accountName": "restoredaccount-7552", + "apiType": "Sql", + "creationTime": "2023-04-19T18:56:48Z", + "deletionTime": "2023-04-19T19:08:15Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "294a8817-cd2a-41a8-90a9-581dde2404b3", + "creationTime": "2023-04-19T18:56:48Z", + "deletionTime": "2023-04-19T19:08:15Z" + } + ] + } + }, + { + "name": "707bd438-bc4a-4206-bf34-42de3238ba79", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/707bd438-bc4a-4206-bf34-42de3238ba79", + "properties": { + "accountName": "r-database-account-646", + "apiType": "Sql", + "creationTime": "2023-04-19T19:21:04Z", + "deletionTime": "2023-04-19T19:21:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "6591ef21-988f-47ed-8b0c-1545a5528b09", + "creationTime": "2023-04-19T19:21:05Z", + "deletionTime": "2023-04-19T19:21:53Z" + } + ] + } + }, + { + "name": "5c92ee4f-9697-48ae-815d-9b14ae598781", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c92ee4f-9697-48ae-815d-9b14ae598781", + "properties": { + "accountName": "r-database-account-9891", + "apiType": "Sql", + "creationTime": "2023-04-19T20:56:22Z", + "deletionTime": "2023-04-19T22:13:46Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "53a6a001-bc9f-4171-9928-fcc9a77577e5", + "creationTime": "2023-04-19T20:56:23Z", + "deletionTime": "2023-04-19T22:13:46Z" + } + ] + } + }, + { + "name": "8c8b9024-40be-4f92-a466-8370faf4eacd", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8c8b9024-40be-4f92-a466-8370faf4eacd", + "properties": { + "accountName": "restoredaccount-8231", + "apiType": "Sql", + "creationTime": "2023-04-19T22:12:50Z", + "deletionTime": "2023-04-19T22:23:58Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6340bdaf-07bb-45b1-b411-7921b7a52e97", + "creationTime": "2023-04-19T22:12:50Z", + "deletionTime": "2023-04-19T22:23:58Z" + } + ] + } + }, + { + "name": "5c6333bd-6bc8-4e1f-8672-9e386c60eef1", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c6333bd-6bc8-4e1f-8672-9e386c60eef1", + "properties": { + "accountName": "r-database-account-26", + "apiType": "Sql", + "creationTime": "2023-04-19T22:36:04Z", + "deletionTime": "2023-04-19T22:37:08Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "e9a47ca5-930f-4aa6-ac17-36a7cbe8cba8", + "creationTime": "2023-04-19T22:36:04Z", + "deletionTime": "2023-04-19T22:37:08Z" + } + ] + } + }, + { + "name": "9519c744-78d1-42ce-84bb-777e7c3cb046", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9519c744-78d1-42ce-84bb-777e7c3cb046", + "properties": { + "accountName": "r-database-account-8825", + "apiType": "Sql", + "creationTime": "2023-04-19T23:39:20Z", + "deletionTime": "2023-04-19T23:47:25Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f435cc2e-e45b-4157-8e44-37f29671a9c0", + "creationTime": "2023-04-19T23:39:21Z", + "deletionTime": "2023-04-19T23:47:25Z" + } + ] + } + }, + { + "name": "9e112cc2-439e-4cc6-aa49-7fb930652213", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e112cc2-439e-4cc6-aa49-7fb930652213", + "properties": { + "accountName": "r-database-account-9118", + "apiType": "Sql", + "creationTime": "2023-04-19T20:20:11Z", + "deletionTime": "2023-04-19T23:48:12Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "d7145521-4702-4ca4-a561-a25cc303c858", + "creationTime": "2023-04-19T20:20:12Z", + "deletionTime": "2023-04-19T23:48:12Z" + } + ] + } + }, + { + "name": "789de828-aa5f-47fb-8313-a13a25376c97", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/789de828-aa5f-47fb-8313-a13a25376c97", + "properties": { + "accountName": "r-database-account-904", + "apiType": "Sql", + "creationTime": "2023-04-17T22:35:24Z", + "deletionTime": "2023-04-19T23:48:20Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "765fa936-f0ff-4ded-8e4a-19d48f425802", + "creationTime": "2023-04-17T22:35:25Z", + "deletionTime": "2023-04-19T23:48:20Z" + } + ] + } + }, + { + "name": "7bfa7165-82b3-40d0-bbb5-4b71c77a620c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7bfa7165-82b3-40d0-bbb5-4b71c77a620c", + "properties": { + "accountName": "r-database-account-8401", + "apiType": "Sql", + "creationTime": "2023-04-19T02:38:50Z", + "deletionTime": "2023-04-19T23:49:12Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3d83dafe-7b63-4dc2-a490-57664ae4913a", + "creationTime": "2023-04-19T02:38:51Z", + "deletionTime": "2023-04-19T23:49:12Z" + } + ] + } + }, + { + "name": "4e974916-da87-4016-bbe3-0618f3aecf2c", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4e974916-da87-4016-bbe3-0618f3aecf2c", + "properties": { + "accountName": "r-database-account-6679", + "apiType": "Sql", + "creationTime": "2023-04-17T22:29:22Z", + "deletionTime": "2023-04-19T23:53:08Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ebb1e8c4-224f-47ea-b7e1-a09f1aa3a132", + "creationTime": "2023-04-17T22:29:23Z", + "deletionTime": "2023-04-19T23:53:08Z" + } + ] + } + }, + { + "name": "d256cb21-a1a9-42a0-81db-13f0a6c1137e", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d256cb21-a1a9-42a0-81db-13f0a6c1137e", + "properties": { + "accountName": "r-database-account-6099", + "apiType": "Sql", + "creationTime": "2023-04-18T16:25:48Z", + "deletionTime": "2023-04-19T23:53:11Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2cf7c4ff-1b46-433d-affd-af97ad9aec94", + "creationTime": "2023-04-18T16:25:49Z", + "deletionTime": "2023-04-19T23:53:11Z" + } + ] + } + }, + { + "name": "9b3db21c-08d7-4198-bc30-4cc6808f495b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9b3db21c-08d7-4198-bc30-4cc6808f495b", + "properties": { + "accountName": "r-database-account-5433", + "apiType": "Sql", + "creationTime": "2023-04-17T22:54:36Z", + "deletionTime": "2023-04-19T23:53:30Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "f72b5e7f-5e80-4c3e-9b0b-e8fa06258f58", + "creationTime": "2023-04-17T22:54:37Z", + "deletionTime": "2023-04-19T23:53:30Z" + } + ] + } + }, + { + "name": "030969ae-8f77-4a8c-a143-3ea7918a6a15", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/030969ae-8f77-4a8c-a143-3ea7918a6a15", + "properties": { + "accountName": "r-database-account-4785", + "apiType": "Sql", + "creationTime": "2023-04-19T23:51:43Z", + "deletionTime": "2023-04-19T23:53:36Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "1dcb01a3-a653-44fc-9622-575fe1d69e1e", + "creationTime": "2023-04-19T23:51:44Z", + "deletionTime": "2023-04-19T23:53:36Z" + } + ] + } + }, + { + "name": "f901e9d9-57d4-4939-ab5a-853d33125da9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f901e9d9-57d4-4939-ab5a-853d33125da9", + "properties": { + "accountName": "r-database-account-4144", + "apiType": "Sql", + "creationTime": "2023-04-17T22:38:31Z", + "deletionTime": "2023-04-19T23:53:44Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "ef92e1be-ac4e-4aaa-9525-ba1966156f15", + "creationTime": "2023-04-17T22:38:32Z", + "deletionTime": "2023-04-19T23:53:44Z" + } + ] + } + }, + { + "name": "e2c2398c-3aa1-4d04-84da-64bb557292f3", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e2c2398c-3aa1-4d04-84da-64bb557292f3", + "properties": { + "accountName": "r-database-account-2826", + "apiType": "Sql", + "creationTime": "2023-04-19T19:54:34Z", + "deletionTime": "2023-04-19T23:53:47Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "c03d8e05-59e3-420e-a9be-fba97b9d05bf", + "creationTime": "2023-04-19T19:54:35Z", + "deletionTime": "2023-04-19T23:53:47Z" + } + ] + } + }, + { + "name": "33c24168-b5c2-47d4-9762-d577d358c06a", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/33c24168-b5c2-47d4-9762-d577d358c06a", + "properties": { + "accountName": "r-database-account-168", + "apiType": "Sql", + "creationTime": "2023-04-19T22:47:58Z", + "deletionTime": "2023-04-19T23:54:08Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "047a0df3-b96b-4dfe-acf1-88b2de702c89", + "creationTime": "2023-04-19T22:47:59Z", + "deletionTime": "2023-04-19T23:54:08Z" + } + ] + } + }, + { + "name": "9f83a8dd-4124-4fde-8ae0-88721048ec59", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9f83a8dd-4124-4fde-8ae0-88721048ec59", + "properties": { + "accountName": "r-database-account-1528", + "apiType": "Sql", + "creationTime": "2023-04-17T21:38:01Z", + "deletionTime": "2023-04-19T23:54:11Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b3d11030-af2a-4a09-9290-79c78ece3c5a", + "creationTime": "2023-04-17T21:38:02Z", + "deletionTime": "2023-04-19T23:54:11Z" + } + ] + } + }, + { + "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "properties": { + "accountName": "r-database-account-5849", + "apiType": "Sql", + "creationTime": "2023-04-20T00:32:15Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", + "creationTime": "2023-04-20T00:32:16Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "e7a884a0-d941-44cf-a344-2dd1d8c91284", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7a884a0-d941-44cf-a344-2dd1d8c91284", + "properties": { + "accountName": "restoredaccount-6463", + "apiType": "Sql", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e242568-ac8e-4a84-8fae-a1dcd16744f4", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "properties": { + "accountName": "r-database-account-1146", + "apiType": "Sql", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" + } + ] + } + }, + { + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "properties": { + "accountName": "restoredaccount-2866", + "apiType": "Sql", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" + } + ] + } + }, + { + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "properties": { + "accountName": "r-database-account-2733", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" + } + ] + } + }, + { + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "properties": { + "accountName": "restoredaccount-3296", + "apiType": "Sql", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" + } + ] + } + }, + { + "name": "d88e6a3c-687d-4990-a516-da739070bf81", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", + "properties": { + "accountName": "kal-continuous7", + "apiType": "Sql", + "creationTime": "2022-06-07T20:09:38Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", + "creationTime": "2022-06-07T20:09:39Z" + } + ] + } + }, + { + "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "properties": { + "accountName": "kal-continuous7-restored1", + "apiType": "Sql", + "creationTime": "2022-06-10T19:23:44Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", + "creationTime": "2022-06-10T19:23:44Z" + } + ] + } + }, + { + "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", + "properties": { + "accountName": "kal-continuous7-demorestore", + "apiType": "Sql", + "creationTime": "2022-06-10T21:20:46Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", + "creationTime": "2022-06-10T21:20:46Z" + } + ] + } + }, + { + "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "properties": { + "accountName": "test-billing-continuous30", + "apiType": "Sql", + "creationTime": "2022-07-28T21:54:20Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", + "creationTime": "2022-07-28T21:54:21Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", + "creationTime": "2022-08-31T21:09:14Z" + }, + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", + "creationTime": "2022-08-31T22:24:21Z" + } + ] + } + }, + { + "name": "e84733a9-ee18-456c-b12b-1d37e542608b", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", + "properties": { + "accountName": "new-cosmsosdb-account", + "apiType": "Sql", + "creationTime": "2022-08-31T20:34:40Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", + "creationTime": "2022-08-31T20:34:40Z" + } + ] + } + }, + { + "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", + "location": "North Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", + "properties": { + "accountName": "amisitestpitracc", + "apiType": "Sql", + "creationTime": "2023-03-29T04:22:22Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", + "creationTime": "2023-03-29T04:22:23Z", + "deletionTime": "2023-03-30T19:57:43Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", + "creationTime": "2023-03-29T07:29:18Z", + "deletionTime": "2023-04-07T16:42:28Z" + } + ] + } + }, + { + "name": "2414c009-8022-442c-9ab6-81c276eb2a99", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", + "properties": { + "accountName": "vinh-periodic", + "apiType": "Sql", + "creationTime": "2022-06-06T19:53:54Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", + "creationTime": "2022-06-06T19:53:54Z" + } + ] + } + }, + { + "name": "5716280d-381e-4045-b936-d0edbfc7317b", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", + "properties": { + "accountName": "databaseaccount9284", + "apiType": "Sql", + "creationTime": "2022-09-20T05:50:05Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", + "creationTime": "2022-09-20T05:50:06Z" + } + ] + } + }, + { + "name": "34a9cb27-53a5-4143-9af7-810285110075", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", + "properties": { + "accountName": "databaseaccount6234", + "apiType": "Sql", + "creationTime": "2022-09-20T09:04:22Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", + "creationTime": "2022-09-20T09:04:23Z" + } + ] + } + }, + { + "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "properties": { + "accountName": "databaseaccount8251", + "apiType": "Sql", + "creationTime": "2022-09-20T16:29:44Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", + "creationTime": "2022-09-20T16:29:45Z" + } + ] + } + }, + { + "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", + "properties": { + "accountName": "sql-portal-test", + "apiType": "Sql", + "creationTime": "2023-03-08T18:47:23Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", + "creationTime": "2023-03-08T18:47:23Z" + } + ] + } + }, + { + "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "location": "Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "properties": { + "accountName": "dsapaliga-xrr-cu", + "apiType": "Sql", + "creationTime": "2023-03-30T15:10:46Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", + "creationTime": "2023-03-30T15:10:47Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", + "creationTime": "2023-03-30T15:13:00Z" + } + ] + } + }, + { + "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", + "properties": { + "accountName": "databaseaccount2058", + "apiType": "MongoDB", + "creationTime": "2022-04-14T02:10:48Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", + "creationTime": "2022-04-14T02:10:49Z" + } + ] + } + }, + { + "name": "fce807d5-4358-4ea1-8130-0439181f6be0", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", + "properties": { + "accountName": "vinh-demo-periodic", + "apiType": "Sql", + "creationTime": "2022-05-26T04:53:41Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", + "creationTime": "2022-05-26T04:53:41Z" + } + ] + } + }, + { + "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "properties": { + "accountName": "vinh-demo-continous30", + "apiType": "Sql", + "creationTime": "2022-05-26T03:29:41Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", + "creationTime": "2022-05-26T03:29:42Z" + } + ] + } + }, + { + "name": "9177692a-0db9-4c0c-af1d-af0310418b43", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", + "properties": { + "accountName": "vinh-demo-continous7", + "apiType": "Sql", + "creationTime": "2022-05-26T04:14:49Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", + "creationTime": "2022-05-26T04:14:50Z" + } + ] + } + }, + { + "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", + "properties": { + "accountName": "vinh-demo-periodic2", + "apiType": "Sql", + "creationTime": "2022-05-26T18:12:07Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", + "creationTime": "2022-05-26T18:12:07Z" + } + ] + } + }, + { + "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "properties": { + "accountName": "vinh-demo-continous7-2", + "apiType": "Sql", + "creationTime": "2022-05-26T18:05:53Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", + "creationTime": "2022-05-26T18:05:53Z" + } + ] + } + }, + { + "name": "9484f425-a747-4e73-b8c4-04983e984315", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", + "properties": { + "accountName": "clip2dbd2gollbc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z" + } + ] + } + }, + { + "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", + "properties": { + "accountName": "cli3fpzmlckewgo", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:36:38Z", + "deletionTime": "2023-04-07T19:56:52Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", + "creationTime": "2023-04-07T19:36:40Z", + "deletionTime": "2023-04-07T19:56:52Z" + } + ] + } + }, + { + "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", + "properties": { + "accountName": "cliftacbeowmtnb", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z" + } + ] + } + }, + { + "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "properties": { + "accountName": "clipofi2jwwbtu4", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:22:17Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", + "creationTime": "2023-04-07T21:22:18Z", + "deletionTime": "2023-04-07T21:42:59Z" + } + ] + } + }, + { + "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", + "properties": { + "accountName": "cliwq55chmmvzvu", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T13:41:40Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", + "creationTime": "2023-04-14T13:41:42Z", + "deletionTime": "2023-04-14T14:02:52Z" + } + ] + } + }, + { + "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "properties": { + "accountName": "clixsitnvbfssqd", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z" + } + ] + } + }, + { + "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", + "properties": { + "accountName": "clinwxgmq26mrzy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T14:50:51Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", + "creationTime": "2023-04-14T14:50:52Z", + "deletionTime": "2023-04-14T15:10:01Z" + } + ] + } + }, + { + "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", + "location": "West US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", + "properties": { + "accountName": "clibaor2akp53uy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z" + } + ] + } + }, + { + "name": "40dbd153-3d36-42b7-8649-48e6307849f9", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", + "properties": { + "accountName": "cliiumnemwk33v5", + "apiType": "Sql", + "creationTime": "2023-04-14T16:48:09Z", + "oldestRestorableTime": "2023-04-14T16:48:09Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", + "creationTime": "2023-04-14T16:48:10Z" + } + ] + } + }, + { + "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "properties": { + "accountName": "cli-continuous30-cylyo7wg-restored", + "apiType": "Sql", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z" + } + ] + } + }, + { + "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", + "properties": { + "accountName": "cli-continuous30-cylyo7wg", + "apiType": "Sql", + "creationTime": "2023-03-24T15:42:44Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", + "creationTime": "2023-03-24T15:42:45Z", + "deletionTime": "2023-03-24T16:01:53Z" + } + ] + } + }, + { + "name": "8c9286c5-c880-449c-9030-327de00e36b6", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", + "properties": { + "accountName": "cli-continuous30-wuye4s75", + "apiType": "Sql", + "creationTime": "2023-03-24T16:04:54Z", + "deletionTime": "2023-03-24T16:12:17Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", + "creationTime": "2023-03-24T16:04:55Z", + "deletionTime": "2023-03-24T16:12:17Z" + } + ] + } + }, + { + "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "properties": { + "accountName": "cli-continuous30-qpysbnmc", + "apiType": "Sql", + "creationTime": "2023-03-24T16:45:16Z", + "deletionTime": "2023-03-24T16:52:22Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", + "creationTime": "2023-03-24T16:45:17Z", + "deletionTime": "2023-03-24T16:52:22Z" + } + ] + } + }, + { + "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "properties": { + "accountName": "cli-continuous30-4uv42csa", + "apiType": "Sql", + "creationTime": "2023-03-24T17:01:08Z", + "deletionTime": "2023-03-24T17:07:36Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", + "creationTime": "2023-03-24T17:01:09Z", + "deletionTime": "2023-03-24T17:07:36Z" + } + ] + } + }, + { + "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "properties": { + "accountName": "cli-continuous30-e6tglvvh", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:31Z", + "deletionTime": "2023-03-24T19:24:33Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", + "creationTime": "2023-03-24T19:18:32Z", + "deletionTime": "2023-03-24T19:24:33Z" + } + ] + } + }, + { + "name": "bbc21107-730f-460e-a806-f73643e95a9b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", + "properties": { + "accountName": "cli-continuous30-mgbfodqo", + "apiType": "Sql", + "creationTime": "2023-03-29T20:28:56Z", + "deletionTime": "2023-03-29T20:31:58Z", + "oldestRestorableTime": "2023-03-22T20:31:58Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", + "creationTime": "2023-03-29T20:28:57Z", + "deletionTime": "2023-03-29T20:31:58Z" + } + ] + } + }, + { + "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "properties": { + "accountName": "cli-continuous30-pqnqtvrw", + "apiType": "Sql", + "creationTime": "2023-03-29T20:35:21Z", + "deletionTime": "2023-03-29T20:38:56Z", + "oldestRestorableTime": "2023-03-22T20:38:56Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", + "creationTime": "2023-03-29T20:37:50Z", + "deletionTime": "2023-03-29T20:38:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", + "creationTime": "2023-03-29T20:35:22Z", + "deletionTime": "2023-03-29T20:38:56Z" + } + ] + } + }, + { + "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", + "properties": { + "accountName": "cli-continuous30-nbcgdudl", + "apiType": "Sql", + "creationTime": "2023-03-29T20:49:15Z", + "deletionTime": "2023-03-29T20:52:54Z", + "oldestRestorableTime": "2023-03-22T20:52:54Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", + "creationTime": "2023-03-29T20:51:44Z", + "deletionTime": "2023-03-29T20:52:54Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", + "creationTime": "2023-03-29T20:49:16Z", + "deletionTime": "2023-03-29T20:52:54Z" + } + ] + } + }, + { + "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "properties": { + "accountName": "cli-continuous30-fvguiiqd", + "apiType": "Sql", + "creationTime": "2023-03-29T20:58:03Z", + "deletionTime": "2023-03-29T21:26:03Z", + "oldestRestorableTime": "2023-03-22T21:26:03Z", + "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", + "creationTime": "2023-03-29T21:00:45Z", + "deletionTime": "2023-03-29T21:26:03Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", + "creationTime": "2023-03-29T20:58:04Z", + "deletionTime": "2023-03-29T21:26:03Z" + } + ] + } + }, + { + "name": "648c8b93-36da-440c-801c-19d18e3b3f21", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", + "properties": { + "accountName": "cli-continuous30-of2nmx5u", + "apiType": "Sql", + "creationTime": "2023-03-29T22:12:53Z", + "deletionTime": "2023-03-29T22:16:03Z", + "oldestRestorableTime": "2023-03-22T22:16:03Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", + "creationTime": "2023-03-29T22:12:54Z", + "deletionTime": "2023-03-29T22:16:03Z" + } + ] + } + }, + { + "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "properties": { + "accountName": "cli-continuous30-guwsy4ak", + "apiType": "Sql", + "creationTime": "2023-03-29T22:43:18Z", + "deletionTime": "2023-03-29T22:48:52Z", + "oldestRestorableTime": "2023-03-22T22:48:52Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", + "creationTime": "2023-03-29T22:45:41Z", + "deletionTime": "2023-03-29T22:48:52Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", + "creationTime": "2023-03-29T22:43:19Z", + "deletionTime": "2023-03-29T22:48:52Z" + } + ] + } + }, + { + "name": "751f535c-90ad-422c-8791-d85058c83f19", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", + "properties": { + "accountName": "cli-systemid-kq6yvu46yp4h-restored", + "apiType": "Sql", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z" + } + ] + } + }, + { + "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", + "properties": { + "accountName": "cli-systemid-kq6yvu46yp4h", + "apiType": "Sql", + "creationTime": "2023-04-05T22:25:06Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", + "creationTime": "2023-04-05T22:25:07Z", + "deletionTime": "2023-04-05T22:47:27Z" + } + ] + } + }, + { + "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", + "properties": { + "accountName": "cli-systemid-pml7r44tlwdv-restored", + "apiType": "Sql", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z" + } + ] + } + }, + { + "name": "9962f6da-506f-408b-927f-4eb07a12c382", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", + "properties": { + "accountName": "cli-systemid-pml7r44tlwdv", + "apiType": "Sql", + "creationTime": "2023-04-07T15:43:38Z", + "deletionTime": "2023-04-07T16:06:55Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", + "creationTime": "2023-04-07T15:43:39Z", + "deletionTime": "2023-04-07T16:06:55Z" + } + ] + } + }, + { + "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", + "properties": { + "accountName": "cli-continuous30-5xp42uvg", + "apiType": "Sql", + "creationTime": "2023-04-07T16:35:15Z", + "deletionTime": "2023-04-07T16:38:01Z", + "oldestRestorableTime": "2023-03-31T16:38:01Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", + "creationTime": "2023-04-07T16:35:16Z", + "deletionTime": "2023-04-07T16:38:01Z" + } + ] + } + }, + { + "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", + "properties": { + "accountName": "cli-continuous7-kadtogihc", + "apiType": "Sql", + "creationTime": "2023-04-07T16:56:03Z", + "deletionTime": "2023-04-07T16:57:45Z", + "oldestRestorableTime": "2023-03-31T16:56:56Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", + "creationTime": "2023-04-07T16:56:04Z", + "deletionTime": "2023-04-07T16:57:45Z" + } + ] + } + }, + { + "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", + "properties": { + "accountName": "cli-continuous7-ghrp5g2r3", + "apiType": "Sql", + "creationTime": "2023-04-07T17:01:55Z", + "deletionTime": "2023-04-07T17:04:46Z", + "oldestRestorableTime": "2023-03-31T17:04:46Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", + "creationTime": "2023-04-07T17:01:56Z", + "deletionTime": "2023-04-07T17:04:46Z" + } + ] + } + }, + { + "name": "53c25e9f-44ca-4509-adcd-23802185cba8", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", + "properties": { + "accountName": "cli-periodic-d6qxquiv72md", + "apiType": "Sql", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z", + "oldestRestorableTime": "2023-04-07T17:18:47Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z" + } + ] + } + }, + { + "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "properties": { + "accountName": "cliufubmalcsuyb", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z" + } + ] + } + }, + { + "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", + "properties": { + "accountName": "clitfyptqa45syc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:33:20Z", + "deletionTime": "2023-04-07T17:52:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", + "creationTime": "2023-04-07T17:33:21Z", + "deletionTime": "2023-04-07T17:52:53Z" + } + ] + } + }, + { + "name": "329d5785-2f04-451c-a748-f79d0f562ff9", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", + "properties": { + "accountName": "cliahilffivwqwi", + "apiType": "MongoDB", + "creationTime": "2023-04-07T19:26:23Z", + "deletionTime": "2023-04-07T19:31:01Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", + "creationTime": "2023-04-07T19:26:24Z", + "deletionTime": "2023-04-07T19:31:01Z" + } + ] + } + }, + { + "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "properties": { + "accountName": "cli5nu6pl77n5ia", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:12:03Z", + "deletionTime": "2023-04-07T20:16:06Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", + "creationTime": "2023-04-07T20:12:04Z", + "deletionTime": "2023-04-07T20:16:06Z" + } + ] + } + }, + { + "name": "ced5610b-4422-469f-a9ca-f83235fea285", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", + "properties": { + "accountName": "clisrkiadnudmcc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:25:32Z", + "deletionTime": "2023-04-07T20:29:54Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", + "creationTime": "2023-04-07T20:25:33Z", + "deletionTime": "2023-04-07T20:29:54Z" + } + ] + } + }, + { + "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "properties": { + "accountName": "cliypixaxarcyzp", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:36:05Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", + "creationTime": "2023-04-07T20:36:06Z", + "deletionTime": "2023-04-07T20:56:57Z" + } + ] + } + }, + { + "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", + "properties": { + "accountName": "clilnfxvj3jbdds", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z" + } + ] + } + }, + { + "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", + "properties": { + "accountName": "cliwoaphmlu77h5", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:56:14Z", + "deletionTime": "2023-04-07T21:59:20Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", + "creationTime": "2023-04-07T21:56:15Z", + "deletionTime": "2023-04-07T21:59:20Z" + } + ] + } + }, + { + "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "properties": { + "accountName": "clioh53zckfrcxk", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T22:04:54Z", + "deletionTime": "2023-04-07T22:09:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", + "creationTime": "2023-04-07T22:04:55Z", + "deletionTime": "2023-04-07T22:09:53Z" + } + ] + } + }, + { + "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", + "properties": { + "accountName": "cli7cixib236qbg", + "apiType": "Sql", + "creationTime": "2023-04-08T17:25:42Z", + "deletionTime": "2023-04-08T17:29:36Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", + "creationTime": "2023-04-08T17:25:44Z", + "deletionTime": "2023-04-08T17:29:36Z" + } + ] + } + }, + { + "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "properties": { + "accountName": "cli-continuous7-hfvk4t4fj", + "apiType": "Sql", + "creationTime": "2023-04-13T14:48:07Z", + "deletionTime": "2023-04-13T14:49:43Z", + "oldestRestorableTime": "2023-04-06T14:49:43Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", + "creationTime": "2023-04-13T14:48:08Z", + "deletionTime": "2023-04-13T14:49:43Z" + } + ] + } + }, + { + "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", + "properties": { + "accountName": "cli-continuous7-zputoz3gu", + "apiType": "Sql", + "creationTime": "2023-04-14T13:23:19Z", + "deletionTime": "2023-04-14T13:26:29Z", + "oldestRestorableTime": "2023-04-07T13:26:29Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", + "creationTime": "2023-04-14T13:23:20Z", + "deletionTime": "2023-04-14T13:26:29Z" + } + ] + } + }, + { + "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "properties": { + "accountName": "cli-continuous7-737ullqld", + "apiType": "Sql", + "creationTime": "2023-04-14T13:36:13Z", + "deletionTime": "2023-04-14T13:38:00Z", + "oldestRestorableTime": "2023-04-07T13:38:00Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", + "creationTime": "2023-04-14T13:36:14Z", + "deletionTime": "2023-04-14T13:38:00Z" + } + ] + } + }, + { + "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", + "properties": { + "accountName": "clidiym44m6kuui", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z" + } + ] + } + }, + { + "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", + "properties": { + "accountName": "clifxznjcelc2k7", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:07:29Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", + "creationTime": "2023-04-14T14:07:30Z", + "deletionTime": "2023-04-14T14:27:29Z" + } + ] + } + }, + { + "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "properties": { + "accountName": "clifdo3gehahcp3", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:32:21Z", + "deletionTime": "2023-04-14T14:36:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", + "creationTime": "2023-04-14T14:32:22Z", + "deletionTime": "2023-04-14T14:36:53Z" + } + ] + } + }, + { + "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", + "properties": { + "accountName": "clijvrcnqk7clgr", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:39:15Z", + "deletionTime": "2023-04-14T15:59:46Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", + "creationTime": "2023-04-14T15:39:16Z", + "deletionTime": "2023-04-14T15:59:46Z" + } + ] + } + }, + { + "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", + "properties": { + "accountName": "cliw5rqb5ajsohh", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z" + } + ] + } + }, + { + "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "properties": { + "accountName": "cliz3js7jmkwxxb", + "apiType": "Sql", + "creationTime": "2023-04-14T16:51:53Z", + "deletionTime": "2023-04-14T16:55:53Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", + "creationTime": "2023-04-14T16:51:54Z", + "deletionTime": "2023-04-14T16:55:53Z" + } + ] + } + }, + { + "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", + "properties": { + "accountName": "cliamicotk3huk3", + "apiType": "MongoDB", + "creationTime": "2023-04-14T16:59:34Z", + "deletionTime": "2023-04-14T17:04:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", + "creationTime": "2023-04-14T16:59:35Z", + "deletionTime": "2023-04-14T17:04:35Z" + } + ] + } + }, + { + "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "properties": { + "accountName": "cli7fcxogqa75ng", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T17:07:39Z", + "deletionTime": "2023-04-14T17:12:37Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", + "creationTime": "2023-04-14T17:07:40Z", + "deletionTime": "2023-04-14T17:12:37Z" + } + ] + } + }, + { + "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "properties": { + "accountName": "clibijii3gdxu7r", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T17:16:06Z", + "deletionTime": "2023-04-14T17:19:35Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", + "creationTime": "2023-04-14T17:16:07Z", + "deletionTime": "2023-04-14T17:19:35Z" + } + ] + } + }, + { + "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "properties": { + "accountName": "cli-continuous7-ixtyb5gvo", + "apiType": "Sql", + "creationTime": "2023-04-14T17:21:52Z", + "deletionTime": "2023-04-14T17:23:42Z", + "oldestRestorableTime": "2023-04-07T17:22:55Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", + "creationTime": "2023-04-14T17:21:53Z", + "deletionTime": "2023-04-14T17:23:42Z" + } + ] + } + }, + { + "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", + "properties": { + "accountName": "cli-continuous30-expjec5z", + "apiType": "Sql", + "creationTime": "2023-04-14T17:25:24Z", + "deletionTime": "2023-04-14T17:27:06Z", + "oldestRestorableTime": "2023-04-07T17:27:06Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", + "creationTime": "2023-04-14T17:25:25Z", + "deletionTime": "2023-04-14T17:27:06Z" + } + ] + } + }, + { + "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "properties": { + "accountName": "cli-periodic-ppe7oaphbkgu", + "apiType": "Sql", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z", + "oldestRestorableTime": "2023-04-14T18:01:21Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z" + } + ] + } + }, + { + "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "properties": { + "accountName": "cli-systemid-ppze3bdfpo3g-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z" + } + ] + } + }, + { + "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", + "properties": { + "accountName": "cli-systemid-ppze3bdfpo3g", + "apiType": "Sql", + "creationTime": "2023-04-14T18:08:00Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", + "creationTime": "2023-04-14T18:08:01Z", + "deletionTime": "2023-04-14T18:31:44Z" + } + ] + } + }, + { + "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "location": "East US 2", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "properties": { + "accountName": "cli7i23nmwwvyik", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T18:36:04Z", + "deletionTime": "2023-04-14T18:40:37Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", + "creationTime": "2023-04-14T18:36:05Z", + "deletionTime": "2023-04-14T18:40:37Z" + } + ] + } + }, + { + "name": "f4004a76-8173-4d36-9590-6090cce37a4d", + "location": "West Europe", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", + "properties": { + "accountName": "aholdtest", + "apiType": "MongoDB", + "creationTime": "2021-07-01T19:34:24Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Europe", + "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", + "creationTime": "2021-07-01T19:34:25Z" + } + ] + } + }, + { + "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", + "properties": { + "accountName": "targetacct112", + "apiType": "Sql", + "creationTime": "2021-03-01T10:33:41Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", + "creationTime": "2021-03-01T10:33:41Z" + } + ] + } + }, + { + "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", + "properties": { + "accountName": "pitrmongotest", + "apiType": "MongoDB", + "creationTime": "2020-10-01T17:27:22Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", + "creationTime": "2020-10-01T17:27:23Z" + } + ] + } + }, + { + "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", + "properties": { + "accountName": "pitrmongowithsnapshots", + "apiType": "MongoDB", + "creationTime": "2021-01-07T19:45:07Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", + "creationTime": "2021-01-07T19:45:07Z" + } + ] + } + }, + { + "name": "36d321ce-5c39-4d66-9347-47beebff1142", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", + "properties": { + "accountName": "test0319-r1", + "apiType": "Sql", + "creationTime": "2021-07-07T21:28:13Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", + "creationTime": "2021-07-07T21:28:13Z" + }, + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", + "creationTime": "2021-07-07T21:28:13Z" + } + ] + } + }, + { + "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "properties": { + "accountName": "pitracctdemo2", + "apiType": "Sql", + "creationTime": "2020-08-11T02:34:23Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", + "creationTime": "2020-08-11T02:34:24Z" + } + ] + } + }, + { + "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "properties": { + "accountName": "ptr-target", + "apiType": "Sql", + "creationTime": "2021-01-05T22:25:24Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", + "creationTime": "2021-01-05T22:25:24Z" + } + ] + } + }, + { + "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "properties": { + "accountName": "pitrmongotest-restore", + "apiType": "MongoDB", + "creationTime": "2020-10-01T21:24:45Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", + "creationTime": "2020-10-01T21:24:45Z" + } + ] + } + }, + { + "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", + "properties": { + "accountName": "pitrdemo1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:28:59Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", + "creationTime": "2020-10-15T17:29:00Z" + } + ] + } + }, + { + "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "properties": { + "accountName": "pitrdemorestored1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:37:20Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", + "creationTime": "2020-10-15T17:37:20Z" + } + ] + } + }, + { + "name": "23e99a35-cd36-4df4-9614-f767a03b9995", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", + "properties": { + "accountName": "subbannageeta", + "apiType": "Sql", + "creationTime": "2020-08-08T01:04:53Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", + "creationTime": "2020-08-08T01:04:53Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", + "creationTime": "2020-08-08T01:15:44Z" + } + ] + } + }, + { + "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "properties": { + "accountName": "scottkirill", + "apiType": "Sql", + "creationTime": "2021-04-15T17:21:20Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", + "creationTime": "2021-04-15T17:21:20Z" + } + ] + } + }, + { + "name": "01c9a078-6ca2-43fd-92c7-632167c86590", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", + "properties": { + "accountName": "test0319-pitr-r1", + "apiType": "Sql", + "creationTime": "2021-07-07T21:54:07Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", + "creationTime": "2021-07-07T21:54:07Z" + } + ] + } + }, + { + "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", + "properties": { + "accountName": "onboardingtestaccount0124", + "apiType": "Sql", + "creationTime": "2022-01-24T20:24:43Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", + "creationTime": "2022-01-24T20:24:44Z" + } + ] + } + }, + { + "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", + "properties": { + "accountName": "onboardingtestaccount0124-restored", + "apiType": "Sql", + "creationTime": "2022-01-24T20:48:23Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", + "creationTime": "2022-01-24T20:48:23Z" + } + ] + } + }, + { + "name": "01652628-d4ef-449d-846e-38e8250f0b9a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", + "properties": { + "accountName": "vinh-table2-restore", + "apiType": "Table, Sql", + "creationTime": "2022-04-07T00:48:08Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", + "creationTime": "2022-04-07T00:48:08Z" + } + ] + } + }, + { + "name": "4b754475-3b23-4485-9205-87ac1661af13", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", + "properties": { + "accountName": "vinhpitr30-cli", + "apiType": "Sql", + "creationTime": "2022-04-29T23:50:20Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", + "creationTime": "2022-04-29T23:50:21Z" + } + ] + } + }, + { + "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "properties": { + "accountName": "vinhperiodic3-cli", + "apiType": "Sql", + "creationTime": "2022-06-03T17:21:23Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", + "creationTime": "2022-06-03T17:21:23Z" + } + ] + } + }, + { + "name": "023add2e-531e-4574-a7df-4d09c97d548d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", + "properties": { + "accountName": "vinh-pitr7-portal", + "apiType": "Sql", + "creationTime": "2022-05-31T19:24:32Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", + "creationTime": "2022-05-31T19:24:34Z" + } + ] + } + }, + { + "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "properties": { + "accountName": "vinh-periodic-portal-tobemigrated-to-7", + "apiType": "Sql", + "creationTime": "2022-05-31T23:36:11Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", + "creationTime": "2022-05-31T23:36:11Z" + } + ] + } + }, + { + "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "properties": { + "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", + "apiType": "Sql", + "creationTime": "2022-06-03T18:42:58Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", + "creationTime": "2022-06-03T18:42:58Z" + } + ] + } + }, + { + "name": "3808b68e-7cae-4b91-901b-e29b35b311be", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", + "properties": { + "accountName": "vinh-periodic-again", + "apiType": "Sql", + "creationTime": "2022-06-10T20:01:48Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", + "creationTime": "2022-06-10T20:01:48Z" + } + ] + } + }, + { + "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "properties": { + "accountName": "vinh-periodic-again2", + "apiType": "Sql", + "creationTime": "2022-06-10T23:57:37Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", + "creationTime": "2022-06-10T23:57:37Z" + } + ] + } + }, + { + "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", + "properties": { + "accountName": "vinh-gremlin-again", + "apiType": "Gremlin, Sql", + "creationTime": "2022-07-28T01:55:28Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", + "creationTime": "2022-07-28T01:55:28Z" + } + ] + } + }, + { + "name": "df774a43-6e6f-4725-82d0-67c18c69a906", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", + "properties": { + "accountName": "vinh-table-tennis-cli-0190", + "apiType": "Table, Sql", + "creationTime": "2022-08-11T05:19:28Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", + "creationTime": "2022-08-11T05:19:28Z" + } + ] + } + }, + { + "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "properties": { + "accountName": "ddhamothsqlpitracc", + "apiType": "Sql", + "creationTime": "2022-10-12T07:15:50Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", + "creationTime": "2022-10-12T07:15:51Z" + } + ] + } + }, + { + "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "properties": { + "accountName": "ddhamothmongopitracc", + "apiType": "MongoDB", + "creationTime": "2022-10-12T07:18:54Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", + "creationTime": "2022-10-12T07:18:55Z" + } + ] + } + }, + { + "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "properties": { + "accountName": "dsapaligadbkeytest", + "apiType": "Sql", + "creationTime": "2022-10-27T16:53:54Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", + "creationTime": "2022-10-27T16:53:56Z" + } + ] + } + }, + { + "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "properties": { + "accountName": "ddhamothpitrsqlacc2", + "apiType": "Sql", + "creationTime": "2022-11-15T21:30:17Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", + "creationTime": "2022-11-15T21:30:18Z" + } + ] + } + }, + { + "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", + "properties": { + "accountName": "vinkumsql", + "apiType": "Sql", + "creationTime": "2022-12-06T19:35:15Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", + "creationTime": "2022-12-06T19:35:16Z" + } + ] + } + }, + { + "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "properties": { + "accountName": "dsapaliga-monitor-test2", + "apiType": "Sql", + "creationTime": "2022-12-09T16:57:51Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", + "creationTime": "2022-12-09T16:57:51Z" + } + ] + } + }, + { + "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "properties": { + "accountName": "nikhiltestmig", + "apiType": "Sql", + "creationTime": "2022-12-15T19:23:56Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", + "creationTime": "2022-12-15T19:23:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", + "creationTime": "2022-12-19T06:05:45Z" + } + ] + } + }, + { + "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "properties": { + "accountName": "nikhil-multi-region-pitr", + "apiType": "Sql", + "creationTime": "2022-12-19T06:00:50Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", + "creationTime": "2022-12-19T06:00:52Z" + } + ] + } + }, + { + "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "properties": { + "accountName": "test-account23", + "apiType": "Sql", + "creationTime": "2022-12-24T18:24:52Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", + "creationTime": "2022-12-24T18:24:53Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", + "creationTime": "2022-12-24T18:27:11Z" + } + ] + } + }, + { + "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "properties": { + "accountName": "testpitr", + "apiType": "Sql", + "creationTime": "2022-12-27T20:37:00Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", + "creationTime": "2022-12-27T20:37:02Z" + } + ] + } + }, + { + "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", + "properties": { + "accountName": "readregionrestore-test", + "apiType": "Sql", + "creationTime": "2023-01-09T23:54:38Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", + "creationTime": "2023-01-09T23:54:38Z" + } + ] + } + }, + { + "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", + "properties": { + "accountName": "vinhpitr30-cli-arm-restore", + "apiType": "Sql", + "creationTime": "2023-02-06T21:33:23Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", + "creationTime": "2023-02-06T21:33:23Z" + } + ] + } + }, + { + "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", + "properties": { + "accountName": "grem-test", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-06T19:09:58Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", + "creationTime": "2023-03-06T19:09:59Z" + } + ] + } + }, + { + "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", + "properties": { + "accountName": "mongo-test-1", + "apiType": "MongoDB", + "creationTime": "2023-03-06T19:26:33Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", + "creationTime": "2023-03-06T19:26:34Z" + } + ] + } + }, + { + "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", + "properties": { + "accountName": "sql-test-1", + "apiType": "Sql", + "creationTime": "2023-03-06T19:26:23Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", + "creationTime": "2023-03-06T19:26:24Z" + } + ] + } + }, + { + "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "properties": { + "accountName": "tables-test-1", + "apiType": "Table, Sql", + "creationTime": "2023-03-06T19:30:24Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", + "creationTime": "2023-03-06T19:30:25Z" + } + ] + } + }, + { + "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "properties": { + "accountName": "cosmosdb-1232", + "apiType": "Sql", + "creationTime": "2023-03-28T14:32:50Z", + "oldestRestorableTime": "2023-03-28T14:32:50Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", + "creationTime": "2023-03-28T14:32:51Z" + } + ] + } + }, + { + "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:53:31Z", + "oldestRestorableTime": "2023-03-28T14:53:31Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", + "creationTime": "2023-03-28T14:53:32Z" + } + ] + } + }, + { + "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "properties": { + "accountName": "dsapaliga-xrr-test", + "apiType": "Sql", + "creationTime": "2023-03-30T04:00:57Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", + "creationTime": "2023-03-30T04:00:58Z" + } + ] + } + }, + { + "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "properties": { + "accountName": "dsapaliga-xrr-cli2", + "apiType": "Sql", + "creationTime": "2023-03-30T04:23:35Z", + "oldestRestorableTime": "2023-04-13T17:39:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", + "creationTime": "2023-03-30T04:23:36Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", + "creationTime": "2023-03-30T04:25:59Z" + } + ] + } + }, + { + "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "properties": { + "accountName": "r-grem-db-account-938", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:55Z", + "oldestRestorableTime": "2023-04-05T19:15:55Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", + "creationTime": "2023-04-05T19:15:56Z" + } + ] + } + }, + { + "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", + "properties": { + "accountName": "r-table-account-9379", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:45:49Z", + "oldestRestorableTime": "2023-04-06T01:45:49Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", + "creationTime": "2023-04-06T01:45:51Z" + } + ] + } + }, + { + "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", + "properties": { + "accountName": "restoredaccount-5362", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:03:48Z", + "oldestRestorableTime": "2023-04-06T02:03:48Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", + "creationTime": "2023-04-06T02:03:48Z" + } + ] + } + }, + { + "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", + "properties": { + "accountName": "r-table-account-5626", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:12:24Z", + "oldestRestorableTime": "2023-04-06T02:12:24Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", + "creationTime": "2023-04-06T02:12:25Z" + } + ] + } + }, + { + "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", + "properties": { + "accountName": "r-table-account-1300", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:23:30Z", + "oldestRestorableTime": "2023-04-06T06:23:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", + "creationTime": "2023-04-06T06:23:31Z" + } + ] + } + }, + { + "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "properties": { + "accountName": "restoredaccount-9934", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:40:38Z", + "oldestRestorableTime": "2023-04-06T06:40:38Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", + "creationTime": "2023-04-06T06:40:38Z" + } + ] + } + }, + { + "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", + "properties": { + "accountName": "cli3grog6psgdfn", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T17:59:19Z", + "oldestRestorableTime": "2023-04-06T17:59:19Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", + "creationTime": "2023-04-06T17:59:20Z" + } + ] + } + }, + { + "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "properties": { + "accountName": "clil3ignfqgk6kz", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:02:42Z", + "oldestRestorableTime": "2023-04-06T18:02:42Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", + "creationTime": "2023-04-06T18:02:43Z" + } + ] + } + }, + { + "name": "4656b731-172b-4064-8514-f327e6841751", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", + "properties": { + "accountName": "cliysii3c7g3auw", + "apiType": "Sql", + "creationTime": "2023-04-06T18:00:38Z", + "oldestRestorableTime": "2023-04-06T18:00:38Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", + "creationTime": "2023-04-06T18:00:39Z" + } + ] + } + }, + { + "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", + "properties": { + "accountName": "clihhqescxfepto", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:03:34Z", + "oldestRestorableTime": "2023-04-06T18:03:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", + "creationTime": "2023-04-06T18:03:35Z" + } + ] + } + }, + { + "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "properties": { + "accountName": "clib27b72hyhtjp", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:02Z", + "oldestRestorableTime": "2023-04-06T18:02:02Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", + "creationTime": "2023-04-06T18:02:03Z" + } + ] + } + }, + { + "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "properties": { + "accountName": "clio3vmbb3n7afz", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:07:13Z", + "oldestRestorableTime": "2023-04-06T18:07:13Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", + "creationTime": "2023-04-06T18:07:14Z" + } + ] + } + }, + { + "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "properties": { + "accountName": "cliuoo2ldjhxpwj", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:04:25Z", + "oldestRestorableTime": "2023-04-06T18:04:25Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", + "creationTime": "2023-04-06T18:04:26Z" + } + ] + } + }, + { + "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", + "properties": { + "accountName": "clizy6bsjdyjuwo", + "apiType": "Sql", + "creationTime": "2023-04-06T18:03:13Z", + "oldestRestorableTime": "2023-04-06T18:03:13Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", + "creationTime": "2023-04-06T18:03:14Z" + } + ] + } + }, + { + "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "properties": { + "accountName": "clizcfq53tcsj7v", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:04:50Z", + "oldestRestorableTime": "2023-04-06T18:04:50Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", + "creationTime": "2023-04-06T18:04:52Z" + } + ] + } + }, + { + "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", + "properties": { + "accountName": "cli2gdxmqiqo4ik", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:58Z", + "oldestRestorableTime": "2023-04-06T18:02:58Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", + "creationTime": "2023-04-06T18:02:58Z" + } + ] + } + }, + { + "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", + "properties": { + "accountName": "cligsqzmjlnuq5j", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:06:34Z", + "oldestRestorableTime": "2023-04-06T18:06:34Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", + "creationTime": "2023-04-06T18:06:35Z" + } + ] + } + }, + { + "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "properties": { + "accountName": "r-grem-db-account-7826", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:27:30Z", + "oldestRestorableTime": "2023-04-06T18:27:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", + "creationTime": "2023-04-06T18:27:31Z" + } + ] + } + }, + { + "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", + "properties": { + "accountName": "cliec3z5o2473ut", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:31:12Z", + "oldestRestorableTime": "2023-04-06T18:31:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", + "creationTime": "2023-04-06T18:31:13Z" + } + ] + } + }, + { + "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", + "properties": { + "accountName": "clinrylxz344nf3", + "apiType": "Sql", + "creationTime": "2023-04-06T18:29:44Z", + "oldestRestorableTime": "2023-04-06T18:29:44Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", + "creationTime": "2023-04-06T18:29:45Z" + } + ] + } + }, + { + "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", + "properties": { + "accountName": "clilaesevwusylf", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:34:21Z", + "oldestRestorableTime": "2023-04-06T18:34:21Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", + "creationTime": "2023-04-06T18:34:23Z" + } + ] + } + }, + { + "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "properties": { + "accountName": "cli7p3qq5cporx7", + "apiType": "Sql", + "creationTime": "2023-04-06T18:29:35Z", + "oldestRestorableTime": "2023-04-06T18:29:35Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", + "creationTime": "2023-04-06T18:29:36Z" + } + ] + } + }, + { + "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", + "properties": { + "accountName": "clij75qd5uyobmj", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:31:13Z", + "oldestRestorableTime": "2023-04-06T18:31:13Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", + "creationTime": "2023-04-06T18:31:14Z" + } + ] + } + }, + { + "name": "8a7d6175-2174-495f-9147-ade59959d7a1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", + "properties": { + "accountName": "r-grem-db-account-5687", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:34:51Z", + "oldestRestorableTime": "2023-04-06T18:34:51Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", + "creationTime": "2023-04-06T18:34:52Z" + } + ] + } + }, + { + "name": "91df614a-d17c-4510-8727-354fe0d1447d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", + "properties": { + "accountName": "clivh5sbv5jm2tn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:55Z", + "oldestRestorableTime": "2023-04-06T18:35:55Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", + "creationTime": "2023-04-06T18:35:56Z" + } + ] + } + }, + { + "name": "073071e8-3f6e-4510-9175-440346e61824", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", + "properties": { + "accountName": "clipmrcd5m37yeh", + "apiType": "Sql", + "creationTime": "2023-04-06T18:34:27Z", + "oldestRestorableTime": "2023-04-06T18:34:27Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", + "creationTime": "2023-04-06T18:34:28Z" + } + ] + } + }, + { + "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", + "properties": { + "accountName": "clieik2we2gw5zk", + "apiType": "Sql", + "creationTime": "2023-04-06T18:34:28Z", + "oldestRestorableTime": "2023-04-06T18:34:28Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", + "creationTime": "2023-04-06T18:34:29Z" + } + ] + } + }, + { + "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", + "properties": { + "accountName": "cli24p5gxxip4wp", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:36:07Z", + "oldestRestorableTime": "2023-04-06T18:36:07Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", + "creationTime": "2023-04-06T18:36:08Z" + } + ] + } + }, + { + "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "properties": { + "accountName": "cli4nd5tsapqcn4", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:38:50Z", + "oldestRestorableTime": "2023-04-06T18:38:50Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", + "creationTime": "2023-04-06T18:38:51Z" + } + ] + } + }, + { + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "properties": { + "accountName": "r-database-account-7671", + "apiType": "Sql", + "creationTime": "2023-04-20T15:44:05Z", + "oldestRestorableTime": "2023-04-20T15:44:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "oldestRestorableTime": "2023-04-20T15:57:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z" + } + ] + } + }, + { + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "properties": { + "accountName": "mks-cli-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-20T16:21:22Z", + "oldestRestorableTime": "2023-04-20T16:21:22Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z" + } + ] + } + }, + { + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "properties": { + "accountName": "mks-ps-pna-disable", + "apiType": "Sql", + "creationTime": "2023-04-20T17:07:14Z", + "oldestRestorableTime": "2023-04-20T17:07:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z" + } + ] + } + }, + { + "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "properties": { + "accountName": "r-database-account-4892", + "apiType": "Sql", + "creationTime": "2023-03-23T10:54:16Z", + "deletionTime": "2023-03-23T10:54:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", + "creationTime": "2023-03-23T10:54:17Z", + "deletionTime": "2023-03-23T10:54:57Z" + } + ] + } + }, + { + "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "properties": { + "accountName": "r-database-account-6730", + "apiType": "Sql", + "creationTime": "2023-03-23T11:05:04Z", + "deletionTime": "2023-03-23T11:06:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", + "creationTime": "2023-03-23T11:05:05Z", + "deletionTime": "2023-03-23T11:06:25Z" + } + ] + } + }, + { + "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "properties": { + "accountName": "dbaccount-6688", + "apiType": "Sql", + "creationTime": "2023-03-23T11:16:07Z", + "deletionTime": "2023-03-23T11:20:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", + "creationTime": "2023-03-23T11:16:08Z", + "deletionTime": "2023-03-23T11:20:59Z" + } + ] + } + }, + { + "name": "0768f3f1-b168-46b8-bdd2-671139a55152", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", + "properties": { + "accountName": "dbaccount-1880", + "apiType": "Sql", + "creationTime": "2023-03-23T11:22:51Z", + "deletionTime": "2023-03-23T11:26:46Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", + "creationTime": "2023-03-23T11:22:52Z", + "deletionTime": "2023-03-23T11:26:46Z" + } + ] + } + }, + { + "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z" + } + ] + } + }, + { + "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-23T21:16:33Z", + "deletionTime": "2023-03-23T21:20:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", + "creationTime": "2023-03-23T21:16:34Z", + "deletionTime": "2023-03-23T21:20:17Z" + } + ] + } + }, + { + "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T16:01:08Z", + "deletionTime": "2023-03-24T16:04:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", + "creationTime": "2023-03-24T16:01:09Z", + "deletionTime": "2023-03-24T16:04:52Z" + } + ] + } + }, + { + "name": "151f9fea-5280-4201-8e95-0ea414c89379", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T16:18:09Z", + "deletionTime": "2023-03-24T16:21:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", + "creationTime": "2023-03-24T16:18:10Z", + "deletionTime": "2023-03-24T16:21:49Z" + } + ] + } + }, + { + "name": "edbde762-f533-4cc9-886a-a2196e203b19", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T17:00:54Z", + "deletionTime": "2023-03-24T17:03:11Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", + "creationTime": "2023-03-24T17:00:55Z", + "deletionTime": "2023-03-24T17:03:11Z" + } + ] + } + }, + { + "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z" + } + ] + } + }, + { + "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", + "properties": { + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-24T18:51:09Z", + "deletionTime": "2023-03-24T18:51:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", + "creationTime": "2023-03-24T18:51:10Z", + "deletionTime": "2023-03-24T18:51:31Z" + } + ] + } + }, + { + "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "properties": { + "accountName": "cosmosdb-1216", + "apiType": "Sql", + "creationTime": "2023-03-24T19:00:50Z", + "deletionTime": "2023-03-24T19:15:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", + "creationTime": "2023-03-24T19:00:51Z", + "deletionTime": "2023-03-24T19:15:40Z" + } + ] + } + }, + { + "name": "219254b8-6f3a-466e-b360-95f262bfe51e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", + "properties": { + "accountName": "cosmosdb-1217", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:09Z", + "deletionTime": "2023-03-24T19:20:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", + "creationTime": "2023-03-24T19:18:10Z", + "deletionTime": "2023-03-24T19:20:56Z" + } + ] + } + }, + { + "name": "e888bd61-957a-4028-af47-b834b0a267ab", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-24T19:34:54Z", + "deletionTime": "2023-03-24T19:50:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", + "creationTime": "2023-03-24T19:34:55Z", + "deletionTime": "2023-03-24T19:50:50Z" + } + ] + } + }, + { + "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "properties": { + "accountName": "restored2-cosmosdb-1210-5", + "apiType": "Sql", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z" + } + ] + } + }, + { + "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-24T20:32:49Z", + "deletionTime": "2023-03-24T20:50:46Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", + "creationTime": "2023-03-24T20:32:50Z", + "deletionTime": "2023-03-24T20:50:46Z" + } + ] + } + }, + { + "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-25T16:11:27Z", + "deletionTime": "2023-03-25T16:23:23Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", + "creationTime": "2023-03-25T16:11:28Z", + "deletionTime": "2023-03-25T16:23:23Z" + } + ] + } + }, + { + "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z" + } + ] + } + }, + { + "name": "2533e0b0-a675-441d-9b41-147c66cb8834", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-26T16:03:42Z", + "deletionTime": "2023-03-26T16:15:36Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", + "creationTime": "2023-03-26T16:03:43Z", + "deletionTime": "2023-03-26T16:15:36Z" + } + ] + } + }, + { + "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-27T03:23:23Z", + "deletionTime": "2023-03-27T03:41:45Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", + "creationTime": "2023-03-27T03:23:24Z", + "deletionTime": "2023-03-27T03:41:45Z" + } + ] + } + }, + { + "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", + "properties": { + "accountName": "grem-test-72", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z" + } + ] + } + }, + { + "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T02:19:03Z", + "deletionTime": "2023-03-28T02:22:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", + "creationTime": "2023-03-28T02:19:04Z", + "deletionTime": "2023-03-28T02:22:53Z" + } + ] + } + }, + { + "name": "a9481019-401b-431b-b5f7-440ec8798dfd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T03:39:15Z", + "deletionTime": "2023-03-28T03:42:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", + "creationTime": "2023-03-28T03:39:16Z", + "deletionTime": "2023-03-28T03:42:12Z" + } + ] + } + }, + { + "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T13:58:50Z", + "deletionTime": "2023-03-28T13:59:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", + "creationTime": "2023-03-28T13:58:51Z", + "deletionTime": "2023-03-28T13:59:37Z" + } + ] + } + }, + { + "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "properties": { + "accountName": "cosmosdb-1232", + "apiType": "Sql", + "creationTime": "2023-03-28T14:10:51Z", + "deletionTime": "2023-03-28T14:13:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", + "creationTime": "2023-03-28T14:10:52Z", + "deletionTime": "2023-03-28T14:13:58Z" + } + ] + } + }, + { + "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", + "properties": { + "accountName": "cosmosdb-1233", + "apiType": "Sql", + "creationTime": "2023-03-28T14:25:17Z", + "deletionTime": "2023-03-28T14:28:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", + "creationTime": "2023-03-28T14:25:18Z", + "deletionTime": "2023-03-28T14:28:04Z" + } + ] + } + }, + { + "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "properties": { + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:35:15Z", + "deletionTime": "2023-03-28T14:39:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", + "creationTime": "2023-03-28T14:35:16Z", + "deletionTime": "2023-03-28T14:39:43Z" + } + ] + } + }, + { + "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "properties": { + "accountName": "cosmosdb-1234", + "apiType": "Sql", + "creationTime": "2023-03-28T14:54:34Z", + "deletionTime": "2023-03-28T14:58:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", + "creationTime": "2023-03-28T14:54:35Z", + "deletionTime": "2023-03-28T14:58:59Z" + } + ] + } + }, + { + "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "properties": { + "accountName": "cosmosdb-12103", + "apiType": "Sql", + "creationTime": "2023-03-28T15:09:04Z", + "deletionTime": "2023-03-28T15:27:39Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", + "creationTime": "2023-03-28T15:09:05Z", + "deletionTime": "2023-03-28T15:27:39Z" + } + ] + } + }, + { + "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "properties": { + "accountName": "restored2-cosmosdb-12103-3", + "apiType": "Sql", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z" + } + ] + } + }, + { + "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", + "properties": { + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", + "creationTime": "2023-03-28T15:34:43Z", + "deletionTime": "2023-03-28T15:39:16Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z" + } + ] + } + }, + { + "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "properties": { + "accountName": "r-database-account-9490", + "apiType": "Sql", + "creationTime": "2023-03-28T22:16:00Z", + "deletionTime": "2023-03-28T22:16:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", + "creationTime": "2023-03-28T22:16:01Z", + "deletionTime": "2023-03-28T22:16:48Z" + } + ] + } + }, + { + "name": "03ad66ba-329b-42a9-a663-7175c237d696", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", + "properties": { + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T01:52:39Z", + "deletionTime": "2023-03-29T01:53:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", + "creationTime": "2023-03-29T01:52:40Z", + "deletionTime": "2023-03-29T01:53:32Z" + } + ] + } + }, + { + "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "properties": { + "accountName": "r-database-account-8615", + "apiType": "Sql", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z" + } + ] + } + }, + { + "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", + "properties": { + "accountName": "r-database-account-6456", + "apiType": "Sql", + "creationTime": "2023-03-29T02:33:02Z", + "deletionTime": "2023-03-29T02:34:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", + "creationTime": "2023-03-29T02:33:03Z", + "deletionTime": "2023-03-29T02:34:43Z" + } + ] + } + }, + { + "name": "835d93a1-22dd-478a-b58d-426efe281471", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", + "properties": { + "accountName": "r-database-account-4855", + "apiType": "Sql", + "creationTime": "2023-03-29T02:47:00Z", + "deletionTime": "2023-03-29T02:49:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", + "creationTime": "2023-03-29T02:47:01Z", + "deletionTime": "2023-03-29T02:49:00Z" + } + ] + } + }, + { + "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "properties": { + "accountName": "r-database-account-84", + "apiType": "Sql", + "creationTime": "2023-03-29T03:26:20Z", + "deletionTime": "2023-03-29T03:28:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", + "creationTime": "2023-03-29T03:26:21Z", + "deletionTime": "2023-03-29T03:28:03Z" + } + ] + } + }, + { + "name": "745f1b21-405d-46bf-8788-0d661ffbb160", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", + "properties": { + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T03:40:43Z", + "deletionTime": "2023-03-29T03:42:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", + "creationTime": "2023-03-29T03:40:44Z", + "deletionTime": "2023-03-29T03:42:31Z" + } + ] + } + }, + { + "name": "454b0097-ad05-4177-9048-93cff3b23e4c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", + "properties": { + "accountName": "r-database-account-985", + "apiType": "Sql", + "creationTime": "2023-03-29T04:04:48Z", + "deletionTime": "2023-03-29T04:05:36Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", + "creationTime": "2023-03-29T04:04:49Z", + "deletionTime": "2023-03-29T04:05:36Z" + } + ] + } + }, + { + "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", + "properties": { + "accountName": "r-database-account-411", + "apiType": "Sql", + "creationTime": "2023-03-29T04:32:28Z", + "deletionTime": "2023-03-29T04:34:13Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", + "creationTime": "2023-03-29T04:32:29Z", + "deletionTime": "2023-03-29T04:34:13Z" + } + ] + } + }, + { + "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", + "properties": { + "accountName": "r-database-account-7460", + "apiType": "Sql", + "creationTime": "2023-03-29T04:59:34Z", + "deletionTime": "2023-03-29T05:01:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", + "creationTime": "2023-03-29T04:59:35Z", + "deletionTime": "2023-03-29T05:01:02Z" + } + ] + } + }, + { + "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "properties": { + "accountName": "r-database-account-6301", + "apiType": "Sql", + "creationTime": "2023-03-29T05:27:44Z", + "deletionTime": "2023-03-29T05:29:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", + "creationTime": "2023-03-29T05:27:45Z", + "deletionTime": "2023-03-29T05:29:32Z" + } + ] + } + }, + { + "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "properties": { + "accountName": "r-database-account-725", + "apiType": "Sql", + "creationTime": "2023-03-29T05:51:55Z", + "deletionTime": "2023-03-29T05:53:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", + "creationTime": "2023-03-29T05:51:56Z", + "deletionTime": "2023-03-29T05:53:14Z" + } + ] + } + }, + { + "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "properties": { + "accountName": "r-database-account-5868", + "apiType": "Sql", + "creationTime": "2023-03-29T06:07:55Z", + "deletionTime": "2023-03-29T06:10:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", + "creationTime": "2023-03-29T06:07:56Z", + "deletionTime": "2023-03-29T06:10:43Z" + } + ] + } + }, + { + "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "properties": { + "accountName": "r-database-account-6513", + "apiType": "Sql", + "creationTime": "2023-03-29T06:41:45Z", + "deletionTime": "2023-03-29T06:45:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", + "creationTime": "2023-03-29T06:41:46Z", + "deletionTime": "2023-03-29T06:45:18Z" + } + ] + } + }, + { + "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "properties": { + "accountName": "r-database-account-79", + "apiType": "Sql", + "creationTime": "2023-03-29T07:22:12Z", + "deletionTime": "2023-03-29T07:24:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", + "creationTime": "2023-03-29T07:22:13Z", + "deletionTime": "2023-03-29T07:24:10Z" + } + ] + } + }, + { + "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "properties": { + "accountName": "r-database-account-766", + "apiType": "Sql", + "creationTime": "2023-03-29T08:19:11Z", + "deletionTime": "2023-03-29T08:20:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", + "creationTime": "2023-03-29T08:19:12Z", + "deletionTime": "2023-03-29T08:20:09Z" + } + ] + } + }, + { + "name": "fa235396-6959-4dc1-932d-2ac66d318878", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", + "properties": { + "accountName": "r-database-account-9810", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:33:51Z", + "deletionTime": "2023-03-29T08:48:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", + "creationTime": "2023-03-29T08:33:53Z", + "deletionTime": "2023-03-29T08:48:10Z" + } + ] + } + }, + { + "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "properties": { + "accountName": "r-database-account-6103", + "apiType": "Sql", + "creationTime": "2023-03-29T09:01:29Z", + "deletionTime": "2023-03-29T09:13:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", + "creationTime": "2023-03-29T09:01:30Z", + "deletionTime": "2023-03-29T09:13:42Z" + } + ] + } + }, + { + "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "properties": { + "accountName": "r-database-account-8066", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:28:36Z", + "deletionTime": "2023-03-29T09:44:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", + "creationTime": "2023-03-29T09:28:37Z", + "deletionTime": "2023-03-29T09:44:31Z" + } + ] + } + }, + { + "name": "ddab1ead-237f-448e-8291-995fddb1ae74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", + "properties": { + "accountName": "r-database-account-7977", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T10:01:55Z", + "deletionTime": "2023-03-29T10:03:30Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", + "creationTime": "2023-03-29T10:01:56Z", + "deletionTime": "2023-03-29T10:03:30Z" + } + ] + } + }, + { + "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "properties": { + "accountName": "r-database-account-116", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T10:20:03Z", + "deletionTime": "2023-03-29T10:21:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", + "creationTime": "2023-03-29T10:20:04Z", + "deletionTime": "2023-03-29T10:21:16Z" + } + ] + } + }, + { + "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", + "properties": { + "accountName": "restoredaccount-7426", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z" + } + ] + } + }, + { + "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "properties": { + "accountName": "r-database-account-9884", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:16:22Z", + "deletionTime": "2023-03-29T10:33:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", + "creationTime": "2023-03-29T08:16:23Z", + "deletionTime": "2023-03-29T10:33:43Z" + } + ] + } + }, + { + "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", + "properties": { + "accountName": "r-database-account-2379", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:28:35Z", + "deletionTime": "2023-03-29T16:44:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", + "creationTime": "2023-03-29T16:28:36Z", + "deletionTime": "2023-03-29T16:44:35Z" + } + ] + } + }, + { + "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", + "properties": { + "accountName": "r-database-account-3992", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T16:22:41Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", + "creationTime": "2023-03-29T16:22:42Z", + "deletionTime": "2023-03-29T16:57:31Z" + } + ] + } + }, + { + "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "properties": { + "accountName": "restoredaccount-232", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z" + } + ] + } + }, + { + "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", + "properties": { + "accountName": "r-database-account-1794", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:14:16Z", + "deletionTime": "2023-03-29T17:15:46Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", + "creationTime": "2023-03-29T17:14:17Z", + "deletionTime": "2023-03-29T17:15:46Z" + } + ] + } + }, + { + "name": "8940962c-1866-49f7-871f-38869cce24f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", + "properties": { + "accountName": "r-database-account-7040", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T17:32:14Z", + "deletionTime": "2023-03-29T17:33:38Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", + "creationTime": "2023-03-29T17:32:15Z", + "deletionTime": "2023-03-29T17:33:38Z" + } + ] + } + }, + { + "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "properties": { + "accountName": "r-database-account-959", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:41:56Z", + "deletionTime": "2023-03-29T17:42:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", + "creationTime": "2023-03-29T17:41:58Z", + "deletionTime": "2023-03-29T17:42:37Z" + } + ] + } + }, + { + "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "properties": { + "accountName": "r-database-account-8612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:51:17Z", + "deletionTime": "2023-03-29T18:07:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", + "creationTime": "2023-03-29T17:51:18Z", + "deletionTime": "2023-03-29T18:07:55Z" + } + ] + } + }, + { + "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", + "properties": { + "accountName": "r-database-account-640", + "apiType": "Sql", + "creationTime": "2023-03-29T18:21:12Z", + "deletionTime": "2023-03-29T18:37:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", + "creationTime": "2023-03-29T18:21:13Z", + "deletionTime": "2023-03-29T18:37:25Z" + } + ] + } + }, + { + "name": "ebcdc313-e068-4539-bfc9-63238422f44d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", + "properties": { + "accountName": "r-database-account-6103", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:45:36Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", + "creationTime": "2023-03-29T17:45:37Z", + "deletionTime": "2023-03-29T18:49:19Z" + } + ] + } + }, + { + "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "properties": { + "accountName": "restoredaccount-9093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z" + } + ] + } + }, + { + "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "properties": { + "accountName": "restoredaccount-5464", + "apiType": "Sql", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z" + } + ] + } + }, + { + "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", + "properties": { + "accountName": "r-database-account-582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:55:11Z", + "deletionTime": "2023-03-29T18:56:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", + "creationTime": "2023-03-29T18:55:12Z", + "deletionTime": "2023-03-29T18:56:12Z" + } + ] + } + }, + { + "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "properties": { + "accountName": "r-database-account-7109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:11:47Z", + "deletionTime": "2023-03-29T19:13:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", + "creationTime": "2023-03-29T19:11:48Z", + "deletionTime": "2023-03-29T19:13:28Z" + } + ] + } + }, + { + "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", + "properties": { + "accountName": "r-database-account-1862", + "apiType": "Sql", + "creationTime": "2023-03-29T19:27:17Z", + "deletionTime": "2023-03-29T19:28:11Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", + "creationTime": "2023-03-29T19:27:18Z", + "deletionTime": "2023-03-29T19:28:11Z" + } + ] + } + }, + { + "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", + "properties": { + "accountName": "r-database-account-669", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:41:10Z", + "deletionTime": "2023-03-29T19:42:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", + "creationTime": "2023-03-29T19:41:11Z", + "deletionTime": "2023-03-29T19:42:32Z" + } + ] + } + }, + { + "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", + "properties": { + "accountName": "r-database-account-8361", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T19:57:31Z", + "deletionTime": "2023-03-29T19:58:15Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", + "creationTime": "2023-03-29T19:57:32Z", + "deletionTime": "2023-03-29T19:58:15Z" + } + ] + } + }, + { + "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", + "properties": { + "accountName": "r-database-account-9", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:12:42Z", + "deletionTime": "2023-03-29T20:28:47Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", + "creationTime": "2023-03-29T20:12:43Z", + "deletionTime": "2023-03-29T20:28:47Z" + } + ] + } + }, + { + "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "properties": { + "accountName": "r-database-account-7334", + "apiType": "Sql", + "creationTime": "2023-03-29T20:42:13Z", + "deletionTime": "2023-03-29T20:44:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", + "creationTime": "2023-03-29T20:42:14Z", + "deletionTime": "2023-03-29T20:44:52Z" + } + ] + } + }, + { + "name": "9513098d-df71-4d21-8d95-2fd12d55402e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", + "properties": { + "accountName": "r-database-account-4820", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:00:04Z", + "deletionTime": "2023-03-29T21:16:44Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", + "creationTime": "2023-03-29T21:00:05Z", + "deletionTime": "2023-03-29T21:16:44Z" + } + ] + } + }, + { + "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "properties": { + "accountName": "r-database-account-2346", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z" + } + ] + } + }, + { + "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", + "properties": { + "accountName": "restoredaccount-4730", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z" + } + ] + } + }, + { + "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "properties": { + "accountName": "restoredaccount-1173", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z" + } + ] + } + }, + { + "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", + "properties": { + "accountName": "r-database-account-3981", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T21:50:14Z", + "deletionTime": "2023-03-29T21:52:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", + "creationTime": "2023-03-29T21:50:15Z", + "deletionTime": "2023-03-29T21:52:00Z" + } + ] + } + }, + { + "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "properties": { + "accountName": "r-database-account-6608", + "apiType": "Sql", + "creationTime": "2023-03-29T22:05:54Z", + "deletionTime": "2023-03-29T22:06:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", + "creationTime": "2023-03-29T22:05:55Z", + "deletionTime": "2023-03-29T22:06:58Z" + } + ] + } + }, + { + "name": "d003df48-a9ea-4212-a771-0c539141cd9d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", + "properties": { + "accountName": "r-database-account-9561", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:19:29Z", + "deletionTime": "2023-03-29T22:20:23Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", + "creationTime": "2023-03-29T22:19:30Z", + "deletionTime": "2023-03-29T22:20:23Z" + } + ] + } + }, + { + "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", + "properties": { + "accountName": "r-database-account-1309", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T22:36:33Z", + "deletionTime": "2023-03-29T22:37:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", + "creationTime": "2023-03-29T22:36:35Z", + "deletionTime": "2023-03-29T22:37:50Z" + } + ] + } + }, + { + "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "properties": { + "accountName": "dsapaliga-restore-test5", + "apiType": "Sql", + "creationTime": "2023-03-29T21:59:36Z", + "deletionTime": "2023-03-29T22:56:12Z", + "oldestRestorableTime": "2023-03-22T22:56:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", + "creationTime": "2023-03-29T21:59:38Z", + "deletionTime": "2023-03-29T22:56:12Z" + } + ] + } + }, + { + "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", + "properties": { + "accountName": "dsapaliga-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z", + "oldestRestorableTime": "2023-03-22T22:56:35Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z" + } + ] + } + }, + { + "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "properties": { + "accountName": "dsapaliga-test-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z", + "oldestRestorableTime": "2023-03-22T22:57:04Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z" + } + ] + } + }, + { + "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "properties": { + "accountName": "dsapaliga-restore-test", + "apiType": "Sql", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z", + "oldestRestorableTime": "2023-03-22T22:57:42Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", + "creationTime": "2023-03-29T19:42:26Z", + "deletionTime": "2023-03-29T22:57:42Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z" + } + ] + } + }, + { + "name": "52581e9f-9743-4007-9041-e15df28ce4ee", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", + "properties": { + "accountName": "r-database-account-1604", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:51:34Z", + "deletionTime": "2023-03-29T23:07:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", + "creationTime": "2023-03-29T22:51:35Z", + "deletionTime": "2023-03-29T23:07:58Z" + } + ] + } + }, + { + "name": "9ab892fe-ad41-4e51-a646-530c226c8772", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", + "properties": { + "accountName": "r-database-account-39", + "apiType": "Sql", + "creationTime": "2023-03-29T23:21:19Z", + "deletionTime": "2023-03-29T23:37:29Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", + "creationTime": "2023-03-29T23:21:20Z", + "deletionTime": "2023-03-29T23:37:29Z" + } + ] + } + }, + { + "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "properties": { + "accountName": "r-database-account-6553", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T23:52:19Z", + "deletionTime": "2023-03-29T23:54:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", + "creationTime": "2023-03-29T23:52:20Z", + "deletionTime": "2023-03-29T23:54:50Z" + } + ] + } + }, + { + "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", + "properties": { + "accountName": "r-database-account-8730", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T00:45:13Z", + "deletionTime": "2023-03-30T00:49:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", + "creationTime": "2023-03-30T00:45:15Z", + "deletionTime": "2023-03-30T00:49:42Z" + } + ] + } + }, + { + "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "properties": { + "accountName": "r-database-account-2459", + "apiType": "Sql", + "creationTime": "2023-03-30T01:04:05Z", + "deletionTime": "2023-03-30T01:06:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", + "creationTime": "2023-03-30T01:04:06Z", + "deletionTime": "2023-03-30T01:06:50Z" + } + ] + } + }, + { + "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "properties": { + "accountName": "r-database-account-2957", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T01:23:37Z", + "deletionTime": "2023-03-30T01:26:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", + "creationTime": "2023-03-30T01:23:39Z", + "deletionTime": "2023-03-30T01:26:18Z" + } + ] + } + }, + { + "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "properties": { + "accountName": "r-database-account-6086", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T01:44:49Z", + "deletionTime": "2023-03-30T01:54:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", + "creationTime": "2023-03-30T01:44:50Z", + "deletionTime": "2023-03-30T01:54:03Z" + } + ] + } + }, + { + "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", + "properties": { + "accountName": "r-database-account-9503", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T02:14:47Z", + "deletionTime": "2023-03-30T02:19:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", + "creationTime": "2023-03-30T02:14:48Z", + "deletionTime": "2023-03-30T02:19:28Z" + } + ] + } + }, + { + "name": "a717fb23-baed-4b80-ab44-bedcce157333", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", + "properties": { + "accountName": "r-database-account-255", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T02:41:09Z", + "deletionTime": "2023-03-30T02:50:27Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", + "creationTime": "2023-03-30T02:41:10Z", + "deletionTime": "2023-03-30T02:50:27Z" + } + ] + } + }, + { + "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "properties": { + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-30T03:16:29Z", + "deletionTime": "2023-03-30T03:24:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", + "creationTime": "2023-03-30T03:18:49Z", + "deletionTime": "2023-03-30T03:24:26Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", + "creationTime": "2023-03-30T03:16:30Z", + "deletionTime": "2023-03-30T03:24:26Z" + } + ] + } + }, + { + "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "properties": { + "accountName": "r-database-account-7398", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T03:22:44Z", + "deletionTime": "2023-03-30T03:24:34Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", + "creationTime": "2023-03-30T03:22:45Z", + "deletionTime": "2023-03-30T03:24:34Z" + } + ] + } + }, + { + "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "properties": { + "accountName": "r-database-account-2003", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T03:40:25Z", + "deletionTime": "2023-03-30T03:41:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", + "creationTime": "2023-03-30T03:40:26Z", + "deletionTime": "2023-03-30T03:41:26Z" + } + ] + } + }, + { + "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "properties": { + "accountName": "dsapaliga-rcg-migrationtest", + "apiType": "Sql", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z", + "oldestRestorableTime": "2023-03-23T03:56:45Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z" + } + ] + } + }, + { + "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", + "properties": { + "accountName": "r-database-account-3308", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T03:55:54Z", + "deletionTime": "2023-03-30T03:56:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", + "creationTime": "2023-03-30T03:55:55Z", + "deletionTime": "2023-03-30T03:56:52Z" + } + ] + } + }, + { + "name": "daf00acd-625e-4dcd-8453-247b297129a3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", + "properties": { + "accountName": "dsapaliga-restored-cli-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z", + "oldestRestorableTime": "2023-03-23T03:57:10Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z" + } + ] + } + }, + { + "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", + "properties": { + "accountName": "dsapaliga-xrr-cli", + "apiType": "Sql", + "creationTime": "2023-03-29T23:10:13Z", + "deletionTime": "2023-03-30T03:57:17Z", + "oldestRestorableTime": "2023-03-23T03:57:17Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", + "creationTime": "2023-03-29T23:12:40Z", + "deletionTime": "2023-03-30T03:57:17Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", + "creationTime": "2023-03-29T23:10:14Z", + "deletionTime": "2023-03-30T03:57:17Z" + } + ] + } + }, + { + "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", + "properties": { + "accountName": "dsapaliga-xrr-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z", + "oldestRestorableTime": "2023-03-23T03:57:27Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z" + } + ] + } + }, + { + "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", + "properties": { + "accountName": "dsapaliga-xrr-restored-eastus2rg", + "apiType": "Sql", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z", + "oldestRestorableTime": "2023-03-23T03:57:36Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z" + } + ] + } + }, + { + "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "properties": { + "accountName": "dsapaliga-xrr-restorefix", + "apiType": "Sql", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z", + "oldestRestorableTime": "2023-03-23T04:15:46Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", + "creationTime": "2023-03-30T03:51:46Z", + "deletionTime": "2023-03-30T04:15:46Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z" + } + ] + } + }, + { + "name": "2896560d-7c61-44b5-95a3-2e325d44b464", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", + "properties": { + "accountName": "dsapaliga-xrr", + "apiType": "Sql", + "creationTime": "2023-03-29T23:01:28Z", + "deletionTime": "2023-03-30T04:16:00Z", + "oldestRestorableTime": "2023-03-23T04:16:00Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", + "creationTime": "2023-03-29T23:11:33Z", + "deletionTime": "2023-03-30T04:16:00Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", + "creationTime": "2023-03-29T23:01:29Z", + "deletionTime": "2023-03-30T04:16:00Z" + } + ] + } + }, + { + "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", + "properties": { + "accountName": "r-database-account-9362", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:14:52Z", + "deletionTime": "2023-03-30T04:33:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", + "creationTime": "2023-03-30T04:14:53Z", + "deletionTime": "2023-03-30T04:33:19Z" + } + ] + } + }, + { + "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", + "properties": { + "accountName": "r-database-account-7026", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T04:49:23Z", + "deletionTime": "2023-03-30T05:05:15Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", + "creationTime": "2023-03-30T04:49:24Z", + "deletionTime": "2023-03-30T05:05:15Z" + } + ] + } + }, + { + "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", + "properties": { + "accountName": "r-database-account-8518", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:21:59Z", + "deletionTime": "2023-03-30T05:23:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", + "creationTime": "2023-03-30T05:22:00Z", + "deletionTime": "2023-03-30T05:23:37Z" + } + ] + } + }, + { + "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "properties": { + "accountName": "restoredaccount-8613", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z" + } + ] + } + }, + { + "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "properties": { + "accountName": "restoredaccount-4321", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z" + } + ] + } + }, + { + "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "properties": { + "accountName": "r-database-account-9910", + "apiType": "Sql", + "creationTime": "2023-03-30T05:44:40Z", + "deletionTime": "2023-03-30T06:00:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", + "creationTime": "2023-03-30T05:44:41Z", + "deletionTime": "2023-03-30T06:00:37Z" + } + ] + } + }, + { + "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "properties": { + "accountName": "r-database-account-8895", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T06:29:10Z", + "deletionTime": "2023-03-30T06:47:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", + "creationTime": "2023-03-30T06:29:12Z", + "deletionTime": "2023-03-30T06:47:25Z" + } + ] + } + }, + { + "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "properties": { + "accountName": "restoredaccount-6039", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z" + } + ] + } + }, + { + "name": "53b30478-fadc-4af9-bde8-663f3793b182", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", + "properties": { + "accountName": "r-database-account-6131", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T07:23:46Z", + "deletionTime": "2023-03-30T07:39:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", + "creationTime": "2023-03-30T07:23:47Z", + "deletionTime": "2023-03-30T07:39:31Z" + } + ] + } + }, + { + "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", + "properties": { + "accountName": "r-database-account-5579", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:00:42Z", + "deletionTime": "2023-03-30T08:02:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", + "creationTime": "2023-03-30T08:00:43Z", + "deletionTime": "2023-03-30T08:02:03Z" + } + ] + } + }, + { + "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", + "properties": { + "accountName": "r-database-account-6802", + "apiType": "Sql", + "creationTime": "2023-03-30T08:15:53Z", + "deletionTime": "2023-03-30T08:16:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", + "creationTime": "2023-03-30T08:15:54Z", + "deletionTime": "2023-03-30T08:16:49Z" + } + ] + } + }, + { + "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", + "properties": { + "accountName": "r-database-account-4928", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:29:55Z", + "deletionTime": "2023-03-30T08:30:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", + "creationTime": "2023-03-30T08:29:56Z", + "deletionTime": "2023-03-30T08:30:59Z" + } + ] + } + }, + { + "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", + "properties": { + "accountName": "r-database-account-9554", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T08:45:00Z", + "deletionTime": "2023-03-30T08:46:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", + "creationTime": "2023-03-30T08:45:01Z", + "deletionTime": "2023-03-30T08:46:14Z" + } + ] + } + }, + { + "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", + "properties": { + "accountName": "r-database-account-9311", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:00:35Z", + "deletionTime": "2023-03-30T09:16:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", + "creationTime": "2023-03-30T09:00:36Z", + "deletionTime": "2023-03-30T09:16:50Z" + } + ] + } + }, + { + "name": "521a5d65-de37-47be-88ca-ec32b564a261", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", + "properties": { + "accountName": "r-database-account-2240", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:32:58Z", + "deletionTime": "2023-03-30T09:51:38Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", + "creationTime": "2023-03-30T09:32:59Z", + "deletionTime": "2023-03-30T09:51:38Z" + } + ] + } + }, + { + "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", + "properties": { + "accountName": "r-database-account-1851", + "apiType": "Sql", + "creationTime": "2023-03-30T10:05:27Z", + "deletionTime": "2023-03-30T10:21:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", + "creationTime": "2023-03-30T10:05:28Z", + "deletionTime": "2023-03-30T10:21:42Z" + } + ] + } + }, + { + "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", + "properties": { + "accountName": "r-database-account-5797", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T10:37:02Z", + "deletionTime": "2023-03-30T10:55:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", + "creationTime": "2023-03-30T10:37:04Z", + "deletionTime": "2023-03-30T10:55:19Z" + } + ] + } + }, + { + "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", + "properties": { + "accountName": "r-database-account-9560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:11:57Z", + "deletionTime": "2023-03-30T11:25:05Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", + "creationTime": "2023-03-30T11:11:58Z", + "deletionTime": "2023-03-30T11:25:05Z" + } + ] + } + }, + { + "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", + "properties": { + "accountName": "r-database-account-1767", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:41:56Z", + "deletionTime": "2023-03-30T11:43:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", + "creationTime": "2023-03-30T11:41:57Z", + "deletionTime": "2023-03-30T11:43:33Z" + } + ] + } + }, + { + "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "properties": { + "accountName": "restoredaccount-4001", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "properties": { + "accountName": "restoredaccount-7112", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "0370cb08-0af9-4438-b21f-405a5564b689", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", + "properties": { + "accountName": "restoredaccount-9834", + "apiType": "Sql", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "6c273b23-ae84-4945-b093-d57bca835c7c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", + "properties": { + "accountName": "restoredaccount-4009", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z" + } + ] + } + }, + { + "name": "17de7698-0393-4b12-ba51-99d12ba83904", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", + "properties": { + "accountName": "r-database-account-9743", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:00:07Z", + "deletionTime": "2023-03-30T12:01:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", + "creationTime": "2023-03-30T12:00:08Z", + "deletionTime": "2023-03-30T12:01:49Z" + } + ] + } + }, + { + "name": "987831cb-c610-4631-a650-0b6678c31649", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", + "properties": { + "accountName": "r-database-account-3771", + "apiType": "Sql", + "creationTime": "2023-03-30T12:15:11Z", + "deletionTime": "2023-03-30T12:15:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", + "creationTime": "2023-03-30T12:15:12Z", + "deletionTime": "2023-03-30T12:15:59Z" + } + ] + } + }, + { + "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", + "properties": { + "accountName": "r-database-account-3969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:29:18Z", + "deletionTime": "2023-03-30T12:30:13Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", + "creationTime": "2023-03-30T12:29:19Z", + "deletionTime": "2023-03-30T12:30:13Z" + } + ] + } + }, + { + "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", + "properties": { + "accountName": "r-database-account-7064", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T12:44:53Z", + "deletionTime": "2023-03-30T12:46:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", + "creationTime": "2023-03-30T12:44:54Z", + "deletionTime": "2023-03-30T12:46:04Z" + } + ] + } + }, + { + "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "properties": { + "accountName": "r-database-account-8980", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:00:40Z", + "deletionTime": "2023-03-30T13:17:11Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", + "creationTime": "2023-03-30T13:00:41Z", + "deletionTime": "2023-03-30T13:17:11Z" + } + ] + } + }, + { + "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "properties": { + "accountName": "r-database-account-2102", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:33:35Z", + "deletionTime": "2023-03-30T13:51:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", + "creationTime": "2023-03-30T13:33:36Z", + "deletionTime": "2023-03-30T13:51:57Z" + } + ] + } + }, + { + "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", + "properties": { + "accountName": "r-database-account-6294", + "apiType": "Sql", + "creationTime": "2023-03-30T14:05:48Z", + "deletionTime": "2023-03-30T14:21:29Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", + "creationTime": "2023-03-30T14:05:49Z", + "deletionTime": "2023-03-30T14:21:29Z" + } + ] + } + }, + { + "name": "86a5260e-5153-431d-8eab-af58b83494af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", + "properties": { + "accountName": "r-database-account-2370", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:35:58Z", + "deletionTime": "2023-03-30T14:54:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", + "creationTime": "2023-03-30T14:35:59Z", + "deletionTime": "2023-03-30T14:54:17Z" + } + ] + } + }, + { + "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "properties": { + "accountName": "r-database-account-3273", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:10:49Z", + "deletionTime": "2023-03-30T15:24:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", + "creationTime": "2023-03-30T15:10:50Z", + "deletionTime": "2023-03-30T15:24:06Z" + } + ] + } + }, + { + "name": "8246105a-a890-4491-9dd6-7292d01fea88", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", + "properties": { + "accountName": "r-database-account-3250", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:40:22Z", + "deletionTime": "2023-03-30T15:41:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", + "creationTime": "2023-03-30T15:40:23Z", + "deletionTime": "2023-03-30T15:41:57Z" + } + ] + } + }, + { + "name": "bbf50286-0d85-4979-9c86-63d10090b51a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", + "properties": { + "accountName": "restoredaccount-2722", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z" + } + ] + } + }, + { + "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", + "properties": { + "accountName": "restoredaccount-4323", + "apiType": "Sql", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z" + } + ] + } + }, + { + "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", + "properties": { + "accountName": "restoredaccount-2887", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z" + } + ] + } + }, + { + "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "properties": { + "accountName": "restoredaccount-3024", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z" + } + ] + } + }, + { + "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "properties": { + "accountName": "r-database-account-4043", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:31:27Z", + "deletionTime": "2023-03-30T16:47:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", + "creationTime": "2023-03-30T16:31:28Z", + "deletionTime": "2023-03-30T16:47:52Z" + } + ] + } + }, + { + "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "properties": { + "accountName": "restoredaccount-7511", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z" + } + ] + } + }, + { + "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "properties": { + "accountName": "r-database-account-353", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z" + } + ] + } + }, + { + "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", + "properties": { + "accountName": "r-database-account-8087", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:24:28Z", + "deletionTime": "2023-03-30T17:39:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", + "creationTime": "2023-03-30T17:24:29Z", + "deletionTime": "2023-03-30T17:39:50Z" + } + ] + } + }, + { + "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "properties": { + "accountName": "restoredaccount-560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z" + } + ] + } + }, + { + "name": "d9e2fd03-4af1-4649-98c3-65f580724594", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", + "properties": { + "accountName": "r-database-account-7446", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:08:24Z", + "deletionTime": "2023-03-30T19:10:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", + "creationTime": "2023-03-30T19:08:25Z", + "deletionTime": "2023-03-30T19:10:04Z" + } + ] + } + }, + { + "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", + "properties": { + "accountName": "r-database-account-8409", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:30:14Z", + "deletionTime": "2023-03-30T19:46:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", + "creationTime": "2023-03-30T19:30:15Z", + "deletionTime": "2023-03-30T19:46:59Z" + } + ] + } + }, + { + "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "properties": { + "accountName": "restoredaccount-9502", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z" + } + ] + } + }, + { + "name": "a274527e-da37-49f9-9878-cef9f55b334d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", + "properties": { + "accountName": "r-database-account-4548", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:23:16Z", + "deletionTime": "2023-03-30T20:41:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", + "creationTime": "2023-03-30T20:23:17Z", + "deletionTime": "2023-03-30T20:41:33Z" + } + ] + } + }, + { + "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", + "properties": { + "accountName": "restoredaccount-3745", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z" + } + ] + } + }, + { + "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", + "properties": { + "accountName": "r-database-account-2582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T21:50:24Z", + "deletionTime": "2023-03-30T21:52:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", + "creationTime": "2023-03-30T21:50:27Z", + "deletionTime": "2023-03-30T21:52:04Z" + } + ] + } + }, + { + "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", + "properties": { + "accountName": "r-database-account-8779", + "apiType": "Sql", + "creationTime": "2023-03-30T22:06:33Z", + "deletionTime": "2023-03-30T22:07:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", + "creationTime": "2023-03-30T22:06:34Z", + "deletionTime": "2023-03-30T22:07:17Z" + } + ] + } + }, + { + "name": "38947549-a1bf-4023-bc95-88dcc312797f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", + "properties": { + "accountName": "r-database-account-4386", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:20:34Z", + "deletionTime": "2023-03-30T22:21:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", + "creationTime": "2023-03-30T22:20:35Z", + "deletionTime": "2023-03-30T22:21:28Z" + } + ] + } + }, + { + "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "properties": { + "accountName": "r-database-account-3583", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T22:35:57Z", + "deletionTime": "2023-03-30T22:36:47Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", + "creationTime": "2023-03-30T22:35:58Z", + "deletionTime": "2023-03-30T22:36:47Z" + } + ] + } + }, + { + "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "properties": { + "accountName": "r-database-account-5053", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:51:37Z", + "deletionTime": "2023-03-30T23:05:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", + "creationTime": "2023-03-30T22:51:38Z", + "deletionTime": "2023-03-30T23:05:43Z" + } + ] + } + }, + { + "name": "17692a3a-23c6-428d-a13a-94657bdea47a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", + "properties": { + "accountName": "r-database-account-9618", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:22:07Z", + "deletionTime": "2023-03-30T23:40:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", + "creationTime": "2023-03-30T23:22:08Z", + "deletionTime": "2023-03-30T23:40:57Z" + } + ] + } + }, + { + "name": "aae41121-0386-45f5-884b-acca11a878e3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", + "properties": { + "accountName": "restoredaccount-2225", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z" + } + ] + } + }, + { + "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", + "properties": { + "accountName": "r-database-account-220", + "apiType": "Sql", + "creationTime": "2023-03-31T00:05:32Z", + "deletionTime": "2023-03-31T00:21:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", + "creationTime": "2023-03-31T00:05:33Z", + "deletionTime": "2023-03-31T00:21:52Z" + } + ] + } + }, + { + "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", + "properties": { + "accountName": "restoredaccount-9446", + "apiType": "Sql", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z" + } + ] + } + }, + { + "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "properties": { + "accountName": "r-database-account-2092", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T00:47:34Z", + "deletionTime": "2023-03-31T01:05:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", + "creationTime": "2023-03-31T00:47:35Z", + "deletionTime": "2023-03-31T01:05:40Z" + } + ] + } + }, + { + "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "properties": { + "accountName": "restoredaccount-6025", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z" + } + ] + } + }, + { + "name": "89218c06-82d7-4397-a460-2f07c20d7138", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", + "properties": { + "accountName": "r-database-account-2331", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:32:56Z", + "deletionTime": "2023-03-31T01:49:23Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", + "creationTime": "2023-03-31T01:32:57Z", + "deletionTime": "2023-03-31T01:49:23Z" + } + ] + } + }, + { + "name": "480bf65c-2961-46e6-a44c-4de49632a509", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", + "properties": { + "accountName": "restoredaccount-6086", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z" + } + ] + } + }, + { + "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "properties": { + "accountName": "r-database-account-3761", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T02:17:45Z", + "deletionTime": "2023-03-31T02:19:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", + "creationTime": "2023-03-31T02:17:46Z", + "deletionTime": "2023-03-31T02:19:03Z" + } + ] + } + }, + { + "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", + "properties": { + "accountName": "r-database-account-176", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T02:35:45Z", + "deletionTime": "2023-03-31T02:37:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", + "creationTime": "2023-03-31T02:35:46Z", + "deletionTime": "2023-03-31T02:37:16Z" + } + ] + } + }, + { + "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", + "properties": { + "accountName": "r-database-account-9754", + "apiType": "Sql", + "creationTime": "2023-03-31T02:51:04Z", + "deletionTime": "2023-03-31T02:51:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", + "creationTime": "2023-03-31T02:51:05Z", + "deletionTime": "2023-03-31T02:51:58Z" + } + ] + } + }, + { + "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "properties": { + "accountName": "r-database-account-3560", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:04:37Z", + "deletionTime": "2023-03-31T03:05:38Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", + "creationTime": "2023-03-31T03:04:38Z", + "deletionTime": "2023-03-31T03:05:38Z" + } + ] + } + }, + { + "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "properties": { + "accountName": "r-database-account-7061", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T03:21:54Z", + "deletionTime": "2023-03-31T03:23:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", + "creationTime": "2023-03-31T03:21:55Z", + "deletionTime": "2023-03-31T03:23:03Z" + } + ] + } + }, + { + "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", + "properties": { + "accountName": "r-database-account-6492", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:37:32Z", + "deletionTime": "2023-03-31T03:51:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", + "creationTime": "2023-03-31T03:37:33Z", + "deletionTime": "2023-03-31T03:51:53Z" + } + ] + } + }, + { + "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "properties": { + "accountName": "r-database-account-2187", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T04:07:50Z", + "deletionTime": "2023-03-31T04:26:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", + "creationTime": "2023-03-31T04:07:51Z", + "deletionTime": "2023-03-31T04:26:04Z" + } + ] + } + }, + { + "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "properties": { + "accountName": "restoredaccount-3749", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z" + } + ] + } + }, + { + "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "properties": { + "accountName": "r-database-account-1319", + "apiType": "Sql", + "creationTime": "2023-03-31T04:51:37Z", + "deletionTime": "2023-03-31T05:08:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", + "creationTime": "2023-03-31T04:51:38Z", + "deletionTime": "2023-03-31T05:08:00Z" + } + ] + } + }, + { + "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "properties": { + "accountName": "restoredaccount-949", + "apiType": "Sql", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z" + } + ] + } + }, + { + "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "properties": { + "accountName": "r-database-account-3444", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:33:47Z", + "deletionTime": "2023-03-31T05:52:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", + "creationTime": "2023-03-31T05:33:48Z", + "deletionTime": "2023-03-31T05:52:04Z" + } + ] + } + }, + { + "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "properties": { + "accountName": "restoredaccount-8369", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z" + } + ] + } + }, + { + "name": "a6938641-f254-423b-877a-01a80f789530", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", + "properties": { + "accountName": "r-database-account-4184", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:20:37Z", + "deletionTime": "2023-03-31T06:36:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", + "creationTime": "2023-03-31T06:20:38Z", + "deletionTime": "2023-03-31T06:36:54Z" + } + ] + } + }, + { + "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", + "properties": { + "accountName": "restoredaccount-8230", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z" + } + ] + } + }, + { + "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", + "properties": { + "accountName": "r-database-account-9421", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:10:08Z", + "deletionTime": "2023-03-31T07:27:01Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", + "creationTime": "2023-03-31T07:10:09Z", + "deletionTime": "2023-03-31T07:27:01Z" + } + ] + } + }, + { + "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", + "properties": { + "accountName": "restoredaccount-2737", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z" + } + ] + } + }, + { + "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "properties": { + "accountName": "r-database-account-4921", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:56:33Z", + "deletionTime": "2023-03-31T07:58:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", + "creationTime": "2023-03-31T07:56:34Z", + "deletionTime": "2023-03-31T07:58:09Z" + } + ] + } + }, + { + "name": "bea1d046-d612-49e3-b64c-3e82a216987a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", + "properties": { + "accountName": "r-database-account-4832", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T08:15:55Z", + "deletionTime": "2023-03-31T08:33:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", + "creationTime": "2023-03-31T08:15:57Z", + "deletionTime": "2023-03-31T08:33:06Z" + } + ] + } + }, + { + "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "properties": { + "accountName": "restoredaccount-9360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z" + } + ] + } + }, + { + "name": "9e6527c2-ded9-493a-9086-df70877c305d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", + "properties": { + "accountName": "r-database-account-7247", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T09:00:28Z", + "deletionTime": "2023-03-31T09:01:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", + "creationTime": "2023-03-31T09:00:29Z", + "deletionTime": "2023-03-31T09:01:48Z" + } + ] + } + }, + { + "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", + "properties": { + "accountName": "r-database-account-2911", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:04:29Z", + "deletionTime": "2023-03-31T15:05:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", + "creationTime": "2023-03-31T15:04:30Z", + "deletionTime": "2023-03-31T15:05:51Z" + } + ] + } + }, + { + "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", + "properties": { + "accountName": "r-database-account-7482", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:22:06Z", + "deletionTime": "2023-03-31T15:23:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", + "creationTime": "2023-03-31T15:22:08Z", + "deletionTime": "2023-03-31T15:23:48Z" + } + ] + } + }, + { + "name": "c739e02a-8d12-44a1-9b43-72dee580e901", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", + "properties": { + "accountName": "r-database-account-2396", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T16:34:52Z", + "deletionTime": "2023-04-04T16:36:27Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", + "creationTime": "2023-04-04T16:34:53Z", + "deletionTime": "2023-04-04T16:36:27Z" + } + ] + } + }, + { + "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", + "properties": { + "accountName": "r-database-account-2962", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T16:56:08Z", + "deletionTime": "2023-04-04T16:57:51Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", + "creationTime": "2023-04-04T16:56:09Z", + "deletionTime": "2023-04-04T16:57:51Z" + } + ] + } + }, + { + "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", + "properties": { + "accountName": "r-database-account-2963", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:15:44Z", + "deletionTime": "2023-04-04T17:17:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", + "creationTime": "2023-04-04T17:15:45Z", + "deletionTime": "2023-04-04T17:17:16Z" + } + ] + } + }, + { + "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "properties": { + "accountName": "r-database-account-6481", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:49:37Z", + "deletionTime": "2023-04-04T17:51:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", + "creationTime": "2023-04-04T17:49:38Z", + "deletionTime": "2023-04-04T17:51:33Z" + } + ] + } + }, + { + "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", + "properties": { + "accountName": "r-database-account-5265", + "apiType": "Sql", + "creationTime": "2023-04-04T18:05:44Z", + "deletionTime": "2023-04-04T18:06:15Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", + "creationTime": "2023-04-04T18:05:45Z", + "deletionTime": "2023-04-04T18:06:15Z" + } + ] + } + }, + { + "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", + "properties": { + "accountName": "r-database-account-2888", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:48:32Z", + "deletionTime": "2023-04-04T18:50:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", + "creationTime": "2023-04-04T18:48:33Z", + "deletionTime": "2023-04-04T18:50:14Z" + } + ] + } + }, + { + "name": "ad1760ce-6137-41f0-843a-84a233b507fb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", + "properties": { + "accountName": "r-database-account-3827", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:16:39Z", + "deletionTime": "2023-04-04T19:18:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", + "creationTime": "2023-04-04T19:16:40Z", + "deletionTime": "2023-04-04T19:18:14Z" + } + ] + } + }, + { + "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", + "properties": { + "accountName": "r-database-account-7735", + "apiType": "Sql", + "creationTime": "2023-04-04T19:32:03Z", + "deletionTime": "2023-04-04T19:33:01Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", + "creationTime": "2023-04-04T19:32:04Z", + "deletionTime": "2023-04-04T19:33:01Z" + } + ] + } + }, + { + "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", + "properties": { + "accountName": "r-database-account-1093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:46:39Z", + "deletionTime": "2023-04-04T19:47:45Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", + "creationTime": "2023-04-04T19:46:40Z", + "deletionTime": "2023-04-04T19:47:45Z" + } + ] + } + }, + { + "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", + "properties": { + "accountName": "r-database-account-5066", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z" + } + ] + } + }, + { + "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", + "properties": { + "accountName": "r-database-account-1835", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:17:28Z", + "deletionTime": "2023-04-04T20:34:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", + "creationTime": "2023-04-04T20:17:29Z", + "deletionTime": "2023-04-04T20:34:14Z" + } + ] + } + }, + { + "name": "cb2e954a-4e71-425a-b780-25555527fc7b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", + "properties": { + "accountName": "restoredaccount-5931", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z" + } + ] + } + }, + { + "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "properties": { + "accountName": "r-database-account-8394", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:02:22Z", + "deletionTime": "2023-04-04T21:20:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", + "creationTime": "2023-04-04T21:02:23Z", + "deletionTime": "2023-04-04T21:20:17Z" + } + ] + } + }, + { + "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", + "properties": { + "accountName": "r-database-account-5571", + "apiType": "Sql", + "creationTime": "2023-04-04T21:44:41Z", + "deletionTime": "2023-04-04T21:45:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", + "creationTime": "2023-04-04T21:44:42Z", + "deletionTime": "2023-04-04T21:45:35Z" + } + ] + } + }, + { + "name": "987588f7-7709-4336-aa45-223395911848", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", + "properties": { + "accountName": "r-database-account-1689", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T22:09:17Z", + "deletionTime": "2023-04-04T22:10:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", + "creationTime": "2023-04-04T22:09:19Z", + "deletionTime": "2023-04-04T22:10:56Z" + } + ] + } + }, + { + "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "properties": { + "accountName": "r-database-account-4876", + "apiType": "Sql", + "creationTime": "2023-04-04T22:24:45Z", + "deletionTime": "2023-04-04T22:25:39Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", + "creationTime": "2023-04-04T22:24:46Z", + "deletionTime": "2023-04-04T22:25:39Z" + } + ] + } + }, + { + "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "properties": { + "accountName": "r-database-account-3793", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T22:38:37Z", + "deletionTime": "2023-04-04T22:39:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", + "creationTime": "2023-04-04T22:38:38Z", + "deletionTime": "2023-04-04T22:39:26Z" + } + ] + } + }, + { + "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "properties": { + "accountName": "r-database-account-2846", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T22:54:10Z", + "deletionTime": "2023-04-04T22:55:15Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", + "creationTime": "2023-04-04T22:54:11Z", + "deletionTime": "2023-04-04T22:55:15Z" + } + ] + } + }, + { + "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "properties": { + "accountName": "r-database-account-121", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:09:10Z", + "deletionTime": "2023-04-04T23:26:11Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", + "creationTime": "2023-04-04T23:09:11Z", + "deletionTime": "2023-04-04T23:26:11Z" + } + ] + } + }, + { + "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", + "properties": { + "accountName": "restoredaccount-7907", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z" + } + ] + } + }, + { + "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "properties": { + "accountName": "r-database-account-5836", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:53:57Z", + "deletionTime": "2023-04-05T00:12:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", + "creationTime": "2023-04-04T23:53:58Z", + "deletionTime": "2023-04-05T00:12:42Z" + } + ] + } + }, + { + "name": "eda15431-8fd3-434e-a724-6478d0d766b0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", + "properties": { + "accountName": "restoredaccount-2781", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z" + } + ] + } + }, + { + "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", + "properties": { + "accountName": "r-database-account-886", + "apiType": "Sql", + "creationTime": "2023-04-05T00:38:08Z", + "deletionTime": "2023-04-05T00:55:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", + "creationTime": "2023-04-05T00:38:09Z", + "deletionTime": "2023-04-05T00:55:26Z" + } + ] + } + }, + { + "name": "0461674a-5302-4644-8006-15273be1dd01", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", + "properties": { + "accountName": "restoredaccount-1331", + "apiType": "Sql", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z" + } + ] + } + }, + { + "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "properties": { + "accountName": "r-database-account-5720", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:20:43Z", + "deletionTime": "2023-04-05T01:39:46Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", + "creationTime": "2023-04-05T01:20:44Z", + "deletionTime": "2023-04-05T01:39:46Z" + } + ] + } + }, + { + "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "properties": { + "accountName": "restoredaccount-3222", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z" + } + ] + } + }, + { + "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "properties": { + "accountName": "r-database-account-7279", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:07:38Z", + "deletionTime": "2023-04-05T02:24:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", + "creationTime": "2023-04-05T02:07:39Z", + "deletionTime": "2023-04-05T02:24:18Z" + } + ] + } + }, + { + "name": "3364799a-fb66-48f3-b389-45af2e775bd2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", + "properties": { + "accountName": "restoredaccount-2694", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z" + } + ] + } + }, + { + "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "properties": { + "accountName": "r-database-account-2111", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:52:15Z", + "deletionTime": "2023-04-05T02:53:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", + "creationTime": "2023-04-05T02:52:16Z", + "deletionTime": "2023-04-05T02:53:42Z" + } + ] + } + }, + { + "name": "1275f66f-c69b-4813-9b61-901e1ec451af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", + "properties": { + "accountName": "r-database-account-4270", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:09:42Z", + "deletionTime": "2023-04-05T03:11:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", + "creationTime": "2023-04-05T03:09:43Z", + "deletionTime": "2023-04-05T03:11:28Z" + } + ] + } + }, + { + "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", + "properties": { + "accountName": "r-database-account-6226", + "apiType": "Sql", + "creationTime": "2023-04-05T03:25:14Z", + "deletionTime": "2023-04-05T03:26:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", + "creationTime": "2023-04-05T03:25:15Z", + "deletionTime": "2023-04-05T03:26:12Z" + } + ] + } + }, + { + "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", + "properties": { + "accountName": "r-database-account-4472", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:39:46Z", + "deletionTime": "2023-04-05T03:40:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", + "creationTime": "2023-04-05T03:39:47Z", + "deletionTime": "2023-04-05T03:40:55Z" + } + ] + } + }, + { + "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", + "properties": { + "accountName": "r-database-account-5112", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T03:56:41Z", + "deletionTime": "2023-04-05T03:57:47Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", + "creationTime": "2023-04-05T03:56:42Z", + "deletionTime": "2023-04-05T03:57:47Z" + } + ] + } + }, + { + "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", + "properties": { + "accountName": "r-database-account-8806", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:11:45Z", + "deletionTime": "2023-04-05T04:37:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", + "creationTime": "2023-04-05T04:11:47Z", + "deletionTime": "2023-04-05T04:37:16Z" + } + ] + } + }, + { + "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", + "properties": { + "accountName": "restoredaccount-6850", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "fcd234fa-a27c-4150-9595-d0db433584e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", + "properties": { + "accountName": "r-database-account-705", + "apiType": "Sql", + "creationTime": "2023-04-05T05:56:56Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", + "creationTime": "2023-04-05T05:56:57Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "properties": { + "accountName": "r-database-account-4894", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:13:31Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", + "creationTime": "2023-04-05T06:13:32Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "properties": { + "accountName": "r-database-account-3212", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T06:08:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", + "creationTime": "2023-04-05T06:08:09Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "properties": { + "accountName": "r-database-account-9540", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:53:04Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", + "creationTime": "2023-04-05T05:53:05Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "properties": { + "accountName": "r-database-account-4658", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:02:37Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", + "creationTime": "2023-04-05T06:02:38Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "properties": { + "accountName": "r-database-account-3189", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:35:19Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", + "creationTime": "2023-04-05T06:35:20Z", + "deletionTime": "2023-04-05T06:54:25Z" + } + ] + } + }, + { + "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "properties": { + "accountName": "restoredaccount-7747", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z" + } + ] + } + }, + { + "name": "adc4a343-1599-470d-abcc-d951fdd50f37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", + "properties": { + "accountName": "r-database-account-3312", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:13:48Z", + "deletionTime": "2023-04-05T06:56:38Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", + "creationTime": "2023-04-04T17:13:49Z", + "deletionTime": "2023-04-05T06:56:38Z" + } + ] + } + }, + { + "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", + "properties": { + "accountName": "r-database-account-5846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:44:23Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", + "creationTime": "2023-04-04T21:44:25Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", + "properties": { + "accountName": "r-database-account-2760", + "apiType": "Sql", + "creationTime": "2023-04-04T21:33:57Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", + "creationTime": "2023-04-04T21:33:58Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "9ce35a43-8b24-4060-a058-191f976df7c1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", + "properties": { + "accountName": "restoredaccount-9271", + "apiType": "Sql", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z" + } + ] + } + }, + { + "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", + "properties": { + "accountName": "r-database-account-9266", + "apiType": "Sql", + "creationTime": "2023-03-29T07:47:00Z", + "deletionTime": "2023-04-05T06:58:41Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", + "creationTime": "2023-03-29T07:47:01Z", + "deletionTime": "2023-04-05T06:58:41Z" + } + ] + } + }, + { + "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "properties": { + "accountName": "r-database-account-641", + "apiType": "Sql", + "creationTime": "2023-03-29T04:26:01Z", + "deletionTime": "2023-04-05T06:59:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", + "creationTime": "2023-03-29T04:26:02Z", + "deletionTime": "2023-04-05T06:59:03Z" + } + ] + } + }, + { + "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "properties": { + "accountName": "r-database-account-3287", + "apiType": "Sql", + "creationTime": "2023-03-29T07:55:06Z", + "deletionTime": "2023-04-05T07:00:47Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", + "creationTime": "2023-03-29T07:55:07Z", + "deletionTime": "2023-04-05T07:00:47Z" + } + ] + } + }, + { + "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "properties": { + "accountName": "r-database-account-3926", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:08:41Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", + "creationTime": "2023-03-29T17:08:42Z", + "deletionTime": "2023-04-05T07:01:53Z" + } + ] + } + }, + { + "name": "92ce3190-d16b-438f-9791-b2254a597435", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", + "properties": { + "accountName": "r-database-account-1530", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:05:13Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", + "creationTime": "2023-03-31T07:05:14Z", + "deletionTime": "2023-04-05T07:01:53Z" + } + ] + } + }, + { + "name": "c5934152-2095-41b0-9962-72be301ec23c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", + "properties": { + "accountName": "r-database-account-1333", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T07:09:38Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", + "creationTime": "2023-03-30T07:09:40Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", + "properties": { + "accountName": "r-database-account-2197", + "apiType": "Sql", + "creationTime": "2023-03-29T04:24:10Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", + "creationTime": "2023-03-29T04:24:11Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "properties": { + "accountName": "r-database-account-4608", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T00:10:43Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", + "creationTime": "2023-03-30T00:10:44Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "properties": { + "accountName": "r-database-account-4659", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:19:29Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", + "creationTime": "2023-04-04T18:19:30Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "properties": { + "accountName": "r-database-account-5637", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:25:03Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", + "creationTime": "2023-03-30T16:25:04Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "properties": { + "accountName": "r-database-account-5467", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:53:26Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", + "creationTime": "2023-04-05T04:53:27Z", + "deletionTime": "2023-04-05T07:01:54Z" + } + ] + } + }, + { + "name": "401f849e-50e6-483b-813a-1a5f1059006c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", + "properties": { + "accountName": "r-database-account-5933", + "apiType": "Sql", + "creationTime": "2023-04-04T19:13:48Z", + "deletionTime": "2023-04-05T07:01:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", + "creationTime": "2023-04-04T19:13:49Z", + "deletionTime": "2023-04-05T07:01:55Z" + } + ] + } + }, + { + "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", + "properties": { + "accountName": "r-database-account-1535", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:20:58Z", + "deletionTime": "2023-04-05T07:01:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", + "creationTime": "2023-03-30T20:21:00Z", + "deletionTime": "2023-04-05T07:01:58Z" + } + ] + } + }, + { + "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", + "properties": { + "accountName": "r-database-account-5305", + "apiType": "Sql", + "creationTime": "2023-03-29T02:15:48Z", + "deletionTime": "2023-04-05T07:02:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", + "creationTime": "2023-03-29T02:15:49Z", + "deletionTime": "2023-04-05T07:02:00Z" + } + ] + } + }, + { + "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", + "properties": { + "accountName": "restoredaccount-590", + "apiType": "Sql", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "properties": { + "accountName": "restoredaccount-3736", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "af699620-0019-4a6b-ad59-e7c6381814ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", + "properties": { + "accountName": "restoredaccount-7822", + "apiType": "Sql", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z" + } + ] + } + }, + { + "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", + "properties": { + "accountName": "restoredaccount-5262", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z" + } + ] + } + }, + { + "name": "05442da3-1214-4c48-9883-b06ab54491dd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", + "properties": { + "accountName": "r-database-account-6510", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:12:03Z", + "deletionTime": "2023-04-05T16:13:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", + "creationTime": "2023-04-05T16:12:04Z", + "deletionTime": "2023-04-05T16:13:54Z" + } + ] + } + }, + { + "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", + "properties": { + "accountName": "r-database-account-6751", + "apiType": "Sql", + "creationTime": "2023-04-05T16:17:14Z", + "deletionTime": "2023-04-05T16:17:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", + "creationTime": "2023-04-05T16:17:16Z", + "deletionTime": "2023-04-05T16:17:54Z" + } + ] + } + }, + { + "name": "554b58bc-ad47-4031-9100-02ef15baa510", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", + "properties": { + "accountName": "r-database-account-3896", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:22:51Z", + "deletionTime": "2023-04-05T16:24:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", + "creationTime": "2023-04-05T16:22:52Z", + "deletionTime": "2023-04-05T16:24:03Z" + } + ] + } + }, + { + "name": "d97105e7-6a53-435f-9219-21b7e6ace085", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", + "properties": { + "accountName": "r-database-account-8009", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T16:28:41Z", + "deletionTime": "2023-04-05T16:29:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", + "creationTime": "2023-04-05T16:28:42Z", + "deletionTime": "2023-04-05T16:29:40Z" + } + ] + } + }, + { + "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "properties": { + "accountName": "r-database-account-5770", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:34:14Z", + "deletionTime": "2023-04-05T16:51:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", + "creationTime": "2023-04-05T16:34:15Z", + "deletionTime": "2023-04-05T16:51:55Z" + } + ] + } + }, + { + "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "properties": { + "accountName": "restoredaccount-4079", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z" + } + ] + } + }, + { + "name": "a181c3ee-171b-4481-b30c-623238c24d41", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", + "properties": { + "accountName": "restoredaccount-5402", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z" + } + ] + } + }, + { + "name": "115d217b-1e58-4653-af7e-756be6313d6e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", + "properties": { + "accountName": "r-database-account-5935", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T16:56:31Z", + "deletionTime": "2023-04-05T17:15:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", + "creationTime": "2023-04-05T16:56:32Z", + "deletionTime": "2023-04-05T17:15:52Z" + } + ] + } + }, + { + "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "properties": { + "accountName": "r-database-account-339", + "apiType": "Sql", + "creationTime": "2023-04-05T17:17:47Z", + "deletionTime": "2023-04-05T17:34:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", + "creationTime": "2023-04-05T17:17:48Z", + "deletionTime": "2023-04-05T17:34:52Z" + } + ] + } + }, + { + "name": "4350889f-8316-4611-8c7b-0de037f83cb3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", + "properties": { + "accountName": "restoredaccount-6292", + "apiType": "Sql", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z" + } + ] + } + }, + { + "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", + "properties": { + "accountName": "r-database-account-8514", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T17:39:47Z", + "deletionTime": "2023-04-05T17:58:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", + "creationTime": "2023-04-05T17:39:48Z", + "deletionTime": "2023-04-05T17:58:43Z" + } + ] + } + }, + { + "name": "e39d66a9-028e-499d-b488-fde2e53814c5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", + "properties": { + "accountName": "restoredaccount-9641", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z" + } + ] + } + }, + { + "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", + "properties": { + "accountName": "restoredaccount-2652", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z" + } + ] + } + }, + { + "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "properties": { + "accountName": "r-database-account-20", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:03:36Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", + "creationTime": "2023-04-05T18:03:37Z", + "deletionTime": "2023-04-05T18:21:00Z" + } + ] + } + }, + { + "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", + "properties": { + "accountName": "r-database-account-727", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:25:45Z", + "deletionTime": "2023-04-05T18:27:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", + "creationTime": "2023-04-05T18:25:47Z", + "deletionTime": "2023-04-05T18:27:03Z" + } + ] + } + }, + { + "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "properties": { + "accountName": "r-database-account-2209", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:38:04Z", + "deletionTime": "2023-04-05T18:40:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", + "creationTime": "2023-04-05T18:38:05Z", + "deletionTime": "2023-04-05T18:40:00Z" + } + ] + } + }, + { + "name": "e106c7e7-2828-4193-b125-0540ec42f85a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", + "properties": { + "accountName": "r-grem-db-account-3109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:20Z", + "deletionTime": "2023-04-05T19:17:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", + "creationTime": "2023-04-05T19:15:21Z", + "deletionTime": "2023-04-05T19:17:06Z" + } + ] + } + }, + { + "name": "19b77f33-9070-4bea-89ec-83ad22c59136", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", + "properties": { + "accountName": "r-grem-db-account-3153", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:32:53Z", + "deletionTime": "2023-04-05T19:33:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", + "creationTime": "2023-04-05T19:32:54Z", + "deletionTime": "2023-04-05T19:33:59Z" + } + ] + } + }, + { + "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", + "properties": { + "accountName": "r-grem-db-account-6612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:47:56Z", + "deletionTime": "2023-04-05T20:04:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", + "creationTime": "2023-04-05T19:47:57Z", + "deletionTime": "2023-04-05T20:04:52Z" + } + ] + } + }, + { + "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "properties": { + "accountName": "restoredaccount-5075", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z" + } + ] + } + }, + { + "name": "57958516-07cd-498b-b42b-d8bbde38fc72", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", + "properties": { + "accountName": "r-grem-db-account-2460", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:32:03Z", + "deletionTime": "2023-04-05T20:52:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", + "creationTime": "2023-04-05T20:32:04Z", + "deletionTime": "2023-04-05T20:52:58Z" + } + ] + } + }, + { + "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "properties": { + "accountName": "restoredaccount-9191", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z" + } + ] + } + }, + { + "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "properties": { + "accountName": "r-grem-db-account-917", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:20:40Z", + "deletionTime": "2023-04-05T21:22:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", + "creationTime": "2023-04-05T21:20:41Z", + "deletionTime": "2023-04-05T21:22:32Z" + } + ] + } + }, + { + "name": "d8af4291-a857-435c-9e68-add9be61e3e3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", + "properties": { + "accountName": "r-grem-db-account-4408", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:38:27Z", + "deletionTime": "2023-04-05T21:39:23Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", + "creationTime": "2023-04-05T21:38:28Z", + "deletionTime": "2023-04-05T21:39:23Z" + } + ] + } + }, + { + "name": "2348e86d-d845-4023-a61c-52a7c4998681", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", + "properties": { + "accountName": "r-grem-db-account-3493", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:53:12Z", + "deletionTime": "2023-04-05T22:10:15Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", + "creationTime": "2023-04-05T21:53:13Z", + "deletionTime": "2023-04-05T22:10:15Z" + } + ] + } + }, + { + "name": "10d05397-ea2c-4d64-a325-da1097b67a30", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", + "properties": { + "accountName": "restoredaccount-7617", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z" + } + ] + } + }, + { + "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "properties": { + "accountName": "r-grem-db-account-4657", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:37:57Z", + "deletionTime": "2023-04-05T22:57:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", + "creationTime": "2023-04-05T22:37:58Z", + "deletionTime": "2023-04-05T22:57:18Z" + } + ] + } + }, + { + "name": "b9c23cc0-13f3-4895-8534-809a00376677", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", + "properties": { + "accountName": "restoredaccount-1097", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z" + } + ] + } + }, + { + "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", + "properties": { + "accountName": "r-table-account-4377", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:25:55Z", + "deletionTime": "2023-04-05T23:27:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", + "creationTime": "2023-04-05T23:25:56Z", + "deletionTime": "2023-04-05T23:27:10Z" + } + ] + } + }, + { + "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", + "properties": { + "accountName": "r-table-account-1415", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:41:00Z", + "deletionTime": "2023-04-05T23:59:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", + "creationTime": "2023-04-05T23:41:01Z", + "deletionTime": "2023-04-05T23:59:07Z" + } + ] + } + }, + { + "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", + "properties": { + "accountName": "restoredaccount-5386", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z" + } + ] + } + }, + { + "name": "701f814c-13b7-4144-b75c-52946e6946cb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", + "properties": { + "accountName": "r-table-account-6354", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:26:22Z", + "deletionTime": "2023-04-06T00:43:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", + "creationTime": "2023-04-06T00:26:23Z", + "deletionTime": "2023-04-06T00:43:42Z" + } + ] + } + }, + { + "name": "a96f997d-2cbf-4a64-b917-c776e6908601", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", + "properties": { + "accountName": "restoredaccount-3726", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z" + } + ] + } + }, + { + "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "properties": { + "accountName": "r-table-account-6883", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:10:50Z", + "deletionTime": "2023-04-06T01:12:24Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", + "creationTime": "2023-04-06T01:10:51Z", + "deletionTime": "2023-04-06T01:12:24Z" + } + ] + } + }, + { + "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "properties": { + "accountName": "r-table-account-5301", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:30:03Z", + "deletionTime": "2023-04-06T01:31:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", + "creationTime": "2023-04-06T01:30:04Z", + "deletionTime": "2023-04-06T01:31:00Z" + } + ] + } + }, + { + "name": "999e9d75-47c8-4230-8a4e-677ee461269b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", + "properties": { + "accountName": "r-database-account-3960", + "apiType": "Sql", + "creationTime": "2023-04-06T02:16:51Z", + "deletionTime": "2023-04-06T02:17:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", + "creationTime": "2023-04-06T02:16:52Z", + "deletionTime": "2023-04-06T02:17:49Z" + } + ] + } + }, + { + "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "properties": { + "accountName": "r-database-account-6028", + "apiType": "Sql", + "creationTime": "2023-04-06T02:27:53Z", + "deletionTime": "2023-04-06T02:44:39Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", + "creationTime": "2023-04-06T02:27:54Z", + "deletionTime": "2023-04-06T02:44:39Z" + } + ] + } + }, + { + "name": "3065e921-a49b-43d6-84aa-037f18987a23", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", + "properties": { + "accountName": "restoredaccount-7075", + "apiType": "Sql", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z" + } + ] + } + }, + { + "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", + "properties": { + "accountName": "r-database-account-5983", + "apiType": "Sql", + "creationTime": "2023-04-06T03:09:16Z", + "deletionTime": "2023-04-06T03:10:13Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", + "creationTime": "2023-04-06T03:09:18Z", + "deletionTime": "2023-04-06T03:10:13Z" + } + ] + } + }, + { + "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "properties": { + "accountName": "r-database-account-7214", + "apiType": "Sql", + "creationTime": "2023-04-06T03:20:49Z", + "deletionTime": "2023-04-06T03:37:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", + "creationTime": "2023-04-06T03:20:50Z", + "deletionTime": "2023-04-06T03:37:02Z" + } + ] + } + }, + { + "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", + "properties": { + "accountName": "restoredaccount-1487", + "apiType": "Sql", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z" + } + ] + } + }, + { + "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", + "properties": { + "accountName": "r-table-account-2891", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:02:47Z", + "deletionTime": "2023-04-06T04:03:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", + "creationTime": "2023-04-06T04:02:48Z", + "deletionTime": "2023-04-06T04:03:49Z" + } + ] + } + }, + { + "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "properties": { + "accountName": "r-table-account-7603", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:18:01Z", + "deletionTime": "2023-04-06T04:36:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", + "creationTime": "2023-04-06T04:18:02Z", + "deletionTime": "2023-04-06T04:36:17Z" + } + ] + } + }, + { + "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", + "properties": { + "accountName": "restoredaccount-1355", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z" + } + ] + } + }, + { + "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", + "properties": { + "accountName": "r-table-account-6373", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:05:15Z", + "deletionTime": "2023-04-06T05:22:50Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", + "creationTime": "2023-04-06T05:05:16Z", + "deletionTime": "2023-04-06T05:22:50Z" + } + ] + } + }, + { + "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "properties": { + "accountName": "restoredaccount-665", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z" + } + ] + } + }, + { + "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", + "properties": { + "accountName": "r-table-account-1188", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:50:20Z", + "deletionTime": "2023-04-06T05:52:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", + "creationTime": "2023-04-06T05:50:21Z", + "deletionTime": "2023-04-06T05:52:03Z" + } + ] + } + }, + { + "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", + "properties": { + "accountName": "r-table-account-5261", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:08:10Z", + "deletionTime": "2023-04-06T06:09:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", + "creationTime": "2023-04-06T06:08:11Z", + "deletionTime": "2023-04-06T06:09:02Z" + } + ] + } + }, + { + "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", + "properties": { + "accountName": "r-grem-db-account-723", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:39:44Z", + "deletionTime": "2023-04-06T06:41:33Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", + "creationTime": "2023-04-06T06:39:45Z", + "deletionTime": "2023-04-06T06:41:33Z" + } + ] + } + }, + { + "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", + "properties": { + "accountName": "r-grem-db-account-7969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:58:36Z", + "deletionTime": "2023-04-06T06:59:36Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", + "creationTime": "2023-04-06T06:58:37Z", + "deletionTime": "2023-04-06T06:59:36Z" + } + ] + } + }, + { + "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", + "properties": { + "accountName": "r-grem-db-account-2577", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:15:43Z", + "deletionTime": "2023-04-06T07:33:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", + "creationTime": "2023-04-06T07:15:45Z", + "deletionTime": "2023-04-06T07:33:07Z" + } + ] + } + }, + { + "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "properties": { + "accountName": "restoredaccount-693", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z" + } + ] + } + }, + { + "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", + "properties": { + "accountName": "r-grem-db-account-4601", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:00:25Z", + "deletionTime": "2023-04-06T08:20:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", + "creationTime": "2023-04-06T08:00:26Z", + "deletionTime": "2023-04-06T08:20:12Z" + } + ] + } + }, + { + "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "properties": { + "accountName": "restoredaccount-1430", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z" + } + ] + } + }, + { + "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "properties": { + "accountName": "r-grem-db-account-7507", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:48:00Z", + "deletionTime": "2023-04-06T08:49:48Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", + "creationTime": "2023-04-06T08:48:01Z", + "deletionTime": "2023-04-06T08:49:48Z" + } + ] + } + }, + { + "name": "a8bfadea-a883-491c-8311-3202491cfe5d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", + "properties": { + "accountName": "r-grem-db-account-2606", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:05:50Z", + "deletionTime": "2023-04-06T09:06:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", + "creationTime": "2023-04-06T09:05:51Z", + "deletionTime": "2023-04-06T09:06:43Z" + } + ] + } + }, + { + "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "properties": { + "accountName": "r-grem-db-account-6681", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:21:06Z", + "deletionTime": "2023-04-06T09:38:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", + "creationTime": "2023-04-06T09:21:07Z", + "deletionTime": "2023-04-06T09:38:10Z" + } + ] + } + }, + { + "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "properties": { + "accountName": "restoredaccount-4215", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z" + } + ] + } + }, + { + "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", + "properties": { + "accountName": "r-grem-db-account-846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:06:04Z", + "deletionTime": "2023-04-06T10:25:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", + "creationTime": "2023-04-06T10:06:06Z", + "deletionTime": "2023-04-06T10:25:18Z" + } + ] + } + }, + { + "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "properties": { + "accountName": "restoredaccount-5193", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z" + } + ] + } + }, + { + "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "properties": { + "accountName": "r-table-account-6567", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T10:53:20Z", + "deletionTime": "2023-04-06T10:54:04Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", + "creationTime": "2023-04-06T10:53:21Z", + "deletionTime": "2023-04-06T10:54:04Z" + } + ] + } + }, + { + "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "properties": { + "accountName": "r-table-account-6921", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:08:49Z", + "deletionTime": "2023-04-06T11:27:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", + "creationTime": "2023-04-06T11:08:51Z", + "deletionTime": "2023-04-06T11:27:03Z" + } + ] + } + }, + { + "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", + "properties": { + "accountName": "restoredaccount-7286", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z" + } + ] + } + }, + { + "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "properties": { + "accountName": "r-table-account-5254", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:54:50Z", + "deletionTime": "2023-04-06T12:11:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", + "creationTime": "2023-04-06T11:54:51Z", + "deletionTime": "2023-04-06T12:11:56Z" + } + ] + } + }, + { + "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "properties": { + "accountName": "restoredaccount-6482", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z" + } + ] + } + }, + { + "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "properties": { + "accountName": "r-table-account-7579", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:39:46Z", + "deletionTime": "2023-04-06T12:41:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", + "creationTime": "2023-04-06T12:39:48Z", + "deletionTime": "2023-04-06T12:41:09Z" + } + ] + } + }, + { + "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", + "properties": { + "accountName": "cliz2xezqib6sfs", + "apiType": "Sql", + "creationTime": "2023-04-06T17:48:58Z", + "deletionTime": "2023-04-06T17:51:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", + "creationTime": "2023-04-06T17:48:59Z", + "deletionTime": "2023-04-06T17:51:37Z" + } + ] + } + }, + { + "name": "d4eb1a5c-fa82-416b-8765-73105541441a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", + "properties": { + "accountName": "climxyj6ppdtdi3", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:23Z", + "deletionTime": "2023-04-06T17:53:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", + "creationTime": "2023-04-06T17:50:24Z", + "deletionTime": "2023-04-06T17:53:09Z" + } + ] + } + }, + { + "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", + "properties": { + "accountName": "clinhlpp5ltdx45", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:16Z", + "deletionTime": "2023-04-06T17:53:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", + "creationTime": "2023-04-06T17:50:17Z", + "deletionTime": "2023-04-06T17:53:35Z" + } + ] + } + }, + { + "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "properties": { + "accountName": "clicvlfgrzahmvn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:25Z", + "deletionTime": "2023-04-06T17:54:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T17:54:37Z" + } + ] + } + }, + { + "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "properties": { + "accountName": "cli3hfttbxzir22", + "apiType": "Sql", + "creationTime": "2023-04-06T17:53:13Z", + "deletionTime": "2023-04-06T17:55:25Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", + "creationTime": "2023-04-06T17:53:14Z", + "deletionTime": "2023-04-06T17:55:25Z" + } + ] + } + }, + { + "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", + "properties": { + "accountName": "clioyp6agdkdrvk", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:56:23Z", + "deletionTime": "2023-04-06T17:58:30Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", + "creationTime": "2023-04-06T17:56:24Z", + "deletionTime": "2023-04-06T17:58:30Z" + } + ] + } + }, + { + "name": "c4ce576d-4033-4b12-a450-daa13093cf34", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", + "properties": { + "accountName": "clipniczjve2l4q", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:56:45Z", + "deletionTime": "2023-04-06T17:58:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", + "creationTime": "2023-04-06T17:56:46Z", + "deletionTime": "2023-04-06T17:58:52Z" + } + ] + } + }, + { + "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", + "properties": { + "accountName": "clitae37flgxvip", + "apiType": "Sql", + "creationTime": "2023-04-06T17:57:03Z", + "deletionTime": "2023-04-06T17:58:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", + "creationTime": "2023-04-06T17:57:04Z", + "deletionTime": "2023-04-06T17:58:56Z" + } + ] + } + }, + { + "name": "16cd72d1-8782-4faa-9e06-263055e4a852", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", + "properties": { + "accountName": "cliqeiwdwhcytpv", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:06Z", + "deletionTime": "2023-04-06T18:02:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", + "creationTime": "2023-04-06T18:02:07Z", + "deletionTime": "2023-04-06T18:02:32Z" + } + ] + } + }, + { + "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", + "properties": { + "accountName": "cling2ssmapqjtb", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:20Z", + "deletionTime": "2023-04-06T18:03:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", + "creationTime": "2023-04-06T18:02:21Z", + "deletionTime": "2023-04-06T18:03:00Z" + } + ] + } + }, + { + "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", + "properties": { + "accountName": "clic7r4mbsoucoq", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T18:04:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", + "creationTime": "2023-04-06T17:50:27Z", + "deletionTime": "2023-04-06T18:04:54Z" + } + ] + } + }, + { + "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", + "properties": { + "accountName": "cli6dll5uxhswmo", + "apiType": "Sql", + "creationTime": "2023-04-06T17:49:07Z", + "deletionTime": "2023-04-06T18:08:24Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", + "creationTime": "2023-04-06T17:49:08Z", + "deletionTime": "2023-04-06T18:08:24Z" + } + ] + } + }, + { + "name": "12fd85da-0738-45bc-a4ca-3576006082e6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", + "properties": { + "accountName": "restoredaccount-7559", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z" + } + ] + } + }, + { + "name": "730730ee-ee98-48bf-9c87-a38abac5781d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", + "properties": { + "accountName": "r-grem-db-account-3799", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:54:33Z", + "deletionTime": "2023-04-06T18:11:45Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", + "creationTime": "2023-04-06T17:54:34Z", + "deletionTime": "2023-04-06T18:11:45Z" + } + ] + } + }, + { + "name": "a331a0ab-07a6-4831-827d-30e513076c75", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", + "properties": { + "accountName": "r-grem-db-account-8345", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:39Z", + "deletionTime": "2023-04-06T18:52:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", + "creationTime": "2023-04-06T18:35:40Z", + "deletionTime": "2023-04-06T18:52:37Z" + } + ] + } + }, + { + "name": "c20213cc-0b64-4141-abdc-45f028e756fd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", + "properties": { + "accountName": "restoredaccount-3447", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z" + } + ] + } + }, + { + "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "properties": { + "accountName": "r-grem-db-account-6227", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:23:52Z", + "deletionTime": "2023-04-06T19:41:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", + "creationTime": "2023-04-06T19:23:53Z", + "deletionTime": "2023-04-06T19:41:19Z" + } + ] + } + }, + { + "name": "4228ce2e-f496-4131-a7b4-a093f4644646", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", + "properties": { + "accountName": "restoredaccount-601", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z" + } + ] + } + }, + { + "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "properties": { + "accountName": "r-database-account-3957", + "apiType": "Sql", + "creationTime": "2023-04-06T20:07:56Z", + "deletionTime": "2023-04-06T20:08:54Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", + "creationTime": "2023-04-06T20:07:57Z", + "deletionTime": "2023-04-06T20:08:54Z" + } + ] + } + }, + { + "name": "53ad2502-1710-406d-84e3-296fce5bd44a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", + "properties": { + "accountName": "r-database-account-9163", + "apiType": "Sql", + "creationTime": "2023-04-06T20:19:51Z", + "deletionTime": "2023-04-06T20:36:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", + "creationTime": "2023-04-06T20:19:52Z", + "deletionTime": "2023-04-06T20:36:03Z" + } + ] + } + }, + { + "name": "70ea9f86-be31-455a-b5be-791409c2b437", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", + "properties": { + "accountName": "restoredaccount-7173", + "apiType": "Sql", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z" + } + ] + } + }, + { + "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", + "properties": { + "accountName": "r-database-account-3610", + "apiType": "Sql", + "creationTime": "2023-04-06T21:00:14Z", + "deletionTime": "2023-04-06T21:01:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", + "creationTime": "2023-04-06T21:00:15Z", + "deletionTime": "2023-04-06T21:01:06Z" + } + ] + } + }, + { + "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "properties": { + "accountName": "r-database-account-2590", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:43Z", + "deletionTime": "2023-04-06T21:29:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", + "creationTime": "2023-04-06T21:11:44Z", + "deletionTime": "2023-04-06T21:29:03Z" + } + ] + } + }, + { + "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "properties": { + "accountName": "restoredaccount-5783", + "apiType": "Sql", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z" + } + ] + } + }, + { + "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", + "properties": { + "accountName": "r-grem-db-account-360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T21:54:18Z", + "deletionTime": "2023-04-06T21:55:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", + "creationTime": "2023-04-06T21:54:19Z", + "deletionTime": "2023-04-06T21:55:57Z" + } + ] + } + }, + { + "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", + "properties": { + "accountName": "r-grem-db-account-5702", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:13:06Z", + "deletionTime": "2023-04-06T22:13:57Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", + "creationTime": "2023-04-06T22:13:07Z", + "deletionTime": "2023-04-06T22:13:57Z" + } + ] + } + }, + { + "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "properties": { + "accountName": "r-grem-db-account-7080", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:28:25Z", + "deletionTime": "2023-04-06T22:45:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", + "creationTime": "2023-04-06T22:28:26Z", + "deletionTime": "2023-04-06T22:45:55Z" + } + ] + } + }, + { + "name": "0045cc2f-f262-44f7-94be-a8a81258114b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", + "properties": { + "accountName": "restoredaccount-3266", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z" + } + ] + } + }, + { + "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", + "properties": { + "accountName": "r-grem-db-account-8379", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:13:12Z", + "deletionTime": "2023-04-06T23:33:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", + "creationTime": "2023-04-06T23:13:14Z", + "deletionTime": "2023-04-06T23:33:31Z" + } + ] + } + }, + { + "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "properties": { + "accountName": "restoredaccount-4898", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z" + } + ] + } + }, + { + "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "properties": { + "accountName": "r-grem-db-account-97", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:01:21Z", + "deletionTime": "2023-04-07T00:03:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", + "creationTime": "2023-04-07T00:01:22Z", + "deletionTime": "2023-04-07T00:03:03Z" + } + ] + } + }, + { + "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", + "properties": { + "accountName": "r-grem-db-account-359", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:19:33Z", + "deletionTime": "2023-04-07T00:20:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", + "creationTime": "2023-04-07T00:19:34Z", + "deletionTime": "2023-04-07T00:20:32Z" + } + ] + } + }, + { + "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "properties": { + "accountName": "r-grem-db-account-6322", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:35:00Z", + "deletionTime": "2023-04-07T00:51:27Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", + "creationTime": "2023-04-07T00:35:01Z", + "deletionTime": "2023-04-07T00:51:27Z" + } + ] + } + }, + { + "name": "89acddd1-7338-4be9-b3f3-a7c060975428", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", + "properties": { + "accountName": "restoredaccount-3920", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z" + } + ] + } + }, + { + "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "properties": { + "accountName": "r-grem-db-account-1985", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:20:59Z", + "deletionTime": "2023-04-07T01:39:59Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", + "creationTime": "2023-04-07T01:21:01Z", + "deletionTime": "2023-04-07T01:39:59Z" + } + ] + } + }, + { + "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "properties": { + "accountName": "restoredaccount-2245", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z" + } + ] + } + }, + { + "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "properties": { + "accountName": "r-table-account-6589", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:08:08Z", + "deletionTime": "2023-04-07T02:09:18Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", + "creationTime": "2023-04-07T02:08:09Z", + "deletionTime": "2023-04-07T02:09:18Z" + } + ] + } + }, + { + "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", + "properties": { + "accountName": "r-table-account-455", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:23:44Z", + "deletionTime": "2023-04-07T02:42:21Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", + "creationTime": "2023-04-07T02:23:45Z", + "deletionTime": "2023-04-07T02:42:21Z" + } + ] + } + }, + { + "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "properties": { + "accountName": "restoredaccount-27", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z" + } + ] + } + }, + { + "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "properties": { + "accountName": "r-table-account-4096", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:09:53Z", + "deletionTime": "2023-04-07T03:26:55Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", + "creationTime": "2023-04-07T03:09:54Z", + "deletionTime": "2023-04-07T03:26:55Z" + } + ] + } + }, + { + "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", + "properties": { + "accountName": "restoredaccount-1168", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z" + } + ] + } + }, + { + "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", + "properties": { + "accountName": "r-table-account-6117", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:54:19Z", + "deletionTime": "2023-04-07T03:55:39Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", + "creationTime": "2023-04-07T03:54:20Z", + "deletionTime": "2023-04-07T03:55:39Z" + } + ] + } + }, + { + "name": "0554d9f5-654a-4d8b-b684-27f659539579", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", + "properties": { + "accountName": "r-table-account-5255", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:11:45Z", + "deletionTime": "2023-04-07T04:12:39Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", + "creationTime": "2023-04-07T04:11:47Z", + "deletionTime": "2023-04-07T04:12:39Z" + } + ] + } + }, + { + "name": "fece0537-1813-4eca-ba83-43a475cc913c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", + "properties": { + "accountName": "r-table-account-555", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:26:38Z", + "deletionTime": "2023-04-07T04:45:11Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", + "creationTime": "2023-04-07T04:26:39Z", + "deletionTime": "2023-04-07T04:45:11Z" + } + ] + } + }, + { + "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "properties": { + "accountName": "restoredaccount-3867", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z" + } + ] + } + }, + { + "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "properties": { + "accountName": "r-table-account-4311", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:13:59Z", + "deletionTime": "2023-04-07T05:30:58Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", + "creationTime": "2023-04-07T05:14:00Z", + "deletionTime": "2023-04-07T05:30:58Z" + } + ] + } + }, + { + "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "properties": { + "accountName": "restoredaccount-7020", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z" + } + ] + } + }, + { + "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "properties": { + "accountName": "r-table-account-6934", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:58:40Z", + "deletionTime": "2023-04-07T06:00:10Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", + "creationTime": "2023-04-07T05:58:41Z", + "deletionTime": "2023-04-07T06:00:10Z" + } + ] + } + }, + { + "name": "6d446c65-d616-4aa3-8138-ed609a031011", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", + "properties": { + "accountName": "cliz4gfhacxt3ra", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:02:28Z", + "deletionTime": "2023-04-07T18:06:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", + "creationTime": "2023-04-07T18:02:29Z", + "deletionTime": "2023-04-07T18:06:12Z" + } + ] + } + }, + { + "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "properties": { + "accountName": "clizzr52zwge4ps", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:16:23Z", + "deletionTime": "2023-04-07T18:19:37Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", + "creationTime": "2023-04-07T18:16:24Z", + "deletionTime": "2023-04-07T18:19:37Z" + } + ] + } + }, + { + "name": "ab946470-3753-427d-a821-ec8a57709a65", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", + "properties": { + "accountName": "cliyfwfppqkfatd", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:23:09Z", + "deletionTime": "2023-04-07T18:49:00Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", + "creationTime": "2023-04-07T18:23:10Z", + "deletionTime": "2023-04-07T18:49:00Z" + } + ] + } + }, + { + "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "properties": { + "accountName": "clinxdvetbmpu2e", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:54:49Z", + "deletionTime": "2023-04-07T19:21:12Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", + "creationTime": "2023-04-07T18:54:50Z", + "deletionTime": "2023-04-07T19:21:12Z" + } + ] + } + }, + { + "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", + "properties": { + "accountName": "clilwpd6a2jivng", + "apiType": "Sql", + "creationTime": "2023-04-07T22:22:56Z", + "deletionTime": "2023-04-07T22:49:32Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", + "creationTime": "2023-04-07T22:22:57Z", + "deletionTime": "2023-04-07T22:49:32Z" + } + ] + } + }, + { + "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", + "properties": { + "accountName": "cli5ohlmiu76mcl", + "apiType": "Sql", + "creationTime": "2023-04-08T14:54:41Z", + "deletionTime": "2023-04-08T15:00:16Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", + "creationTime": "2023-04-08T14:54:42Z", + "deletionTime": "2023-04-08T15:00:16Z" + } + ] + } + }, + { + "name": "20547469-51f9-4bd8-af49-537306f0b327", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", + "properties": { + "accountName": "clifmmb7dwsbns2", + "apiType": "Sql", + "creationTime": "2023-04-08T15:18:01Z", + "deletionTime": "2023-04-08T15:49:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", + "creationTime": "2023-04-08T15:18:02Z", + "deletionTime": "2023-04-08T15:49:43Z" + } + ] + } + }, + { + "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "properties": { + "accountName": "cliv5od2aotadzs", + "apiType": "Sql", + "creationTime": "2023-04-08T15:52:34Z", + "deletionTime": "2023-04-08T16:18:52Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", + "creationTime": "2023-04-08T15:52:35Z", + "deletionTime": "2023-04-08T16:18:52Z" + } + ] + } + }, + { + "name": "62bf06d8-9e56-4434-9078-423179904be7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", + "properties": { + "accountName": "clijr7md3oh7aue", + "apiType": "Sql", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z" + } + ] + } + }, + { + "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "properties": { + "accountName": "clidkdojm4zyywo", + "apiType": "Sql", + "creationTime": "2023-04-08T17:18:16Z", + "deletionTime": "2023-04-08T17:22:23Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", + "creationTime": "2023-04-08T17:18:17Z", + "deletionTime": "2023-04-08T17:22:23Z" + } + ] + } + }, + { + "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "properties": { + "accountName": "clidhqrfu4m2zyv", + "apiType": "Sql", + "creationTime": "2023-04-10T17:53:22Z", + "deletionTime": "2023-04-10T17:56:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", + "creationTime": "2023-04-10T17:53:23Z", + "deletionTime": "2023-04-10T17:56:06Z" + } + ] + } + }, + { + "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "properties": { + "accountName": "mk-ps-pna-enabled", + "apiType": "Sql", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z" + } + ] + } + }, + { + "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "properties": { + "accountName": "mk-test-ps-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z" + } + ] + } + }, + { + "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "properties": { + "accountName": "mayank-test-src", + "apiType": "Sql", + "creationTime": "2023-04-12T19:51:34Z", + "deletionTime": "2023-04-12T23:26:03Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", + "creationTime": "2023-04-12T19:51:35Z", + "deletionTime": "2023-04-12T23:26:03Z" + } + ] + } + }, + { + "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "properties": { + "accountName": "climpgqg4rhbujz", + "apiType": "Sql", + "creationTime": "2023-04-13T13:44:29Z", + "deletionTime": "2023-04-13T13:48:14Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", + "creationTime": "2023-04-13T13:44:30Z", + "deletionTime": "2023-04-13T13:48:14Z" + } + ] + } + }, + { + "name": "6d55af6c-8889-4938-ba25-28afb7858035", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", + "properties": { + "accountName": "mayank-src", + "apiType": "Sql", + "creationTime": "2023-04-13T17:30:02Z", + "deletionTime": "2023-04-13T18:35:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", + "creationTime": "2023-04-13T17:30:03Z", + "deletionTime": "2023-04-13T18:35:56Z" + } + ] + } + }, + { + "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "properties": { + "accountName": "mayank-pspreview-test", + "apiType": "Sql", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z" + } + ] + } + }, + { + "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "properties": { + "accountName": "r-database-account-3188", + "apiType": "Sql", + "creationTime": "2023-04-18T13:44:01Z", + "deletionTime": "2023-04-18T14:06:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", + "creationTime": "2023-04-18T13:44:02Z", + "deletionTime": "2023-04-18T14:06:35Z" + } + ] + } + }, + { + "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "properties": { + "accountName": "restoredaccount-5903", + "apiType": "Sql", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z" + } + ] + } + }, + { + "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "properties": { + "accountName": "r-database-account-8442", + "apiType": "Sql", + "creationTime": "2023-04-18T18:21:09Z", + "deletionTime": "2023-04-18T18:43:26Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", + "creationTime": "2023-04-18T18:21:10Z", + "deletionTime": "2023-04-18T18:43:26Z" + } + ] + } + }, + { + "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", + "properties": { + "accountName": "restoredaccount-5883", + "apiType": "Sql", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z" + } + ] + } + }, + { + "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", + "properties": { + "accountName": "r-database-account-8968", + "apiType": "Sql", + "creationTime": "2023-04-18T20:58:17Z", + "deletionTime": "2023-04-18T21:21:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", + "creationTime": "2023-04-18T20:58:18Z", + "deletionTime": "2023-04-18T21:21:06Z" + } + ] + } + }, + { + "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", + "properties": { + "accountName": "restoredaccount-8805", + "apiType": "Sql", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z" + } + ] + } + }, + { + "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "properties": { + "accountName": "r-database-account-7565", + "apiType": "Sql", + "creationTime": "2023-04-19T04:54:02Z", + "deletionTime": "2023-04-19T05:17:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", + "creationTime": "2023-04-19T04:54:03Z", + "deletionTime": "2023-04-19T05:17:07Z" + } + ] + } + }, + { + "name": "a440fc94-a486-473c-bdeb-b62363814132", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", + "properties": { + "accountName": "restoredaccount-8250", + "apiType": "Sql", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z" + } + ] + } + }, + { + "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "properties": { + "accountName": "r-database-account-3177", + "apiType": "Sql", + "creationTime": "2023-04-19T07:32:19Z", + "deletionTime": "2023-04-19T07:54:43Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", + "creationTime": "2023-04-19T07:32:20Z", + "deletionTime": "2023-04-19T07:54:43Z" + } + ] + } + }, + { + "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "properties": { + "accountName": "restoredaccount-9058", + "apiType": "Sql", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z" + } + ] + } + }, + { + "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "properties": { + "accountName": "r-database-account-9523", + "apiType": "Sql", + "creationTime": "2023-04-19T19:31:56Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", + "creationTime": "2023-04-19T19:31:57Z", + "deletionTime": "2023-04-19T23:47:56Z" + } + ] + } + }, + { + "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", + "properties": { + "accountName": "restoredaccount-4287", + "apiType": "Sql", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z" + } + ] + } + }, + { + "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "properties": { + "accountName": "r-database-account-8435", + "apiType": "Sql", + "creationTime": "2023-04-06T02:11:39Z", + "deletionTime": "2023-04-19T23:49:01Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", + "creationTime": "2023-04-06T02:11:40Z", + "deletionTime": "2023-04-19T23:49:01Z" + } + ] + } + }, + { + "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "properties": { + "accountName": "r-database-account-5580", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T18:31:49Z", + "deletionTime": "2023-04-19T23:53:21Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", + "creationTime": "2023-04-05T18:31:50Z", + "deletionTime": "2023-04-19T23:53:21Z" + } + ] + } + }, + { + "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "properties": { + "accountName": "r-database-account-163", + "apiType": "Sql", + "creationTime": "2023-04-18T16:23:17Z", + "deletionTime": "2023-04-19T23:54:07Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", + "creationTime": "2023-04-18T16:23:18Z", + "deletionTime": "2023-04-19T23:54:07Z" + } + ] + } + }, + { + "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "properties": { + "accountName": "r-database-account-8550", + "apiType": "Sql", + "creationTime": "2023-04-06T02:07:24Z", + "deletionTime": "2023-04-19T23:57:08Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", + "creationTime": "2023-04-06T02:07:26Z", + "deletionTime": "2023-04-19T23:57:08Z" + } + ] + } + }, + { + "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "properties": { + "accountName": "r-database-account-605", + "apiType": "Sql", + "creationTime": "2023-04-20T00:04:33Z", + "deletionTime": "2023-04-20T00:05:28Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", + "creationTime": "2023-04-20T00:04:34Z", + "deletionTime": "2023-04-20T00:05:28Z" + } + ] + } + }, + { + "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", + "properties": { + "accountName": "r-database-account-1077", + "apiType": "Sql", + "creationTime": "2023-04-20T00:07:31Z", + "deletionTime": "2023-04-20T00:30:02Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", + "creationTime": "2023-04-20T00:07:32Z", + "deletionTime": "2023-04-20T00:30:02Z" + } + ] + } + }, + { + "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", + "properties": { + "accountName": "restoredaccount-5322", + "apiType": "Sql", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z" + } + ] + } + }, + { + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", + "properties": { + "accountName": "r-database-account-5132", + "apiType": "Sql", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" + } + ] + } + }, + { + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" + } + ] + } + }, + { + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", + "properties": { + "accountName": "restoredaccount-1053", + "apiType": "Sql", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-21T17:39:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "properties": { + "accountName": "drop-continuous7", + "apiType": "Sql", + "creationTime": "2022-05-26T18:49:51Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", + "creationTime": "2022-05-26T18:49:52Z" + } + ] + } + }, + { + "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "properties": { + "accountName": "periodicacctdrop", + "apiType": "Sql", + "creationTime": "2022-08-24T22:57:51Z", + "oldestRestorableTime": "2023-04-13T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", + "creationTime": "2022-08-24T22:57:51Z" + } + ] + } + }, + { + "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "properties": { + "accountName": "periodicacctdrop2", + "apiType": "Sql", + "creationTime": "2022-05-26T20:16:50Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", + "creationTime": "2022-05-26T20:16:50Z" + } + ] + } + }, + { + "name": "b169ba58-4696-4196-99a4-51995d99f004", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "properties": { + "accountName": "readregionrestore-1", + "apiType": "Sql", + "creationTime": "2023-03-02T00:15:37Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "Southeast Asia", + "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", + "creationTime": "2023-03-02T00:15:37Z" + }, + { + "locationName": "Central India", + "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", + "creationTime": "2023-03-02T00:38:10Z" + } + ] + } + }, + { + "name": "83301fff-71b5-4cb0-a399-3c6331b78411", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "properties": { + "accountName": "portal-mongo-test", + "apiType": "MongoDB", + "creationTime": "2023-03-27T17:28:08Z", + "deletionTime": "2023-03-27T17:30:49Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", + "creationTime": "2023-03-27T17:28:09Z", + "deletionTime": "2023-03-27T17:30:49Z" + } + ] + } + }, + { + "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "properties": { + "accountName": "amisi-8bd4a726", + "apiType": "Sql", + "creationTime": "2023-03-29T07:24:07Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", + "creationTime": "2023-03-29T07:26:03Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", + "creationTime": "2023-03-29T07:24:08Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "properties": { + "accountName": "amisi-da11000f", + "apiType": "Sql", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", + "creationTime": "2023-03-29T07:09:11Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "properties": { + "accountName": "dsapaliga-restore-test2", + "apiType": "Sql", + "creationTime": "2023-03-29T19:36:21Z", + "deletionTime": "2023-03-29T22:55:47Z", + "oldestRestorableTime": "2023-03-22T22:55:47Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", + "creationTime": "2023-03-29T19:36:22Z", + "deletionTime": "2023-03-29T22:55:47Z" + } + ] + } + }, + { + "name": "66326971-fd72-4b66-9495-da9f95f0e86a", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "properties": { + "accountName": "dsapaliga-restore-test3", + "apiType": "Sql", + "creationTime": "2023-03-29T21:45:59Z", + "deletionTime": "2023-03-29T22:55:54Z", + "oldestRestorableTime": "2023-03-22T22:55:54Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", + "creationTime": "2023-03-29T21:48:10Z", + "deletionTime": "2023-03-29T21:57:56Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", + "creationTime": "2023-03-29T21:46:00Z", + "deletionTime": "2023-03-29T22:55:54Z" + } + ] + } + }, + { + "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "properties": { + "accountName": "dsapaliga-restore-test4", + "apiType": "Sql", + "creationTime": "2023-03-29T22:08:33Z", + "deletionTime": "2023-03-29T22:56:00Z", + "oldestRestorableTime": "2023-03-22T22:56:00Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", + "creationTime": "2023-03-29T22:08:34Z", + "deletionTime": "2023-03-29T22:56:00Z" + } + ] + } + }, + { + "name": "84a35eb5-784c-4923-a52f-60bd04765953", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "properties": { + "accountName": "dsapaliga-restore-test6", + "apiType": "Sql", + "creationTime": "2023-03-29T22:24:23Z", + "deletionTime": "2023-03-29T22:56:18Z", + "oldestRestorableTime": "2023-03-22T22:56:18Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", + "creationTime": "2023-03-29T22:26:42Z", + "deletionTime": "2023-03-29T22:56:18Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", + "creationTime": "2023-03-29T22:24:24Z", + "deletionTime": "2023-03-29T22:56:18Z" + } + ] + } + }, + { + "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "properties": { + "accountName": "dsapaliga-restored-westus-m", + "apiType": "Sql", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z", + "oldestRestorableTime": "2023-03-22T22:56:46Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z" + } + ] + } + }, + { + "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "properties": { + "accountName": "cli-continuous30-sopplsfv", + "apiType": "Sql", + "creationTime": "2023-03-29T23:59:38Z", + "deletionTime": "2023-03-30T00:12:32Z", + "oldestRestorableTime": "2023-03-23T00:12:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", + "creationTime": "2023-03-30T00:02:04Z", + "deletionTime": "2023-03-30T00:12:32Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", + "creationTime": "2023-03-29T23:59:39Z", + "deletionTime": "2023-03-30T00:12:32Z" + } + ] + } + }, + { + "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "properties": { + "accountName": "cli-continuous30-l5utea24-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "properties": { + "accountName": "cli-continuous30-l5utea24", + "apiType": "Sql", + "creationTime": "2023-03-30T00:33:44Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", + "creationTime": "2023-03-30T00:36:04Z", + "deletionTime": "2023-03-30T01:02:30Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", + "creationTime": "2023-03-30T00:33:45Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "properties": { + "accountName": "cli-continuous30-3eb7aosu", + "apiType": "Sql", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z", + "oldestRestorableTime": "2023-03-23T03:46:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", + "creationTime": "2023-03-30T03:35:19Z", + "deletionTime": "2023-03-30T03:46:34Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z" + } + ] + } + }, + { + "name": "856077e3-8335-4b95-9577-2ebf016ee892", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "properties": { + "accountName": "cli-continuous30-tqwxb6nj", + "apiType": "Sql", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z", + "oldestRestorableTime": "2023-03-23T04:05:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", + "creationTime": "2023-03-30T03:53:50Z", + "deletionTime": "2023-03-30T04:05:05Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z" + } + ] + } + }, + { + "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "properties": { + "accountName": "cli-continuous30-cmjnvki7", + "apiType": "Sql", + "creationTime": "2023-03-30T04:58:52Z", + "deletionTime": "2023-03-30T05:12:19Z", + "oldestRestorableTime": "2023-03-23T05:12:19Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", + "creationTime": "2023-03-30T05:01:09Z", + "deletionTime": "2023-03-30T05:12:19Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", + "creationTime": "2023-03-30T04:58:53Z", + "deletionTime": "2023-03-30T05:12:19Z" + } + ] + } + }, + { + "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5", + "apiType": "Sql", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", + "creationTime": "2023-03-30T14:12:07Z", + "deletionTime": "2023-03-30T14:38:59Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "f68b64bb-38f3-429b-be8f-81e44763929d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "properties": { + "accountName": "cli-continuous30-ta4jrave", + "apiType": "Sql", + "creationTime": "2023-03-30T14:48:08Z", + "deletionTime": "2023-03-30T15:16:54Z", + "oldestRestorableTime": "2023-03-23T15:16:54Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", + "creationTime": "2023-03-30T14:50:33Z", + "deletionTime": "2023-03-30T15:16:54Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", + "creationTime": "2023-03-30T14:48:09Z", + "deletionTime": "2023-03-30T15:16:54Z" + } + ] + } + }, + { + "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "properties": { + "accountName": "amisi-8bd4a726-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z" + } + ] + } + }, + { + "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "properties": { + "accountName": "amisi-765b8849", + "apiType": "Sql", + "creationTime": "2023-03-30T20:15:03Z", + "deletionTime": "2023-03-31T06:20:15Z", + "oldestRestorableTime": "2023-03-21T17:39:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", + "creationTime": "2023-03-30T20:15:04Z", + "deletionTime": "2023-03-31T06:20:15Z" + } + ] + } + }, + { + "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "apiType": "Sql", + "creationTime": "2022-09-29T05:44:13Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", + "creationTime": "2022-09-29T05:44:13Z" + } + ] + } + }, + { + "name": "a672303a-644d-4996-9d49-b3d2eddea72d", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "apiType": "Sql", + "creationTime": "2023-03-10T00:42:29Z", + "oldestRestorableTime": "2023-03-21T17:39:58Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", + "creationTime": "2023-03-10T00:42:29Z" + } + ] + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "120", + "Content-Type": "application/json", + "traceparent": "00-8fc790570281632e0e530d25ee022195-769ed422a4ef9302-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "22534f8e5872438b02c41e6a23b95259", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-database-6908" + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:01 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908/operationResults/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ec547ba-2139-4bca-a6f7-3a876a2aebfe", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "a0dc253b-9eb9-4d21-87ec-4a0229e8f91b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174002Z:7ec547ba-2139-4bca-a6f7-3a876a2aebfe" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-18f59f83ccbc2e31-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ccd482ce65b3af41657327edf1d28eef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8e80766c-5a4a-4861-845d-3ffda1f5ac52", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "8e80766c-5a4a-4861-845d-3ffda1f5ac52", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174002Z:8e80766c-5a4a-4861-845d-3ffda1f5ac52" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-a75f9105f1a70ee0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6a5ee8cdc5a79df674776f384045f136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:02 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1389e1e8-1e63-4fc0-9ad7-b173a878531a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "1389e1e8-1e63-4fc0-9ad7-b173a878531a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174003Z:1389e1e8-1e63-4fc0-9ad7-b173a878531a" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-ca8e670dfbc76c56-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a19c7ece85e487a647aeebe4c9edeae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c2b96f53-b76c-48d3-9194-6fe2b4230637", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "c2b96f53-b76c-48d3-9194-6fe2b4230637", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174004Z:c2b96f53-b76c-48d3-9194-6fe2b4230637" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-20946c83409a527a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "697827aa8b6d09f78b36573bf5086f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "acaf335f-20a3-4ce4-89aa-107f10560988", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "acaf335f-20a3-4ce4-89aa-107f10560988", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174005Z:acaf335f-20a3-4ce4-89aa-107f10560988" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-216d8145f98e147f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "731ef081ed35470a41d622f9d911d387", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:07 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c9f5102f-e8d6-4f90-be33-cfa7a4c71ede", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "c9f5102f-e8d6-4f90-be33-cfa7a4c71ede", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174007Z:c9f5102f-e8d6-4f90-be33-cfa7a4c71ede" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-a1e6933de1f39693-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "188e8f8d88cd43c8869315ad2d6b913e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78aaaf6a-642e-4d5b-bf34-a4e800c17cb1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "78aaaf6a-642e-4d5b-bf34-a4e800c17cb1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174011Z:78aaaf6a-642e-4d5b-bf34-a4e800c17cb1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/a0dc253b-9eb9-4d21-87ec-4a0229e8f91b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-ebfc11b3267cab4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d863cc3f77cebdaa1c30279668fe2f7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b395782d-1325-4a21-af54-41a8c9866a5d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "b395782d-1325-4a21-af54-41a8c9866a5d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174019Z:b395782d-1325-4a21-af54-41a8c9866a5d" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8fc790570281632e0e530d25ee022195-62998b77153f0a7b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "66aed062567af85127dbeca1d85d1ad6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "479", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d33ae2df-8c42-4194-8f60-eab5cc5aa665", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "d33ae2df-8c42-4194-8f60-eab5cc5aa665", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174020Z:d33ae2df-8c42-4194-8f60-eab5cc5aa665" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", + "name": "sql-database-6908", + "properties": { + "resource": { + "id": "sql-database-6908", + "_rid": "qZVAAA==", + "_self": "dbs/qZVAAA==/", + "_etag": "\u002200000f12-0000-0600-0000-644178f90000\u0022", + "_colls": "colls/", + "_users": "users/", + "_ts": 1682012409 + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908/containers/sql-container-1879?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "489", + "Content-Type": "application/json", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-1750ca7b3c2666dd-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ad0cb9e3b9fbe416d1fc9d6032da8763", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-container-1879", + "indexingPolicy": { + "automatic": true, + "indexingMode": "consistent", + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point" + ] + } + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + } + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:20 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908/containers/sql-container-1879/operationResults/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed7cf761-0a76-48f8-945c-54032f6950fd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "48de1bb7-9c23-486d-9fc2-9a9d4830f7f3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174020Z:ed7cf761-0a76-48f8-945c-54032f6950fd" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-b9f2b3bf4bcb1ca3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "45845151cc2317679781a859b498f501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5d3af200-f6e2-4219-92c7-933b8f25f60f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "5d3af200-f6e2-4219-92c7-933b8f25f60f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174020Z:5d3af200-f6e2-4219-92c7-933b8f25f60f" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-4a0852ef1ceb6251-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "123d3e6418bc1f19d092434ac68bdcec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fcae0627-586b-4496-990b-951a510d7871", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "fcae0627-586b-4496-990b-951a510d7871", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174021Z:fcae0627-586b-4496-990b-951a510d7871" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-1f96ff84d4de84dd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e00e863c4255ce40e24525a91b8fc6d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:22 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f250565a-e9b4-479d-913e-f48eb08aa7cb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "f250565a-e9b4-479d-913e-f48eb08aa7cb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174022Z:f250565a-e9b4-479d-913e-f48eb08aa7cb" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-adb261c62e4cc438-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ca26f1baada7385937657590891d510c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3aa3b687-19f7-464a-8a04-142f3f68fc4d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "3aa3b687-19f7-464a-8a04-142f3f68fc4d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174024Z:3aa3b687-19f7-464a-8a04-142f3f68fc4d" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-4e0a48f46f30c236-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d1dbca5158921abfd6f2f76f3700340", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "30b2c7ae-7714-4b46-b4d1-e7e2f6f3633f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "30b2c7ae-7714-4b46-b4d1-e7e2f6f3633f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174026Z:30b2c7ae-7714-4b46-b4d1-e7e2f6f3633f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-9449e466af993c8a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d48f70cb11658e452cd5a8f0cdaf44c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d52e7cb1-5c7c-4a2a-a28c-2d8ea0282758", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "d52e7cb1-5c7c-4a2a-a28c-2d8ea0282758", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174030Z:d52e7cb1-5c7c-4a2a-a28c-2d8ea0282758" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/48de1bb7-9c23-486d-9fc2-9a9d4830f7f3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-a255ab793b7fcc36-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5f0419f49871a5494604cd387ee345c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c0dac18f-49f5-40c1-b245-dddd08a8177e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "c0dac18f-49f5-40c1-b245-dddd08a8177e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174038Z:c0dac18f-49f5-40c1-b245-dddd08a8177e" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908/containers/sql-container-1879?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6c471b914c1eee7f2e9e50bb66d7cb98-7a7ec95c6545a080-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "19c534627c8e93a6768e00b36cbb544d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "1374", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 17:40:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd539f1f-5f5a-42a2-b33a-6cec9c23044c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "bd539f1f-5f5a-42a2-b33a-6cec9c23044c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T174038Z:bd539f1f-5f5a-42a2-b33a-6cec9c23044c" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488/sqlDatabases/sql-database-6908/containers/sql-container-1879", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", + "name": "sql-container-1879", + "properties": { + "resource": { + "id": "sql-container-1879", + "indexingPolicy": { + "indexingMode": "consistent", + "automatic": true, + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + }, + { + "path": "/\u0022_etag\u0022/?" + } + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point", + "LineString", + "Polygon", + "MultiPolygon" + ] + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + }, + "uniqueKeyPolicy": { + "uniqueKeys": [] + }, + "conflictResolutionPolicy": { + "mode": "LastWriterWins", + "conflictResolutionPath": "/_ts", + "conflictResolutionProcedure": "" + }, + "backupPolicy": { + "type": 1 + }, + "geospatialConfig": { + "type": "Geography" + }, + "_rid": "qZVAAJNbMzM=", + "_ts": 1682012429, + "_self": "dbs/qZVAAA==/colls/qZVAAJNbMzM=/", + "_etag": "\u002200001412-0000-0600-0000-6441790d0000\u0022", + "_docs": "docs/", + "_sprocs": "sprocs/", + "_triggers": "triggers/", + "_udfs": "udfs/", + "_conflicts": "conflicts/", + "statistics": [ + { + "id": "0", + "sizeInKB": 0, + "documentCount": 0, + "sampledDistinctPartitionKeyCount": 0, + "partitionKeys": [] + } + ] + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "578", + "Content-Type": "application/json", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-ab182660e51bcff6-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6bd98169cea32633e98d60440c104990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "location": "westcentralus", + "properties": { + "locations": [ + { + "locationName": "northcentralus", + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "createMode": "Restore", + "restoreParameters": { + "restoreMode": "PointInTime", + "sourceBackupLocation": "West Central US", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "restoreTimestampInUtc": "2023-04-20T18:41:56.0000000Z" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2864", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:03 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310/operationResults/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "09ec78a4-8262-4fe1-98d2-4dccec506c8c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "b63256eb-e758-4b92-9870-08a36350f15b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184503Z:09ec78a4-8262-4fe1-98d2-4dccec506c8c" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310", + "name": "restoredaccount-2310", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T18:45:01.251949Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "restoreTimestampInUtc": "2023-04-20T18:41:56Z", + "sourceBackupLocation": "West Central US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T18:45:01.251949Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T18:45:01.251949Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T18:45:01.251949Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T18:45:01.251949Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-4cd17aa0f1c6ab35-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "61140e7f5b6c65be91f2a4ee464f697e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "53da212f-5c16-428e-bad6-130e6fba6235", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "53da212f-5c16-428e-bad6-130e6fba6235", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184503Z:53da212f-5c16-428e-bad6-130e6fba6235" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-5307732ec98b7aad-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d8b23b762ba33fe0966fbbbec9c90b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b2986687-6122-42ca-a4f9-8717c8518b09", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "b2986687-6122-42ca-a4f9-8717c8518b09", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184504Z:b2986687-6122-42ca-a4f9-8717c8518b09" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-be96fd19bd17380d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fec5af02e8fc8623cf34593992892c21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:05 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d138c924-d2ca-4276-8099-5880c8ee5b35", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "d138c924-d2ca-4276-8099-5880c8ee5b35", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184506Z:d138c924-d2ca-4276-8099-5880c8ee5b35" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-5f733b645afed612-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "73e0647e5dad1cf50fe15705600379f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "58125342-8ed1-4cc0-b9f9-7ce986981f79", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "58125342-8ed1-4cc0-b9f9-7ce986981f79", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184507Z:58125342-8ed1-4cc0-b9f9-7ce986981f79" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-9d947d85b606814b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "96ecf3616b8ace82ff045e8609c5a080", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6e5fcbb9-5ad1-4484-a991-7f383fda6e90", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6e5fcbb9-5ad1-4484-a991-7f383fda6e90", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184509Z:6e5fcbb9-5ad1-4484-a991-7f383fda6e90" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-ebd70a1a42a3147a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "873cd93a1dbca403baa8ef1a901e25cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1955feae-70b9-43c3-8194-11c84f0a2485", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "1955feae-70b9-43c3-8194-11c84f0a2485", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184513Z:1955feae-70b9-43c3-8194-11c84f0a2485" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-753ed1df1957d230-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9ed763ba969c1397e21174a8ff6f124a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78497f14-ef4a-4128-bb18-80d82cbfd8c8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "78497f14-ef4a-4128-bb18-80d82cbfd8c8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184521Z:78497f14-ef4a-4128-bb18-80d82cbfd8c8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-fd844335ad94d68e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "86cbd740f1c64439f047dce17b673ee0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:45:37 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "76f9924c-8058-44c3-8013-b97979900166", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "76f9924c-8058-44c3-8013-b97979900166", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184537Z:76f9924c-8058-44c3-8013-b97979900166" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-3c8293613ee404da-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a5cb91df01eda3e34228a5aaa95aa54a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:46:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7a7b3553-ac35-4c8c-943f-2f9a96c0c485", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "7a7b3553-ac35-4c8c-943f-2f9a96c0c485", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184609Z:7a7b3553-ac35-4c8c-943f-2f9a96c0c485" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-910ebc1f605a19f7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b9d9a5969f53c9052a93ae55bab6987a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:46:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fca6e0ef-a169-4bc3-8e9a-65892d5e9732", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "fca6e0ef-a169-4bc3-8e9a-65892d5e9732", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184641Z:fca6e0ef-a169-4bc3-8e9a-65892d5e9732" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-9d8d3052146811b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6dc993d36ca33f5cf327449d4c8e9a95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:47:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "12bb33c2-a4b2-4dad-97a9-aace1a3cb139", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "12bb33c2-a4b2-4dad-97a9-aace1a3cb139", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184713Z:12bb33c2-a4b2-4dad-97a9-aace1a3cb139" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-1d9260189240c336-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d64b91a2848d3f8d8c027b59528ee98b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:47:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd4800ca-ade8-4329-ae17-1c199e23910c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "bd4800ca-ade8-4329-ae17-1c199e23910c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184745Z:bd4800ca-ade8-4329-ae17-1c199e23910c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-4c81f1687c5c9240-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "16d72a90379029a7489ac62c5a677d9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:48:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b3b596c1-3588-4f7f-a45c-968172140062", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "b3b596c1-3588-4f7f-a45c-968172140062", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184818Z:b3b596c1-3588-4f7f-a45c-968172140062" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-ab430e143b666f5a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "29b318f9c16a4eec068ae1a0f102ec65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:48:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "67402b18-5ab7-4614-a3c6-440e3271b056", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "67402b18-5ab7-4614-a3c6-440e3271b056", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184850Z:67402b18-5ab7-4614-a3c6-440e3271b056" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-d702e69d94cc363a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "210db83d84b66a05e9228ef3be60e424", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:49:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "927e02f1-76f9-4531-864b-29de29c31d1b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "927e02f1-76f9-4531-864b-29de29c31d1b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184922Z:927e02f1-76f9-4531-864b-29de29c31d1b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-eea0dec81c9fd64f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a60de85c0dacf213e890f0655073745", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:49:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a5cb76ab-b382-4c3f-bd70-e6ecfa6fe30b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "a5cb76ab-b382-4c3f-bd70-e6ecfa6fe30b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T184954Z:a5cb76ab-b382-4c3f-bd70-e6ecfa6fe30b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-c793d6b8b71f4624-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a2ee60ae5b5a74e513483f4833f990a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:50:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c24809b9-6083-49ba-bb9a-3494896b1d3d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "c24809b9-6083-49ba-bb9a-3494896b1d3d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185026Z:c24809b9-6083-49ba-bb9a-3494896b1d3d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-c5b5766dd59632c6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "121abda5b2a27c8a973ee22d74ff15e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:50:58 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f68f7f55-d40c-46c6-a4d7-c66c7b8c5253", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "f68f7f55-d40c-46c6-a4d7-c66c7b8c5253", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185058Z:f68f7f55-d40c-46c6-a4d7-c66c7b8c5253" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-7797dfd20aee7f97-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d4449ea427129c9f9ec269280d89b44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:51:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1205e865-8a3e-499b-825f-afea48433c55", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "1205e865-8a3e-499b-825f-afea48433c55", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185130Z:1205e865-8a3e-499b-825f-afea48433c55" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-da8dc6b21705b0fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97616af824ecfba3d6720b1c78b8ff14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:52:02 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "46ad41ba-e1fc-44b9-9247-eadb3c9a195e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "46ad41ba-e1fc-44b9-9247-eadb3c9a195e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185202Z:46ad41ba-e1fc-44b9-9247-eadb3c9a195e" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-10c2a147333b7ac6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ea5e5d3333b46233f4f019b68bf8fbbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:52:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af5af248-421b-4e43-8ea3-a03aec61c573", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "af5af248-421b-4e43-8ea3-a03aec61c573", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185234Z:af5af248-421b-4e43-8ea3-a03aec61c573" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-eb952522e6473adc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0a359ea27d9dc6f5a54887ff37acb140", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:53:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7934ccb8-3151-47d8-8733-1582b1531302", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "7934ccb8-3151-47d8-8733-1582b1531302", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185306Z:7934ccb8-3151-47d8-8733-1582b1531302" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-f617f6d23daf52ea-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "225f12ecb17ac58f36fea3fb0bec70dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:53:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3b02714d-b427-43fd-8310-783d071811ae", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "3b02714d-b427-43fd-8310-783d071811ae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185339Z:3b02714d-b427-43fd-8310-783d071811ae" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-b188ed166e434e17-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "da7a4b76f583b5766898446cac332b47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:54:10 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "47aca787-7b38-44bc-a3bd-e1106ef95c93", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "47aca787-7b38-44bc-a3bd-e1106ef95c93", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185411Z:47aca787-7b38-44bc-a3bd-e1106ef95c93" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-a2b16c3ab357f703-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "79c9d83fd899f0450e6fd39ed9f9bab9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:54:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f1964354-df93-4582-ae29-191f110fa1b6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "f1964354-df93-4582-ae29-191f110fa1b6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185443Z:f1964354-df93-4582-ae29-191f110fa1b6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-842c01328386b08e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb89a9d8d632f6bd9ca9bae26d231902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:55:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7852866c-9e71-4d23-925e-3ce37c54e266", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "7852866c-9e71-4d23-925e-3ce37c54e266", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185515Z:7852866c-9e71-4d23-925e-3ce37c54e266" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-e141ab3bfa9882cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "32bc5cd3f7229d44068acb1322d7dc6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:55:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c72c3f87-58d3-4b2d-9e38-e541ba3b92e7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "c72c3f87-58d3-4b2d-9e38-e541ba3b92e7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185548Z:c72c3f87-58d3-4b2d-9e38-e541ba3b92e7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-53ac90a415160fa0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "02938bdd3faa69151bd3ddef1e6282ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:56:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "19fb2fe6-15d2-4ebc-98ea-cdf183ec88d5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "19fb2fe6-15d2-4ebc-98ea-cdf183ec88d5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185620Z:19fb2fe6-15d2-4ebc-98ea-cdf183ec88d5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-efc5894fd3eab6ff-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7dcbd056883de19664ece4a70aaad4c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:56:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2d8ec58e-0fdd-43ce-a146-5a49f62305f5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "2d8ec58e-0fdd-43ce-a146-5a49f62305f5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185652Z:2d8ec58e-0fdd-43ce-a146-5a49f62305f5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-024c557758c83fa1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2054bcd169094584652174f1a547ea3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:57:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c52ec019-9cb0-4669-af1d-1698be9d74bd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "c52ec019-9cb0-4669-af1d-1698be9d74bd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185724Z:c52ec019-9cb0-4669-af1d-1698be9d74bd" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-69af40a5f757c4e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "51bce1075e0c5431f5b29ebe5a6d5e71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:57:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d5e33971-81fd-4a9a-8ee3-c276e75422c4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "d5e33971-81fd-4a9a-8ee3-c276e75422c4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185756Z:d5e33971-81fd-4a9a-8ee3-c276e75422c4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/b63256eb-e758-4b92-9870-08a36350f15b?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-da619b36c6fe3ea3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d32218ff9f5d405a783737ea7146c60f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:27 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba3e2e36-b7a1-4536-9683-c29fc2ded849", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ba3e2e36-b7a1-4536-9683-c29fc2ded849", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185828Z:ba3e2e36-b7a1-4536-9683-c29fc2ded849" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e5779e90c0258e29dae15da048117a5e-6224e1e66b89ea42-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "299f406d83ed6eb819b0eddd779939d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "3229", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:27 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d941bbe-81ce-43f5-b6c3-d1ccdc79af34", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "0d941bbe-81ce-43f5-b6c3-d1ccdc79af34", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185828Z:0d941bbe-81ce-43f5-b6c3-d1ccdc79af34" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310", + "name": "restoredaccount-2310", + "location": "West Central US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-20T18:58:16.729046Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://restoredaccount-2310.documents.azure.com:443/", + "sqlEndpoint": "https://restoredaccount-2310.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "BoundedStaleness", + "maxIntervalInSeconds": 1000, + "maxStalenessPrefix": 300 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-2310-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-2310-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "documentEndpoint": "https://restoredaccount-2310-northcentralus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-2310-northcentralus", + "locationName": "North Central US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "restoreTimestampInUtc": "2023-04-20T18:41:56Z", + "sourceBackupLocation": "West Central US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-20T18:58:16.729046Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-20T18:58:16.729046Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-20T18:58:16.729046Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-20T18:58:16.729046Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1488?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-736f61bcae3d0c8d-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0150a6f4ab326846867bd8d52747e3ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:28 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f1bb0fcf-62b0-4582-ab7d-2225e242ee59", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "3fc3f2bb-703d-4be6-8846-f8a9990887fc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185829Z:f1bb0fcf-62b0-4582-ab7d-2225e242ee59" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-2d7fbabdfb577be7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "caf65dfdc4f6c2ddfa37a371aae347d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "376c97be-ed50-4b32-a969-060a25dde3eb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "376c97be-ed50-4b32-a969-060a25dde3eb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185829Z:376c97be-ed50-4b32-a969-060a25dde3eb" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-9455ddeba76d83bd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e8f13fcc1f48be0b22d4a17ef098b508", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5b0016d0-11cb-4855-a601-51c389c05d3e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "5b0016d0-11cb-4855-a601-51c389c05d3e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185831Z:5b0016d0-11cb-4855-a601-51c389c05d3e" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-f04c13ed9cfb0ecc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c9d7f9b2185027b8b18e1f959112d17d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3c60c057-84fc-4add-ada3-8b638030dfed", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "3c60c057-84fc-4add-ada3-8b638030dfed", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185832Z:3c60c057-84fc-4add-ada3-8b638030dfed" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-ae64b747dfd1790a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "73e0e76ce08cde965237a821235fd162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e9cb837d-d3d8-42b4-ba38-9a18fca4cead", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "e9cb837d-d3d8-42b4-ba38-9a18fca4cead", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185833Z:e9cb837d-d3d8-42b4-ba38-9a18fca4cead" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-0a4e4ace1fece4db-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b0be9a817e0cb48186ca36b900752d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:35 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e2e2f75a-89cb-4f43-b0d3-8b75a2ebe58a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "e2e2f75a-89cb-4f43-b0d3-8b75a2ebe58a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185835Z:e2e2f75a-89cb-4f43-b0d3-8b75a2ebe58a" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-c4d740e93aeb7198-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0911240342b8d27c63f8771970960352", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "14f62e3b-814f-434c-a8c0-8d957d681020", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "14f62e3b-814f-434c-a8c0-8d957d681020", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185839Z:14f62e3b-814f-434c-a8c0-8d957d681020" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-cb8e14a43ffd866f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f613bdbd2053ee71662becc1a9dcdedc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:58:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a56641c-5ed7-48f3-938c-b668eb5903fa", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "5a56641c-5ed7-48f3-938c-b668eb5903fa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185847Z:5a56641c-5ed7-48f3-938c-b668eb5903fa" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-99ee24815dd47cce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff1e970ac84d3ea91eec4d13066844ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:59:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8a8b912-e99f-4247-be29-4b22a9e580f5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "d8a8b912-e99f-4247-be29-4b22a9e580f5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185903Z:d8a8b912-e99f-4247-be29-4b22a9e580f5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-eaadd01e9f16c642-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "43fce4c63662e2bcb223a28c56ba2887", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 18:59:35 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e43a0c4a-a7df-4e7f-bfd5-fb2f59300f5a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "e43a0c4a-a7df-4e7f-bfd5-fb2f59300f5a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T185935Z:e43a0c4a-a7df-4e7f-bfd5-fb2f59300f5a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-05a7f94c1aec6ca1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d80e9b1a0478f50513d4d867d35de7fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:00:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cfea72e4-2dd5-4c91-8a9d-724d22624501", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "cfea72e4-2dd5-4c91-8a9d-724d22624501", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190007Z:cfea72e4-2dd5-4c91-8a9d-724d22624501" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-4cb87ac0d9a8bfd1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c5fbfce79be0d47ada3b4c29251de864", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:00:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee68b4be-66de-4f50-b629-1c522523e266", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "ee68b4be-66de-4f50-b629-1c522523e266", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190039Z:ee68b4be-66de-4f50-b629-1c522523e266" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-c80a86aace91944a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6bf9c6c46b59c277df07308d5e550e54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:01:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "25a7b611-909e-415b-a9f1-b44993e2d530", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "25a7b611-909e-415b-a9f1-b44993e2d530", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190112Z:25a7b611-909e-415b-a9f1-b44993e2d530" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-a8ab44587bc7eb2b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5aa4a43b62be7fa6213afd3cb7dbcff5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:01:43 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ca18bdb8-bfd4-46ae-9967-e63c4ac8bffa", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ca18bdb8-bfd4-46ae-9967-e63c4ac8bffa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190144Z:ca18bdb8-bfd4-46ae-9967-e63c4ac8bffa" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-844618f058d678e1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0da373ec7b647ba48438e6d86aec7685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:02:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0cefb4a3-ae8d-4a4c-9b8b-31853d35a99b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "0cefb4a3-ae8d-4a4c-9b8b-31853d35a99b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190216Z:0cefb4a3-ae8d-4a4c-9b8b-31853d35a99b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-483373c7e94e24ec-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "81eef72d8e7961a51f7a4a1f6e3a0b04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:02:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee6284c9-b9e9-48ce-86b7-19cfc54af91b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ee6284c9-b9e9-48ce-86b7-19cfc54af91b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190248Z:ee6284c9-b9e9-48ce-86b7-19cfc54af91b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-62092e2d8d66ba72-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eaa03a3701b2c0f00028d5867cce1434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:03:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "60978908-5142-4084-8dba-fdf4245ea804", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "60978908-5142-4084-8dba-fdf4245ea804", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190320Z:60978908-5142-4084-8dba-fdf4245ea804" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-d344938edf43ea48-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bf0f78c44ded5e7cce41eeea31840d49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:03:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "604c3d43-6f6d-433f-b8ab-b395d6a62558", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "604c3d43-6f6d-433f-b8ab-b395d6a62558", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190352Z:604c3d43-6f6d-433f-b8ab-b395d6a62558" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-b341c15101e6be09-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30a0e22d8b4b2bd2072d8150b81fe450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:04:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f445bed-a64b-4cdc-9916-bea677f47e64", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "4f445bed-a64b-4cdc-9916-bea677f47e64", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190424Z:4f445bed-a64b-4cdc-9916-bea677f47e64" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-57765583ca59a672-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f55b16654b2bea16be421c7012058e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:04:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9867638f-7697-4628-b02a-7c60323b2386", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "9867638f-7697-4628-b02a-7c60323b2386", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190456Z:9867638f-7697-4628-b02a-7c60323b2386" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-0342e3192cfae632-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9a588b1be32d38e8a5e3b7bfcc2ba5ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:05:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a77f17c1-7979-41d1-a897-ac25eeffc9d5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a77f17c1-7979-41d1-a897-ac25eeffc9d5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190528Z:a77f17c1-7979-41d1-a897-ac25eeffc9d5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-f68b937ab7f20205-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a849d5d1728e11ecbb671096f611901", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:06:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "18729597-8277-4476-b25b-50a7aecac0a5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "18729597-8277-4476-b25b-50a7aecac0a5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190600Z:18729597-8277-4476-b25b-50a7aecac0a5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-18bce442e0992ef2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d35059f49c681232e234f4793571d93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:06:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d7b10011-e131-468a-94b6-8cb562a20a43", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d7b10011-e131-468a-94b6-8cb562a20a43", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190633Z:d7b10011-e131-468a-94b6-8cb562a20a43" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-98b1ce1f384fd6c4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "74136d9c748103526c77cf7672dec944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:07:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cb7ae42a-0c4b-4885-a281-36a46408d369", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "cb7ae42a-0c4b-4885-a281-36a46408d369", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190705Z:cb7ae42a-0c4b-4885-a281-36a46408d369" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-edc3fcf6fc609df2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c620b6ca78f513e87902ec05c7d74d73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:07:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ce855aec-73ac-467f-bdab-b752376a7233", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "ce855aec-73ac-467f-bdab-b752376a7233", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190737Z:ce855aec-73ac-467f-bdab-b752376a7233" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-81ff10c58e612aef-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "016dde98a44e2b80b332c04f7aad0f4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd535f23-2ecf-41e4-80d4-0ba1ad542002", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "dd535f23-2ecf-41e4-80d4-0ba1ad542002", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190809Z:dd535f23-2ecf-41e4-80d4-0ba1ad542002" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3fc3f2bb-703d-4be6-8846-f8a9990887fc?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fef7bac67a5dc7883e64b53f6ac44939-fc2fd993d756acba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dd7c0b5a5737239d85fffb7e874d3b95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c5df48af-a727-429d-95ea-c4f49d5efc5b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "c5df48af-a727-429d-95ea-c4f49d5efc5b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190841Z:c5df48af-a727-429d-95ea-c4f49d5efc5b" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-2975/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2310?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-0c52d75462a8ceb8-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "94dd5c29c77126f635f513c3b89899cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:42 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c7ad7bee-e26a-4f60-bfc9-024bf9ef0cb3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "063228d6-0290-4bea-88ce-4711be778c56", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190842Z:c7ad7bee-e26a-4f60-bfc9-024bf9ef0cb3" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-10f1165b70e3a81d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1d252af67bd092dd1556a74244d96aec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "85a72bd3-47c4-490c-bf40-ea55ef093443", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "85a72bd3-47c4-490c-bf40-ea55ef093443", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190842Z:85a72bd3-47c4-490c-bf40-ea55ef093443" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-b2f7db70a6dd8441-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e98b2e667fa1b93b209b53284aa87d34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:43 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e3585d46-babd-47a1-a0c0-f61361bbe2be", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "e3585d46-babd-47a1-a0c0-f61361bbe2be", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190843Z:e3585d46-babd-47a1-a0c0-f61361bbe2be" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-e2680102a5b65d34-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8eccad517b7277fcbf18a704c8f9fc67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33fe91a8-b3b6-43bd-a8e1-c1b83ce1e7e1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "33fe91a8-b3b6-43bd-a8e1-c1b83ce1e7e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190844Z:33fe91a8-b3b6-43bd-a8e1-c1b83ce1e7e1" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-613df2b590dadcd6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ae790deba7677c4ef6cfd3428b5486d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "168638b0-3197-4892-a654-099006416b49", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "168638b0-3197-4892-a654-099006416b49", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190845Z:168638b0-3197-4892-a654-099006416b49" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-21b096f501b2de17-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97f173d9dc0ceb7932132a89d737f127", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6705d06-ba16-41ae-8c89-39db18302fea", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "b6705d06-ba16-41ae-8c89-39db18302fea", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190848Z:b6705d06-ba16-41ae-8c89-39db18302fea" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-66f91de61c21b21b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ba49eb9e02c097bde8559e067ec74f09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f07a7277-7938-41c6-b5af-1c3ba2c4d833", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "f07a7277-7938-41c6-b5af-1c3ba2c4d833", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190852Z:f07a7277-7938-41c6-b5af-1c3ba2c4d833" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-eba268c4f0199a8f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "542a3ad06507015b16fc4763903b9fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:08:59 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "655fd958-3e82-4d85-ba67-4ad2331e6f2c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "655fd958-3e82-4d85-ba67-4ad2331e6f2c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190900Z:655fd958-3e82-4d85-ba67-4ad2331e6f2c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-f07bca1273942b88-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3c95d57a8d6cd6acb659aeb73d726c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:09:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "965013bb-628a-4453-bc12-e17aec94fb89", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "965013bb-628a-4453-bc12-e17aec94fb89", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190916Z:965013bb-628a-4453-bc12-e17aec94fb89" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-ee74ae2863303d2c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9db920c39c0c391f9047a3c4ba5a07ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:09:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "edf58d6d-0fe6-44f4-9e52-e7671a5dbe71", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "edf58d6d-0fe6-44f4-9e52-e7671a5dbe71", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T190948Z:edf58d6d-0fe6-44f4-9e52-e7671a5dbe71" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-627771e0196b9e86-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a88be6b51332429d8d549eadb6a3c3a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:10:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f1ef1f0-f768-40b4-9a8d-f48ab82d7a53", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "2f1ef1f0-f768-40b4-9a8d-f48ab82d7a53", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191020Z:2f1ef1f0-f768-40b4-9a8d-f48ab82d7a53" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-f97711f6d29decbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "709fdc8f0281deacb55bac24eae81b5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:10:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3b8aec5e-6276-421e-809b-57478d389b82", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "3b8aec5e-6276-421e-809b-57478d389b82", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191052Z:3b8aec5e-6276-421e-809b-57478d389b82" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-6cf9bf0682e005ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "57020152c3e7b038827610b7fd7182ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:11:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b1ed5cf0-98a7-4e46-b6fd-7e01e39aacba", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "b1ed5cf0-98a7-4e46-b6fd-7e01e39aacba", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191124Z:b1ed5cf0-98a7-4e46-b6fd-7e01e39aacba" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-96cca48c184646f0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dd34008497bab32b3aadf3d6667958a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:11:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3077cdd0-707f-4d0b-9cb0-7ddddf6b2c8e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "3077cdd0-707f-4d0b-9cb0-7ddddf6b2c8e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191156Z:3077cdd0-707f-4d0b-9cb0-7ddddf6b2c8e" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-36fe58fc5b901faf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b55b42386ca1cbbca4efed0af2f4e044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:12:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ac44b076-766e-4826-8382-bf59a98a16af", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "ac44b076-766e-4826-8382-bf59a98a16af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191229Z:ac44b076-766e-4826-8382-bf59a98a16af" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-f8a4cd7991393ab2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eaa0bfd93db3bba1d54f1d39d0614908", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:13:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ef7a24c7-0505-4149-8920-26f746c96420", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ef7a24c7-0505-4149-8920-26f746c96420", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191301Z:ef7a24c7-0505-4149-8920-26f746c96420" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-9eb511716623c48a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb7e6a1ecd16174a436839cba920c046", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:13:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6e2cb9dc-242a-49ad-9ded-645b361a535a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "6e2cb9dc-242a-49ad-9ded-645b361a535a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191333Z:6e2cb9dc-242a-49ad-9ded-645b361a535a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-8d75ad88bec0cc8c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a7fdaecc6ed9fbf1a19fe0524f82fb42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:14:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5cbf817a-b8be-46bd-9959-7e39cb6ba982", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "5cbf817a-b8be-46bd-9959-7e39cb6ba982", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191405Z:5cbf817a-b8be-46bd-9959-7e39cb6ba982" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-1ab3789f2a84b52d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "87ece5a525750c2d7488a64b03d612b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:14:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d907fa9a-ad2a-4bac-8ef0-e3d0352500cd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "d907fa9a-ad2a-4bac-8ef0-e3d0352500cd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191437Z:d907fa9a-ad2a-4bac-8ef0-e3d0352500cd" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-5c1e2afdd041dc5b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "216dd68ea264b02f79831a77ecf8c8c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:15:29 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbc7e629-b744-44bf-943e-3d8679a03198", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "cbc7e629-b744-44bf-943e-3d8679a03198", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191529Z:cbc7e629-b744-44bf-943e-3d8679a03198" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-01172d81a9a72f7a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c325f76d3934a7d081f13251c7a6f7ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:16:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "942c04b0-12bd-41fc-b94d-2986ae214cbb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "942c04b0-12bd-41fc-b94d-2986ae214cbb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191601Z:942c04b0-12bd-41fc-b94d-2986ae214cbb" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-35faa8b9c38a5428-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "78c42c8cd91503deb63b0ef20bb61f7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:16:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33cd2635-911f-4cca-a98d-f2ad39bb18c1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "33cd2635-911f-4cca-a98d-f2ad39bb18c1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191634Z:33cd2635-911f-4cca-a98d-f2ad39bb18c1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-370028ef1445651e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0cdde5bf4eb1547f06c6a07270dee9d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:17:05 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "69a21c2c-e11a-4667-8a9e-e02ad12ed39f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "69a21c2c-e11a-4667-8a9e-e02ad12ed39f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191706Z:69a21c2c-e11a-4667-8a9e-e02ad12ed39f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-0f90f5eecb569538-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c0ea4f8b503394ab18210df92ade9bcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:17:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33ddd91a-9451-4d4e-83ed-f001f8cb9421", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "33ddd91a-9451-4d4e-83ed-f001f8cb9421", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191738Z:33ddd91a-9451-4d4e-83ed-f001f8cb9421" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-552ef37109bd98ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e191b5d1eac93e19ac6f714f386b93d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:18:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "470c88ff-52d8-4b01-922c-2d0677fc89f7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "470c88ff-52d8-4b01-922c-2d0677fc89f7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191810Z:470c88ff-52d8-4b01-922c-2d0677fc89f7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-304007c60a041d86-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb663c515fcc6f493a49f48f40852928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:18:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c28ab1fe-be4f-4566-997d-16336035141f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c28ab1fe-be4f-4566-997d-16336035141f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191842Z:c28ab1fe-be4f-4566-997d-16336035141f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/063228d6-0290-4bea-88ce-4711be778c56?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2d92083794e0fef017e538693650a5ec-53e2b651770f45e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "baa0d52a074ca10936ab13c3de5b5bad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 19:19:14 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e20ae4fd-09d4-40a0-8858-225bc4b73fae", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "e20ae4fd-09d4-40a0-8858-225bc4b73fae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T191914Z:e20ae4fd-09d4-40a0-8858-225bc4b73fae" + }, + "ResponseBody": { + "status": "Succeeded" + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": null, + "RandomSeed": "1657567465", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} From 76544d188be1bf37a431ead4c9681dc660159c66 Mon Sep 17 00:00:00 2001 From: dsapaliga Date: Thu, 20 Apr 2023 20:07:38 -0500 Subject: [PATCH 2/3] udpated recordings with playback verification --- ...torableCrossRegionRestoreTests(False).json | 33 +- .../TestCrossRegionRestore.json | 3473 +++++++++-------- .../RestorableDatabaseAccountList.json | 2748 +++++++++---- ...RestorableDatabaseAccountTests(False).json | 32 +- 4 files changed, 3829 insertions(+), 2457 deletions(-) diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json index 5a161ac742c1..1f2b2ee4a222 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/RestorableCrossRegionRestoreTests(False).json @@ -6,9 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e019c69ecfc6a20176ce9460e4bbd357-8bc065f6a1fcc95e-00", + "traceparent": "00-15eaa645a94b63994fdccb801e50d6f1-e42ffd0328693f2f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "43a6cbec49908d0ea972779d6da5e7b7", + "x-ms-client-request-id": "f315ba5a01f0eb666daa2d1e16a66319", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 15:54:39 GMT", + "Date": "Thu, 20 Apr 2023 19:57:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cb6b22b-ce52-4d47-b948-4c5116dabaee", + "x-ms-correlation-request-id": "4c8ff27a-6cff-4ec2-ba81-4d9464b4e730", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "3cb6b22b-ce52-4d47-b948-4c5116dabaee", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155439Z:3cb6b22b-ce52-4d47-b948-4c5116dabaee" + "x-ms-request-id": "4c8ff27a-6cff-4ec2-ba81-4d9464b4e730", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195707Z:4c8ff27a-6cff-4ec2-ba81-4d9464b4e730" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -47,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6298?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6101?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-79baa041f7842cd25bd58b59b7745522-4e5ec30f8a26c4db-00", + "traceparent": "00-0e7127de2c7c35140f41ebc3a613bbcf-bef4b80459a6200b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9f79781b4c1cbe06eda39a6064aa9cbf", + "x-ms-client-request-id": "58b67d4b66dde1e4b0641287be7519da", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -65,22 +65,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 15:54:41 GMT", + "Date": "Thu, 20 Apr 2023 19:57:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee6aef68-429c-47d7-9e63-e8d099641110", + "x-ms-correlation-request-id": "062286b5-141b-47cc-9985-f2671b4d1ef2", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ee6aef68-429c-47d7-9e63-e8d099641110", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155441Z:ee6aef68-429c-47d7-9e63-e8d099641110" + "x-ms-request-id": "062286b5-141b-47cc-9985-f2671b4d1ef2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195709Z:062286b5-141b-47cc-9985-f2671b4d1ef2" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298", - "name": "dbaccount-6298", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101", + "name": "dbaccount-6101", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -91,7 +90,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "301700015", + "RandomSeed": "1797763085", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json index 29d5f6a3d195..514ed6b004ac 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableCrossRegionRestoreTests/TestCrossRegionRestore.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6298?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6101?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f09e2bfe34dfe64c653b710dd6108b58-95819efb8d8ef511-00", + "traceparent": "00-0d950274fad49069e24935e57e2c37b3-256c7c21fc7ec850-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "439119e41f8363bfffda8b3390115467", + "x-ms-client-request-id": "2fae0ec0f1236e9c3f28f18b151feb2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 15:54:41 GMT", + "Date": "Thu, 20 Apr 2023 20:17:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23421974-9470-4354-abc4-7aa424e79015", + "x-ms-correlation-request-id": "d099d22d-9654-4fba-b102-3f0f81ed2375", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "23421974-9470-4354-abc4-7aa424e79015", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155441Z:23421974-9470-4354-abc4-7aa424e79015" + "x-ms-request-id": "d099d22d-9654-4fba-b102-3f0f81ed2375", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201719Z:d099d22d-9654-4fba-b102-3f0f81ed2375" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298", - "name": "dbaccount-6298", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101", + "name": "dbaccount-6101", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "575", "Content-Type": "application/json", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-7891b677bd9fbea3-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-30a942a152cb78cd-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "51bb248d93ae2bc9e7bfe7237901fdd0", + "x-ms-client-request-id": "21a195f52c59313a48a57f51350eb682", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2478", + "Content-Length": "2473", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:46 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/operationResults/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 20:17:25 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/operationResults/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70a3f985-8a66-4449-915c-840391a41f56", + "x-ms-correlation-request-id": "aba71511-8ce2-4131-846f-36d9d5769019", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "0d1c99cd-9190-4117-86a4-f3da80a1232e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155446Z:70a3f985-8a66-4449-915c-840391a41f56" + "x-ms-request-id": "37fe9389-a7f9-49a8-996d-6786e8919394", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201725Z:aba71511-8ce2-4131-846f-36d9d5769019" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733", - "name": "r-database-account-2733", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943", + "name": "r-database-account-4943", "location": "West Central US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T15:54:45.3179651Z" + "createdAt": "2023-04-20T20:17:23.670722Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "instanceId": "f591e4b2-9c04-469d-afe6-a2b193a58e47", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T15:54:45.3179651Z" + "generationTime": "2023-04-20T20:17:23.670722Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T15:54:45.3179651Z" + "generationTime": "2023-04-20T20:17:23.670722Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T15:54:45.3179651Z" + "generationTime": "2023-04-20T20:17:23.670722Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T15:54:45.3179651Z" + "generationTime": "2023-04-20T20:17:23.670722Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-94e539023ad92eca-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-265723e307a56845-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "841651cf9fd58536c7189b5fd83f85d8", + "x-ms-client-request-id": "800b7171e296e26674feda4c1d1c0919", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:46 GMT", + "Date": "Thu, 20 Apr 2023 20:17:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78cad19b-5708-44bf-a45b-7580fb129dd5", + "x-ms-correlation-request-id": "069f0241-a85c-4c3a-a8b9-64af18a6e3f7", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "78cad19b-5708-44bf-a45b-7580fb129dd5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155447Z:78cad19b-5708-44bf-a45b-7580fb129dd5" + "x-ms-request-id": "069f0241-a85c-4c3a-a8b9-64af18a6e3f7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201725Z:069f0241-a85c-4c3a-a8b9-64af18a6e3f7" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-a7683f95635a34e1-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-4a91b2d23ddd0910-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fe7e628d8ca0f1c02f4940f093f93dfc", + "x-ms-client-request-id": "a61d083b5772af9d6269871ae29c5b37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:47 GMT", + "Date": "Thu, 20 Apr 2023 20:17:26 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "707afcf3-b46e-4821-be6f-2c956d6d1f9a", + "x-ms-correlation-request-id": "2a3dae99-58f0-4233-940b-27227adf0089", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "707afcf3-b46e-4821-be6f-2c956d6d1f9a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155448Z:707afcf3-b46e-4821-be6f-2c956d6d1f9a" + "x-ms-request-id": "2a3dae99-58f0-4233-940b-27227adf0089", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201726Z:2a3dae99-58f0-4233-940b-27227adf0089" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-60e70bc174fff863-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-6de434022122167d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2854a41379ea72fbdb2d13b9019599d1", + "x-ms-client-request-id": "c3df6387360315eb129561906ae71b7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:48 GMT", + "Date": "Thu, 20 Apr 2023 20:17:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5984aa43-a022-4624-afc2-582ab6ae2180", + "x-ms-correlation-request-id": "29397f85-c8cb-47e7-952f-996b4c7744d5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5984aa43-a022-4624-afc2-582ab6ae2180", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155449Z:5984aa43-a022-4624-afc2-582ab6ae2180" + "x-ms-request-id": "29397f85-c8cb-47e7-952f-996b4c7744d5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201727Z:29397f85-c8cb-47e7-952f-996b4c7744d5" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-8c761310571fb3ff-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-f7d395f5ece6a5d7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8b422737ad6c42a19125548b5e45f2ce", + "x-ms-client-request-id": "cd622f3477f31aa9d45b1e2d5b4bffd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:49 GMT", + "Date": "Thu, 20 Apr 2023 20:17:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51e6620a-86d6-4bf9-a242-6d34fa47587f", + "x-ms-correlation-request-id": "cf905527-f9f8-4478-8c77-b48c398b52c6", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "51e6620a-86d6-4bf9-a242-6d34fa47587f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155450Z:51e6620a-86d6-4bf9-a242-6d34fa47587f" + "x-ms-request-id": "cf905527-f9f8-4478-8c77-b48c398b52c6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201728Z:cf905527-f9f8-4478-8c77-b48c398b52c6" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-4c87b1fd3e3f18cd-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-f45de39c2f6c89da-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "334c9edb5dea14ee660b23727806ef9a", + "x-ms-client-request-id": "b9c4a3a2463d04161c0793ddf50d457b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:51 GMT", + "Date": "Thu, 20 Apr 2023 20:17:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18c44eb2-0918-426f-a68f-720af089556f", + "x-ms-correlation-request-id": "86f82e0e-6d17-4f52-add4-927e023eb6de", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "18c44eb2-0918-426f-a68f-720af089556f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155452Z:18c44eb2-0918-426f-a68f-720af089556f" + "x-ms-request-id": "86f82e0e-6d17-4f52-add4-927e023eb6de", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201730Z:86f82e0e-6d17-4f52-add4-927e023eb6de" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-f655e055d352648e-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-6909a0df857d4740-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6cb86eafb1b66590031196c524701496", + "x-ms-client-request-id": "b3e50b4e8e3a1044bac4efa818bebac6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:54:56 GMT", + "Date": "Thu, 20 Apr 2023 20:17:34 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7426544-3503-47b9-a37a-8752145074bb", + "x-ms-correlation-request-id": "a65f5292-ca2d-40e8-8fd1-41081aec865c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "c7426544-3503-47b9-a37a-8752145074bb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155456Z:c7426544-3503-47b9-a37a-8752145074bb" + "x-ms-request-id": "a65f5292-ca2d-40e8-8fd1-41081aec865c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201734Z:a65f5292-ca2d-40e8-8fd1-41081aec865c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-28627cbcc961f68c-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-4582ce0207b1ab2b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "62de443b6648dae7392e25618a2eca8a", + "x-ms-client-request-id": "c7ed8a966122ee3f185db0ebe3cc24c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:55:03 GMT", + "Date": "Thu, 20 Apr 2023 20:17:42 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11b5cd57-e555-4223-8de6-53492b2ab9a2", + "x-ms-correlation-request-id": "8bd3fddc-6a22-4bb1-bfd4-c00ffca93c6e", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "11b5cd57-e555-4223-8de6-53492b2ab9a2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155504Z:11b5cd57-e555-4223-8de6-53492b2ab9a2" + "x-ms-request-id": "8bd3fddc-6a22-4bb1-bfd4-c00ffca93c6e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201742Z:8bd3fddc-6a22-4bb1-bfd4-c00ffca93c6e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-57d2bc8728f2cf3b-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-f63b1a5432b2dba9-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "efdbb935858c2a180ee730d8c629eff6", + "x-ms-client-request-id": "50dea2164b65139d5fb4fe78566eec5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:55:19 GMT", + "Date": "Thu, 20 Apr 2023 20:17:58 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d91346da-9478-419b-9e00-d414f45a7e38", + "x-ms-correlation-request-id": "c98ff4f5-a027-443f-af1d-a6325b4732b3", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "d91346da-9478-419b-9e00-d414f45a7e38", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155520Z:d91346da-9478-419b-9e00-d414f45a7e38" + "x-ms-request-id": "c98ff4f5-a027-443f-af1d-a6325b4732b3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201759Z:c98ff4f5-a027-443f-af1d-a6325b4732b3" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-21b7a76e38fc44ba-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-8de5a31722da875d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "34378cf68d28495187de33878c2edad4", + "x-ms-client-request-id": "6b46cd4d7d1fec59cbf79bdcde582cee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:55:52 GMT", + "Date": "Thu, 20 Apr 2023 20:18:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf5d3266-1f5b-4bc7-a24f-6db5c014e750", + "x-ms-correlation-request-id": "dee83345-8297-4ddf-8aa3-1fcd70b87dfa", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "cf5d3266-1f5b-4bc7-a24f-6db5c014e750", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155552Z:cf5d3266-1f5b-4bc7-a24f-6db5c014e750" + "x-ms-request-id": "dee83345-8297-4ddf-8aa3-1fcd70b87dfa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201831Z:dee83345-8297-4ddf-8aa3-1fcd70b87dfa" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-ebac6efeceba8d09-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-0a3d99bf4b9aa062-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6b8f0c472494b6092bb45461360e140f", + "x-ms-client-request-id": "759227a06adf4b60ecda686d63c697aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:56:24 GMT", + "Date": "Thu, 20 Apr 2023 20:19:02 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76", + "x-ms-correlation-request-id": "b52e6e9d-eaf2-4133-8985-01c10f45da4d", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155624Z:4181c3e2-c00a-4f4a-9ed0-ec3fa9682a76" + "x-ms-request-id": "b52e6e9d-eaf2-4133-8985-01c10f45da4d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201903Z:b52e6e9d-eaf2-4133-8985-01c10f45da4d" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-a9262938ea67e728-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-7d5c374f421ffb18-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fd6a2f3e95f7a862679268ae52909ddf", + "x-ms-client-request-id": "169e5271b98598a749f1846eb0c13507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,60 +539,91 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:56:56 GMT", + "Date": "Thu, 20 Apr 2023 20:19:34 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be50ac30-8d78-4cc9-9989-4d68b4792735", + "x-ms-correlation-request-id": "e45e181c-3d2d-4212-8469-9ecf08a3ed8b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "be50ac30-8d78-4cc9-9989-4d68b4792735", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155657Z:be50ac30-8d78-4cc9-9989-4d68b4792735" + "x-ms-request-id": "e45e181c-3d2d-4212-8469-9ecf08a3ed8b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201935Z:e45e181c-3d2d-4212-8469-9ecf08a3ed8b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0d1c99cd-9190-4117-86a4-f3da80a1232e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-92cf93a19ea45e2b-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-d7b449d490a5f802-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ba915b0c8499d2618381087438f01379", + "x-ms-client-request-id": "2fd80f8776dce27e6cfa7e4415eb8905", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Date": "Thu, 20 Apr 2023 20:20:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe9cf29-855c-4d0e-ae45-546e75d029f5", + "x-ms-correlation-request-id": "9f42b7f3-3cfc-46af-8c6a-686774e07da4", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "0fe9cf29-855c-4d0e-ae45-546e75d029f5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:0fe9cf29-855c-4d0e-ae45-546e75d029f5" + "x-ms-request-id": "9f42b7f3-3cfc-46af-8c6a-686774e07da4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202007Z:9f42b7f3-3cfc-46af-8c6a-686774e07da4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/37fe9389-a7f9-49a8-996d-6786e8919394?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-d75a81d1a9fb856d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8b6af05f16b9e66980f92cede6f19b2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:20:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8ca66d7d-3798-446a-95bd-36a2c3d3d77d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "8ca66d7d-3798-446a-95bd-36a2c3d3d77d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202039Z:8ca66d7d-3798-446a-95bd-36a2c3d3d77d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efb4282fbb466429c192ddc65a3f1417-f40dc12d54c13a32-00", + "traceparent": "00-4e04c1c86d8e844b2809f953099fe164-16dad879fc5a3f78-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5d4923c9ddc3b1dda9e60302bc5b639a", + "x-ms-client-request-id": "53e561a568eefbcdd4bba98a3a62825e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -601,31 +632,31 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "2927", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Date": "Thu, 20 Apr 2023 20:20:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c56a31ad-0787-4a51-9b47-5e0398d0cc57", + "x-ms-correlation-request-id": "aa33ce52-8d31-4386-aa10-d41ed430283e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "c56a31ad-0787-4a51-9b47-5e0398d0cc57", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:c56a31ad-0787-4a51-9b47-5e0398d0cc57" + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "aa33ce52-8d31-4386-aa10-d41ed430283e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202039Z:aa33ce52-8d31-4386-aa10-d41ed430283e" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733", - "name": "r-database-account-2733", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943", + "name": "r-database-account-4943", "location": "West Central US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T15:57:01.3584843Z" + "createdAt": "2023-04-20T20:19:56.3117245Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-2733.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-2733.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-4943.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-4943.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +670,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "instanceId": "f591e4b2-9c04-469d-afe6-a2b193a58e47", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +688,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-4943-westcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +698,9 @@ ], "readLocations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-4943-westcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +708,9 @@ ], "locations": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-2733-westcentralus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-4943-westcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +718,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-2733-westcentralus", + "id": "r-database-account-4943-westcentralus", "locationName": "West Central US", "failoverPriority": 0 } @@ -711,16 +742,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T15:57:01.3584843Z" + "generationTime": "2023-04-20T20:19:56.3117245Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T15:57:01.3584843Z" + "generationTime": "2023-04-20T20:19:56.3117245Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T15:57:01.3584843Z" + "generationTime": "2023-04-20T20:19:56.3117245Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T15:57:01.3584843Z" + "generationTime": "2023-04-20T20:19:56.3117245Z" } } }, @@ -735,9 +766,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cf55d6e80910dadd9f0ca9455ea9f359-badf484802f1a640-00", + "traceparent": "00-8a0c8c2cfe8876e2b6cc01eddbc4ca63-b72654363f04005b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "db5574165a7dba75cd987a768dee7077", + "x-ms-client-request-id": "bf0f7e68a956714da6f1aee24a90fc7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +777,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 15:57:28 GMT", + "Date": "Thu, 20 Apr 2023 20:20:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b651709-70a5-4f4e-9fa3-d6df097d27e7", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "9b651709-70a5-4f4e-9fa3-d6df097d27e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155729Z:9b651709-70a5-4f4e-9fa3-d6df097d27e7" + "x-ms-correlation-request-id": "3123779b-4c79-4e5f-8521-4ae265bbd61c", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "3123779b-4c79-4e5f-8521-4ae265bbd61c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202039Z:3123779b-4c79-4e5f-8521-4ae265bbd61c" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -781,23 +812,23 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-418dbcd1028cbf38f84f57b9446d371f-a0dbcd482d31bafd-00", + "traceparent": "00-ec7473b6cc4731589058c56c1b05915c-0b5a87f217f82ecf-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2fe4ee7e40472f1b7edf10b3805e1627", + "x-ms-client-request-id": "b49f535f3505f616236eb7fe6cdeac1d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "475001", + "Content-Length": "481742", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 15:57:33 GMT", + "Date": "Thu, 20 Apr 2023 20:20:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23a48f1b-ad66-41a4-a8d3-ff7f375d1783", + "x-ms-correlation-request-id": "79709577-cf14-436b-926e-063a313b279e", "x-ms-original-request-ids": [ "", "", @@ -838,9 +869,9 @@ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "23a48f1b-ad66-41a4-a8d3-ff7f375d1783", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155734Z:23a48f1b-ad66-41a4-a8d3-ff7f375d1783" + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "79709577-cf14-436b-926e-063a313b279e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202044Z:79709577-cf14-436b-926e-063a313b279e" }, "ResponseBody": { "value": [ @@ -853,7 +884,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -872,7 +903,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -891,7 +922,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -910,7 +941,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -929,7 +960,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -948,7 +979,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -967,7 +998,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -986,7 +1017,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1005,7 +1036,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1024,7 +1055,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1043,7 +1074,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1062,7 +1093,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1081,7 +1112,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1105,7 +1136,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1154,20 +1185,39 @@ } }, { - "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", "properties": { - "accountName": "r-database-account-2733", + "accountName": "r-database-account-8195", "apiType": "Sql", - "creationTime": "2023-04-20T15:57:02Z", - "oldestRestorableTime": "2023-04-20T15:57:02Z", + "creationTime": "2023-04-20T19:59:26Z", + "oldestRestorableTime": "2023-04-20T19:59:26Z", "restorableLocations": [ { "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", - "creationTime": "2023-04-20T15:57:03Z" + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z" + } + ] + } + }, + { + "name": "f591e4b2-9c04-469d-afe6-a2b193a58e47", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "properties": { + "accountName": "r-database-account-4943", + "apiType": "Sql", + "creationTime": "2023-04-20T20:19:57Z", + "oldestRestorableTime": "2023-04-20T20:19:57Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "92e8f4e6-8eda-4927-b6ac-c1c04818becd", + "creationTime": "2023-04-20T20:19:58Z" } ] } @@ -1224,7 +1274,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1251,7 +1301,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1326,7 +1376,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1353,7 +1403,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1374,7 +1424,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1464,7 +1514,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1485,7 +1535,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1506,7 +1556,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1527,7 +1577,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1548,7 +1598,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1575,7 +1625,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1596,7 +1646,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1617,7 +1667,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1638,7 +1688,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1665,7 +1715,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1686,7 +1736,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1734,7 +1784,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1755,7 +1805,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1776,7 +1826,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1797,7 +1847,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1818,7 +1868,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1839,7 +1889,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1860,7 +1910,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1881,7 +1931,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1902,7 +1952,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1923,7 +1973,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1944,7 +1994,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1965,7 +2015,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1986,7 +2036,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2007,7 +2057,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2028,7 +2078,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2049,7 +2099,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2070,7 +2120,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2091,7 +2141,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2112,7 +2162,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2133,7 +2183,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2154,7 +2204,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2175,7 +2225,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2196,7 +2246,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2217,7 +2267,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2238,7 +2288,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2259,7 +2309,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2280,7 +2330,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2301,7 +2351,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2322,7 +2372,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2343,7 +2393,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2364,7 +2414,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2385,7 +2435,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2406,7 +2456,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2427,7 +2477,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2448,7 +2498,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2469,7 +2519,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2490,7 +2540,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2511,7 +2561,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2532,7 +2582,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2553,7 +2603,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2574,7 +2624,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2595,7 +2645,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2616,7 +2666,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2637,7 +2687,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2658,7 +2708,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2679,7 +2729,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2700,7 +2750,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2721,7 +2771,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2742,7 +2792,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2763,7 +2813,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:32:15Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2784,7 +2834,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T01:47:59Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2805,7 +2855,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:27:39Z", "deletionTime": "2023-04-20T04:45:45Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2826,7 +2876,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T04:44:54Z", "deletionTime": "2023-04-20T04:45:46Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2837,6 +2887,90 @@ ] } }, + { + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "properties": { + "accountName": "r-database-account-2733", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" + } + ] + } + }, + { + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "properties": { + "accountName": "restoredaccount-3296", + "apiType": "Sql", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" + } + ] + } + }, + { + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "properties": { + "accountName": "r-database-account-1488", + "apiType": "Sql", + "creationTime": "2023-04-20T17:39:33Z", + "deletionTime": "2023-04-20T18:58:46Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z", + "deletionTime": "2023-04-20T18:58:46Z" + } + ] + } + }, + { + "name": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7eacbb40-8bdb-406d-8575-558cd9b354f9", + "properties": { + "accountName": "restoredaccount-2310", + "apiType": "Sql", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f9737a8e-afaf-4854-8c7b-f329e07f46f9", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z" + } + ] + } + }, { "name": "d88e6a3c-687d-4990-a516-da739070bf81", "location": "North Central US", @@ -2846,7 +2980,7 @@ "accountName": "kal-continuous7", "apiType": "Sql", "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2865,7 +2999,7 @@ "accountName": "kal-continuous7-restored1", "apiType": "Sql", "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2884,7 +3018,7 @@ "accountName": "kal-continuous7-demorestore", "apiType": "Sql", "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2903,7 +3037,7 @@ "accountName": "test-billing-continuous30", "apiType": "Sql", "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2932,7 +3066,7 @@ "accountName": "new-cosmsosdb-account", "apiType": "Sql", "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2952,7 +3086,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:22:22Z", "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2978,7 +3112,7 @@ "accountName": "vinh-periodic", "apiType": "Sql", "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -2997,7 +3131,7 @@ "accountName": "databaseaccount9284", "apiType": "Sql", "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -3016,7 +3150,7 @@ "accountName": "databaseaccount6234", "apiType": "Sql", "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -3035,7 +3169,7 @@ "accountName": "databaseaccount8251", "apiType": "Sql", "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -3054,7 +3188,7 @@ "accountName": "sql-portal-test", "apiType": "Sql", "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -3073,7 +3207,7 @@ "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "Central US", @@ -3097,7 +3231,7 @@ "accountName": "databaseaccount2058", "apiType": "MongoDB", "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3116,7 +3250,7 @@ "accountName": "vinh-demo-periodic", "apiType": "Sql", "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3135,7 +3269,7 @@ "accountName": "vinh-demo-continous30", "apiType": "Sql", "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3154,7 +3288,7 @@ "accountName": "vinh-demo-continous7", "apiType": "Sql", "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3173,7 +3307,7 @@ "accountName": "vinh-demo-periodic2", "apiType": "Sql", "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3192,7 +3326,7 @@ "accountName": "vinh-demo-continous7-2", "apiType": "Sql", "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3212,7 +3346,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:56:09Z", "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3233,7 +3367,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:36:38Z", "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3254,7 +3388,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:41:14Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3275,7 +3409,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:22:17Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3296,7 +3430,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T13:41:40Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3317,7 +3451,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:01:14Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3338,7 +3472,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T14:50:51Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3359,7 +3493,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:09:14Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3399,7 +3533,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:18Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3420,7 +3554,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T15:42:44Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3441,7 +3575,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:04:54Z", "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3462,7 +3596,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:45:16Z", "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3483,7 +3617,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:01:08Z", "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3504,7 +3638,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:31Z", "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3675,7 +3809,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:46:48Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3696,7 +3830,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:25:06Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3717,7 +3851,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T16:05:21Z", "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3738,7 +3872,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T15:43:38Z", "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3843,7 +3977,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:52:17Z", "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3864,7 +3998,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:33:20Z", "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3885,7 +4019,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T19:26:23Z", "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3906,7 +4040,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:12:03Z", "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3927,7 +4061,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:25:32Z", "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3948,7 +4082,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:36:05Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3969,7 +4103,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:54:57Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3990,7 +4124,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:56:14Z", "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4011,7 +4145,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T22:04:54Z", "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4032,7 +4166,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:25:42Z", "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4116,7 +4250,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:26:49Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4137,7 +4271,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:07:29Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4158,7 +4292,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:32:21Z", "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4179,7 +4313,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:39:15Z", "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4200,7 +4334,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:57:50Z", "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4221,7 +4355,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T16:51:53Z", "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4242,7 +4376,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-14T16:59:34Z", "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4263,7 +4397,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T17:07:39Z", "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4284,7 +4418,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T17:16:06Z", "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4368,7 +4502,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:30:44Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4389,7 +4523,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:08:00Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4410,7 +4544,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T18:36:04Z", "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4430,7 +4564,7 @@ "accountName": "aholdtest", "apiType": "MongoDB", "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Europe", @@ -4449,7 +4583,7 @@ "accountName": "targetacct112", "apiType": "Sql", "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4468,7 +4602,7 @@ "accountName": "pitrmongotest", "apiType": "MongoDB", "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4487,7 +4621,7 @@ "accountName": "pitrmongowithsnapshots", "apiType": "MongoDB", "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4506,7 +4640,7 @@ "accountName": "test0319-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4530,7 +4664,7 @@ "accountName": "pitracctdemo2", "apiType": "Sql", "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4549,7 +4683,7 @@ "accountName": "ptr-target", "apiType": "Sql", "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4568,7 +4702,7 @@ "accountName": "pitrmongotest-restore", "apiType": "MongoDB", "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4587,7 +4721,7 @@ "accountName": "pitrdemo1015", "apiType": "Sql", "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4606,7 +4740,7 @@ "accountName": "pitrdemorestored1015", "apiType": "Sql", "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4625,7 +4759,7 @@ "accountName": "subbannageeta", "apiType": "Sql", "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4649,7 +4783,7 @@ "accountName": "scottkirill", "apiType": "Sql", "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4668,7 +4802,7 @@ "accountName": "test0319-pitr-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4687,7 +4821,7 @@ "accountName": "onboardingtestaccount0124", "apiType": "Sql", "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4706,7 +4840,7 @@ "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4725,7 +4859,7 @@ "accountName": "vinh-table2-restore", "apiType": "Table, Sql", "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4744,7 +4878,7 @@ "accountName": "vinhpitr30-cli", "apiType": "Sql", "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4763,7 +4897,7 @@ "accountName": "vinhperiodic3-cli", "apiType": "Sql", "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4782,7 +4916,7 @@ "accountName": "vinh-pitr7-portal", "apiType": "Sql", "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4801,7 +4935,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7", "apiType": "Sql", "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4820,7 +4954,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", "apiType": "Sql", "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4839,7 +4973,7 @@ "accountName": "vinh-periodic-again", "apiType": "Sql", "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4858,7 +4992,7 @@ "accountName": "vinh-periodic-again2", "apiType": "Sql", "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4877,7 +5011,7 @@ "accountName": "vinh-gremlin-again", "apiType": "Gremlin, Sql", "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4896,7 +5030,7 @@ "accountName": "vinh-table-tennis-cli-0190", "apiType": "Table, Sql", "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4915,7 +5049,7 @@ "accountName": "ddhamothsqlpitracc", "apiType": "Sql", "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4934,7 +5068,7 @@ "accountName": "ddhamothmongopitracc", "apiType": "MongoDB", "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4953,7 +5087,7 @@ "accountName": "dsapaligadbkeytest", "apiType": "Sql", "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4972,7 +5106,7 @@ "accountName": "ddhamothpitrsqlacc2", "apiType": "Sql", "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -4991,7 +5125,7 @@ "accountName": "vinkumsql", "apiType": "Sql", "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5010,7 +5144,7 @@ "accountName": "dsapaliga-monitor-test2", "apiType": "Sql", "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5029,7 +5163,7 @@ "accountName": "nikhiltestmig", "apiType": "Sql", "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5053,7 +5187,7 @@ "accountName": "nikhil-multi-region-pitr", "apiType": "Sql", "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5072,7 +5206,7 @@ "accountName": "test-account23", "apiType": "Sql", "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5096,7 +5230,7 @@ "accountName": "testpitr", "apiType": "Sql", "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5115,7 +5249,7 @@ "accountName": "readregionrestore-test", "apiType": "Sql", "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "North Central US", @@ -5134,7 +5268,7 @@ "accountName": "vinhpitr30-cli-arm-restore", "apiType": "Sql", "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T15:57:31Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5153,7 +5287,7 @@ "accountName": "grem-test", "apiType": "Gremlin, Sql", "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5172,7 +5306,7 @@ "accountName": "mongo-test-1", "apiType": "MongoDB", "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5191,7 +5325,7 @@ "accountName": "sql-test-1", "apiType": "Sql", "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5210,7 +5344,7 @@ "accountName": "tables-test-1", "apiType": "Table, Sql", "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5267,7 +5401,7 @@ "accountName": "dsapaliga-xrr-test", "apiType": "Sql", "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5286,7 +5420,7 @@ "accountName": "dsapaliga-xrr-cli2", "apiType": "Sql", "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T15:57:31Z", + "oldestRestorableTime": "2023-04-13T20:20:41Z", "restorableLocations": [ { "locationName": "West US", @@ -5890,6 +6024,82 @@ ] } }, + { + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "properties": { + "accountName": "mks-cli-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-20T16:21:22Z", + "oldestRestorableTime": "2023-04-20T16:21:22Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z" + } + ] + } + }, + { + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "properties": { + "accountName": "mks-ps-pna-disable", + "apiType": "Sql", + "creationTime": "2023-04-20T17:07:14Z", + "oldestRestorableTime": "2023-04-20T17:07:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "oldestRestorableTime": "2023-04-20T20:00:57Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z" + } + ] + } + }, + { + "name": "4aaae931-db25-42d9-bd13-139f4758eded", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aaae931-db25-42d9-bd13-139f4758eded", + "properties": { + "accountName": "r-database-account-1680", + "apiType": "Sql", + "creationTime": "2023-04-20T20:13:32Z", + "oldestRestorableTime": "2023-04-20T20:13:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e356dbef-401c-495f-8395-51811a45809b", + "creationTime": "2023-04-20T20:13:33Z" + } + ] + } + }, { "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", "location": "West US", @@ -5900,7 +6110,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T10:54:16Z", "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -5921,7 +6131,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:05:04Z", "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -5942,7 +6152,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:16:07Z", "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -5963,7 +6173,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:22:51Z", "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -5984,7 +6194,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T18:28:48Z", "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6005,7 +6215,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T21:16:33Z", "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6026,7 +6236,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:08Z", "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6047,7 +6257,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:18:09Z", "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6068,7 +6278,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:00:54Z", "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6089,7 +6299,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:17:36Z", "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6110,7 +6320,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T18:51:09Z", "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6131,7 +6341,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:00:50Z", "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6152,7 +6362,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:09Z", "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6173,7 +6383,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:34:54Z", "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6194,7 +6404,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:49:54Z", "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6215,7 +6425,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T20:32:49Z", "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6236,7 +6446,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:11:27Z", "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6257,7 +6467,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:42:51Z", "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6278,7 +6488,7 @@ "apiType": "Sql", "creationTime": "2023-03-26T16:03:42Z", "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6299,7 +6509,7 @@ "apiType": "Sql", "creationTime": "2023-03-27T03:23:23Z", "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6320,7 +6530,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-17T18:46:10Z", "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6341,7 +6551,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T02:19:03Z", "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6362,7 +6572,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T03:39:15Z", "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6383,7 +6593,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T13:58:50Z", "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6404,7 +6614,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:10:51Z", "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6425,7 +6635,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:25:17Z", "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6446,7 +6656,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:35:15Z", "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6467,7 +6677,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:54:34Z", "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6488,7 +6698,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:09:04Z", "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6509,7 +6719,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:25:43Z", "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6530,7 +6740,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:32:25Z", "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "Central US", @@ -6557,7 +6767,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T22:16:00Z", "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6578,7 +6788,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T01:52:39Z", "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6599,7 +6809,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:21:49Z", "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6620,7 +6830,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:33:02Z", "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6641,7 +6851,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:47:00Z", "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6662,7 +6872,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:26:20Z", "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6683,7 +6893,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:40:43Z", "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6704,7 +6914,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:04:48Z", "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6725,7 +6935,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:32:28Z", "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6746,7 +6956,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:59:34Z", "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6767,7 +6977,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:27:44Z", "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6788,7 +6998,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:51:55Z", "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6809,7 +7019,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:07:55Z", "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6830,7 +7040,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:41:45Z", "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6851,7 +7061,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:22:12Z", "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6872,7 +7082,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T08:19:11Z", "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6893,7 +7103,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:33:51Z", "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6914,7 +7124,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T09:01:29Z", "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6935,7 +7145,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:28:36Z", "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6956,7 +7166,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T10:01:55Z", "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6977,7 +7187,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T10:20:03Z", "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -6998,7 +7208,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:43:27Z", "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7019,7 +7229,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:16:22Z", "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7040,7 +7250,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:28:35Z", "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7061,7 +7271,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T16:22:41Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7082,7 +7292,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:43:40Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7103,7 +7313,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:14:16Z", "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7124,7 +7334,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T17:32:14Z", "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7145,7 +7355,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:41:56Z", "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7166,7 +7376,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:51:17Z", "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7187,7 +7397,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:21:12Z", "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7208,7 +7418,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:45:36Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7229,7 +7439,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:07:01Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7250,7 +7460,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:36:52Z", "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7271,7 +7481,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:55:11Z", "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7292,7 +7502,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:11:47Z", "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7313,7 +7523,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T19:27:17Z", "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7334,7 +7544,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:41:10Z", "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7355,7 +7565,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T19:57:31Z", "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7376,7 +7586,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:12:42Z", "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7397,7 +7607,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T20:42:13Z", "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7418,7 +7628,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:00:04Z", "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7439,7 +7649,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:32:51Z", "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7460,7 +7670,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:15:51Z", "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7481,7 +7691,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:27:59Z", "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7502,7 +7712,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T21:50:14Z", "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7523,7 +7733,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T22:05:54Z", "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7544,7 +7754,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:19:29Z", "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7565,7 +7775,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T22:36:33Z", "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7676,7 +7886,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:51:34Z", "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7697,7 +7907,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:21:19Z", "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7718,7 +7928,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T23:52:19Z", "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7739,7 +7949,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T00:45:13Z", "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7760,7 +7970,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T01:04:05Z", "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7781,7 +7991,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T01:23:37Z", "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7802,7 +8012,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T01:44:49Z", "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7823,7 +8033,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:14:47Z", "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7844,7 +8054,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:41:09Z", "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7865,7 +8075,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T03:16:29Z", "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "Central US", @@ -7892,7 +8102,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:22:44Z", "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7913,7 +8123,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:40:25Z", "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -7955,7 +8165,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T03:55:54Z", "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8120,7 +8330,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:14:52Z", "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8141,7 +8351,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T04:49:23Z", "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8162,7 +8372,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:21:59Z", "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8183,7 +8393,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:04:25Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8204,7 +8414,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:32:28Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8225,7 +8435,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:44:40Z", "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8246,7 +8456,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:29:10Z", "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8267,7 +8477,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:46:31Z", "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8288,7 +8498,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:23:46Z", "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8309,7 +8519,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:00:42Z", "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8330,7 +8540,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T08:15:53Z", "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8351,7 +8561,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:29:55Z", "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8372,7 +8582,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T08:45:00Z", "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8393,7 +8603,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:00:35Z", "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8414,7 +8624,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:32:58Z", "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8435,7 +8645,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:05:27Z", "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8456,7 +8666,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:37:02Z", "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8477,7 +8687,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:11:57Z", "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8498,7 +8708,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:41:56Z", "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8519,7 +8729,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:50:47Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8540,7 +8750,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:54:29Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8561,7 +8771,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:21:00Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8582,7 +8792,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:16:05Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8603,7 +8813,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:00:07Z", "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8624,7 +8834,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T12:15:11Z", "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8645,7 +8855,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:29:18Z", "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8666,7 +8876,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T12:44:53Z", "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8687,7 +8897,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:00:40Z", "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8708,7 +8918,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:33:35Z", "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8729,7 +8939,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:05:48Z", "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8750,7 +8960,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:35:58Z", "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8771,7 +8981,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:10:49Z", "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8792,7 +9002,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:40:22Z", "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8813,7 +9023,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:51:29Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8834,7 +9044,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:20:50Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8855,7 +9065,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:16:48Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8876,7 +9086,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:53:50Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8897,7 +9107,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:31:27Z", "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8918,7 +9128,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:47:28Z", "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8939,7 +9149,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:04:32Z", "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8960,7 +9170,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:24:28Z", "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -8981,7 +9191,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:39:25Z", "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9002,7 +9212,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:08:24Z", "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9023,7 +9233,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:30:14Z", "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9044,7 +9254,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:46:10Z", "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9065,7 +9275,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:23:16Z", "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9086,7 +9296,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:41:08Z", "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9107,7 +9317,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T21:50:24Z", "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9128,7 +9338,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T22:06:33Z", "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9149,7 +9359,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:20:34Z", "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9170,7 +9380,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T22:35:57Z", "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9191,7 +9401,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:51:37Z", "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9212,7 +9422,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:22:07Z", "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9233,7 +9443,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:40:03Z", "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9254,7 +9464,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:05:32Z", "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9275,7 +9485,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:21:09Z", "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9296,7 +9506,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T00:47:34Z", "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9317,7 +9527,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:04:48Z", "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9338,7 +9548,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:32:56Z", "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9359,7 +9569,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:48:31Z", "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9380,7 +9590,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T02:17:45Z", "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9401,7 +9611,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T02:35:45Z", "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9422,7 +9632,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T02:51:04Z", "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9443,7 +9653,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:04:37Z", "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9464,7 +9674,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T03:21:54Z", "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9485,7 +9695,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:37:32Z", "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9506,7 +9716,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:07:50Z", "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9527,7 +9737,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:25:40Z", "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9548,7 +9758,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T04:51:37Z", "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9569,7 +9779,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T05:07:24Z", "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9590,7 +9800,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:33:47Z", "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9611,7 +9821,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:51:09Z", "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9632,7 +9842,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:20:37Z", "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9653,7 +9863,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:35:59Z", "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9674,7 +9884,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:10:08Z", "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9695,7 +9905,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:26:06Z", "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9716,7 +9926,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:56:33Z", "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9737,7 +9947,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:15:55Z", "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9758,7 +9968,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:32:15Z", "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9779,7 +9989,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T09:00:28Z", "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9800,7 +10010,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:04:29Z", "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9821,7 +10031,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:22:06Z", "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9842,7 +10052,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:34:52Z", "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9863,7 +10073,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:56:08Z", "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9884,7 +10094,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:15:44Z", "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9905,7 +10115,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:49:37Z", "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9926,7 +10136,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T18:05:44Z", "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9947,7 +10157,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:48:32Z", "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9968,7 +10178,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:16:39Z", "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -9989,7 +10199,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:32:03Z", "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10010,7 +10220,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:46:39Z", "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10031,7 +10241,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T20:02:17Z", "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10052,7 +10262,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:17:28Z", "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10073,7 +10283,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:33:26Z", "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10094,7 +10304,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:02:22Z", "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10115,7 +10325,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:44:41Z", "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10136,7 +10346,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:09:17Z", "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10157,7 +10367,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T22:24:45Z", "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10178,7 +10388,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:38:37Z", "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10199,7 +10409,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T22:54:10Z", "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10220,7 +10430,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:09:10Z", "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10241,7 +10451,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:25:23Z", "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10262,7 +10472,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:53:57Z", "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10283,7 +10493,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T00:12:03Z", "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10304,7 +10514,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:38:08Z", "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10325,7 +10535,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:54:34Z", "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10346,7 +10556,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:20:43Z", "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10367,7 +10577,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:38:51Z", "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10388,7 +10598,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:07:38Z", "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10409,7 +10619,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:23:53Z", "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10430,7 +10640,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:52:15Z", "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10451,7 +10661,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:09:42Z", "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10472,7 +10682,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T03:25:14Z", "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10493,7 +10703,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:39:46Z", "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10514,7 +10724,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T03:56:41Z", "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10535,7 +10745,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:11:45Z", "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10556,7 +10766,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:30:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10577,7 +10787,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T05:56:56Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10598,7 +10808,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:13:31Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10619,7 +10829,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T06:08:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10640,7 +10850,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:53:04Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10661,7 +10871,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:02:37Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10682,7 +10892,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:35:19Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10703,7 +10913,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:53:31Z", "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10724,7 +10934,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:13:48Z", "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10745,7 +10955,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:44:23Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10766,7 +10976,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:33:57Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10787,7 +10997,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:49:17Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10808,7 +11018,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:47:00Z", "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10829,7 +11039,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:26:01Z", "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10850,7 +11060,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:55:06Z", "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10871,7 +11081,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:08:41Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10892,7 +11102,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:05:13Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10913,7 +11123,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:09:38Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10934,7 +11144,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:24:10Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10955,7 +11165,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T00:10:43Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10976,7 +11186,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:19:29Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -10997,7 +11207,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:25:03Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11018,7 +11228,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:53:26Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11039,7 +11249,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:13:48Z", "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11060,7 +11270,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:20:58Z", "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11081,7 +11291,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:15:48Z", "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11102,7 +11312,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:59:59Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11123,7 +11333,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:11:25Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11144,7 +11354,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:36:48Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11165,7 +11375,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T23:07:06Z", "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11186,7 +11396,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:12:03Z", "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11207,7 +11417,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T16:17:14Z", "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11228,7 +11438,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:22:51Z", "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11249,7 +11459,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T16:28:41Z", "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11270,7 +11480,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:34:14Z", "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11291,7 +11501,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:51:31Z", "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11312,7 +11522,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T17:14:52Z", "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11333,7 +11543,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:56:31Z", "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11354,7 +11564,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:17:47Z", "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11375,7 +11585,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:34:16Z", "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11396,7 +11606,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:39:47Z", "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11417,7 +11627,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:57:46Z", "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11438,7 +11648,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:20:21Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11459,7 +11669,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:03:36Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11480,7 +11690,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:25:45Z", "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11501,7 +11711,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:38:04Z", "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11522,7 +11732,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:15:20Z", "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11543,7 +11753,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:32:53Z", "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11564,7 +11774,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:47:56Z", "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11585,7 +11795,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:03:59Z", "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11606,7 +11816,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:32:03Z", "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11627,7 +11837,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:52:26Z", "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11648,7 +11858,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:20:40Z", "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11669,7 +11879,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:38:27Z", "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11690,7 +11900,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:53:12Z", "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11711,7 +11921,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:09:33Z", "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11732,7 +11942,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:37:57Z", "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11753,7 +11963,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:56:24Z", "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11774,7 +11984,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:25:55Z", "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11795,7 +12005,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:41:00Z", "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11816,7 +12026,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:58:12Z", "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11837,7 +12047,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:26:22Z", "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11858,7 +12068,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:42:49Z", "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11879,7 +12089,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:10:50Z", "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11900,7 +12110,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:30:03Z", "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11921,7 +12131,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:16:51Z", "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11942,7 +12152,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:27:53Z", "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11963,7 +12173,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:43:55Z", "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -11984,7 +12194,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:09:16Z", "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12005,7 +12215,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:20:49Z", "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12026,7 +12236,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:36:32Z", "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12047,7 +12257,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:02:47Z", "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12068,7 +12278,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:18:01Z", "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12089,7 +12299,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:35:28Z", "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12110,7 +12320,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:05:15Z", "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12131,7 +12341,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:22:06Z", "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12152,7 +12362,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:50:20Z", "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12173,7 +12383,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T06:08:10Z", "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12194,7 +12404,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:39:44Z", "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12215,7 +12425,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:58:36Z", "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12236,7 +12446,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:15:43Z", "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12257,7 +12467,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:32:21Z", "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12278,7 +12488,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:00:25Z", "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12299,7 +12509,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:18:51Z", "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12320,7 +12530,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:48:00Z", "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12341,7 +12551,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:05:50Z", "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12362,7 +12572,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:21:06Z", "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12383,7 +12593,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:37:24Z", "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12404,7 +12614,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:06:04Z", "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12425,7 +12635,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:24:32Z", "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12446,7 +12656,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T10:53:20Z", "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12467,7 +12677,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:08:49Z", "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12488,7 +12698,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:26:24Z", "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12509,7 +12719,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:54:50Z", "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12530,7 +12740,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:11:15Z", "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12551,7 +12761,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:39:46Z", "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12572,7 +12782,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:48:58Z", "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12593,7 +12803,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:23Z", "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12614,7 +12824,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:16Z", "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12635,7 +12845,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:25Z", "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12656,7 +12866,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:53:13Z", "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12677,7 +12887,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:56:23Z", "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12698,7 +12908,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:56:45Z", "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12719,7 +12929,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:57:03Z", "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12740,7 +12950,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:06Z", "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12761,7 +12971,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:20Z", "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12782,7 +12992,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:26Z", "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12803,7 +13013,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:49:07Z", "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12824,7 +13034,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:11:17Z", "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12845,7 +13055,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:54:33Z", "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12866,7 +13076,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:35:39Z", "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12887,7 +13097,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:51:56Z", "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12908,7 +13118,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:23:52Z", "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12929,7 +13139,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:40:27Z", "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12950,7 +13160,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:07:56Z", "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12971,7 +13181,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:19:51Z", "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -12992,7 +13202,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:35:29Z", "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13013,7 +13223,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:00:14Z", "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13034,7 +13244,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:43Z", "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13055,7 +13265,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:28:23Z", "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13076,7 +13286,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T21:54:18Z", "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13097,7 +13307,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:13:06Z", "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13118,7 +13328,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:28:25Z", "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13139,7 +13349,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:45:26Z", "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13160,7 +13370,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:13:12Z", "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13181,7 +13391,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:32:37Z", "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13202,7 +13412,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:01:21Z", "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13223,7 +13433,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:19:33Z", "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13244,7 +13454,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:35:00Z", "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13265,7 +13475,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:51:03Z", "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13286,7 +13496,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:20:59Z", "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13307,7 +13517,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:39:12Z", "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13328,7 +13538,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:08:08Z", "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13349,7 +13559,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:23:44Z", "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13370,7 +13580,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:41:51Z", "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13391,7 +13601,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:09:53Z", "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13412,7 +13622,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:26:04Z", "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13433,7 +13643,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:54:19Z", "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13454,7 +13664,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:11:45Z", "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13475,7 +13685,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:26:38Z", "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13496,7 +13706,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:44:29Z", "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13517,7 +13727,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:13:59Z", "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13538,7 +13748,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:30:07Z", "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13559,7 +13769,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:58:40Z", "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13580,7 +13790,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:02:28Z", "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13601,7 +13811,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:16:23Z", "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13622,7 +13832,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:23:09Z", "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13643,7 +13853,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:54:49Z", "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13664,7 +13874,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:22:56Z", "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13685,7 +13895,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T14:54:41Z", "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13706,7 +13916,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:18:01Z", "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13727,7 +13937,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:52:34Z", "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13748,7 +13958,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T16:23:16Z", "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13769,7 +13979,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:18:16Z", "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13790,7 +14000,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:53:22Z", "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13811,7 +14021,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T21:10:14Z", "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13832,7 +14042,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T20:25:24Z", "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13853,7 +14063,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T19:51:34Z", "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13874,7 +14084,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T13:44:29Z", "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13895,7 +14105,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T17:30:02Z", "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13916,7 +14126,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T18:12:05Z", "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13937,7 +14147,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:44:01Z", "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13958,7 +14168,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T14:06:05Z", "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -13979,7 +14189,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:21:09Z", "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14000,7 +14210,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:42:47Z", "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14021,7 +14231,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:58:17Z", "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14042,7 +14252,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T21:20:39Z", "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14063,7 +14273,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:54:02Z", "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14084,7 +14294,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:16:14Z", "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14105,7 +14315,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:32:19Z", "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14126,7 +14336,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:54:08Z", "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14147,7 +14357,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:31:56Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14168,7 +14378,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:04Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14189,7 +14399,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:11:39Z", "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14210,7 +14420,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T18:31:49Z", "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14231,7 +14441,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:23:17Z", "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14252,7 +14462,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:07:24Z", "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14273,7 +14483,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:04:33Z", "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14294,7 +14504,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:07:31Z", "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14315,7 +14525,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:29:33Z", "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14336,7 +14546,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T02:59:33Z", "deletionTime": "2023-04-20T03:00:22Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14357,7 +14567,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:02:48Z", "deletionTime": "2023-04-20T03:25:34Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14378,7 +14588,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:24:53Z", "deletionTime": "2023-04-20T03:25:36Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14399,7 +14609,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T15:46:42Z", "deletionTime": "2023-04-20T15:47:35Z", - "oldestRestorableTime": "2023-03-21T15:57:32Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", "restorableLocations": [ { "locationName": "West US", @@ -14410,6 +14620,27 @@ ] } }, + { + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", + "properties": { + "accountName": "r-database-account-59", + "apiType": "Sql", + "creationTime": "2023-04-20T20:02:03Z", + "deletionTime": "2023-04-20T20:02:53Z", + "oldestRestorableTime": "2023-03-21T20:20:43Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z", + "deletionTime": "2023-04-20T20:02:53Z" + } + ] + } + }, { "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", "location": "East US", @@ -14419,7 +14650,7 @@ "accountName": "drop-continuous7", "apiType": "Sql", "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "East US", @@ -14438,7 +14669,7 @@ "accountName": "periodicacctdrop", "apiType": "Sql", "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T15:57:29Z", + "oldestRestorableTime": "2023-04-13T20:20:40Z", "restorableLocations": [ { "locationName": "East US", @@ -14457,7 +14688,7 @@ "accountName": "periodicacctdrop2", "apiType": "Sql", "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US", @@ -14476,7 +14707,7 @@ "accountName": "readregionrestore-1", "apiType": "Sql", "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T15:57:29Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "Southeast Asia", @@ -14501,7 +14732,7 @@ "apiType": "MongoDB", "creationTime": "2023-03-27T17:28:08Z", "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "East US", @@ -14522,7 +14753,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:24:07Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14549,7 +14780,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:06:45Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14924,7 +15155,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:45:59Z", "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "North Central US", @@ -14945,7 +15176,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T20:15:03Z", "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:40Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14965,7 +15196,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", "apiType": "Sql", "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14984,7 +15215,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", "apiType": "Sql", "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T15:57:30Z", + "oldestRestorableTime": "2023-03-21T20:20:41Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14998,16 +15229,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "120", "Content-Type": "application/json", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-bcd14d98c2d566fb-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-a909641f07dc2301-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9ac35d6dfc38ad6f8e8f2b626624bb76", + "x-ms-client-request-id": "e26785cdd5db13fc74adfcb9ebb043be", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -15015,7 +15246,7 @@ "location": "westcentralus", "properties": { "resource": { - "id": "sql-database-5035" + "id": "sql-database-4863" }, "options": { "throughput": 700 @@ -15024,34 +15255,34 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:34 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/operationResults/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 20:20:45 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863/operationResults/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1935a524-b43e-4908-881d-b1987f8a48b1", + "x-ms-correlation-request-id": "212e7282-bf58-4127-903f-ce1268e5a0ce", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "bcb0b77e-d2e1-4ddc-89a6-799294b92f45", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155735Z:1935a524-b43e-4908-881d-b1987f8a48b1" + "x-ms-request-id": "e82e66ef-18b5-4d20-bd21-c9aba60d994c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202045Z:212e7282-bf58-4127-903f-ce1268e5a0ce" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-7c77d6ae39dbc3b8-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-8430d25a3c7e92c8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "901f5852dcacf2467581b9b0f0cc17ba", + "x-ms-client-request-id": "0b7c6b9197957d84a3a09187193d37bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15060,29 +15291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:34 GMT", + "Date": "Thu, 20 Apr 2023 20:20:45 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb22ed17-0272-4b76-a6a3-3447f29cc8af", + "x-ms-correlation-request-id": "f08b0c4f-1aaf-42c9-b0cc-391d980f95d0", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "bb22ed17-0272-4b76-a6a3-3447f29cc8af", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155735Z:bb22ed17-0272-4b76-a6a3-3447f29cc8af" + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "f08b0c4f-1aaf-42c9-b0cc-391d980f95d0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202045Z:f08b0c4f-1aaf-42c9-b0cc-391d980f95d0" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-a671086d21126cf3-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-27f44f8a286a9f1d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "daf53c54b0481ae9866a74db5d25ea55", + "x-ms-client-request-id": "b33d3f7459c575a951ffca3fed0ac470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15091,29 +15322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:35 GMT", + "Date": "Thu, 20 Apr 2023 20:20:46 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "038bf25a-c7d9-49a2-88ac-e03651223278", + "x-ms-correlation-request-id": "0da91d9c-4987-4b09-8980-2e6084142ba7", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "038bf25a-c7d9-49a2-88ac-e03651223278", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155736Z:038bf25a-c7d9-49a2-88ac-e03651223278" + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "0da91d9c-4987-4b09-8980-2e6084142ba7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202046Z:0da91d9c-4987-4b09-8980-2e6084142ba7" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-4f468b8472330b75-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-21885b9b26de1729-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0d0faa202a04aec93cdb01b29a266859", + "x-ms-client-request-id": "8027b8e538349729a6691f2cc7ab4edb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15122,29 +15353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:36 GMT", + "Date": "Thu, 20 Apr 2023 20:20:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7482f5a7-96e1-4884-8d07-4fd50a365d35", + "x-ms-correlation-request-id": "7527bc9c-79ec-4ece-88e3-1625852a55cf", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "7482f5a7-96e1-4884-8d07-4fd50a365d35", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155737Z:7482f5a7-96e1-4884-8d07-4fd50a365d35" + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "7527bc9c-79ec-4ece-88e3-1625852a55cf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202048Z:7527bc9c-79ec-4ece-88e3-1625852a55cf" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-f8b0d7fbdfdea62c-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-e4d194b2c184da43-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "85f5e3459444a1386f050a41686b944f", + "x-ms-client-request-id": "0f7d296414c6377ec107b996cd459098", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15153,29 +15384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:38 GMT", + "Date": "Thu, 20 Apr 2023 20:20:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ade22223-8c8e-4e82-a001-5622ac09e925", + "x-ms-correlation-request-id": "c6edfce6-5b7c-47a5-8833-8225c8648131", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "ade22223-8c8e-4e82-a001-5622ac09e925", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155738Z:ade22223-8c8e-4e82-a001-5622ac09e925" + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "c6edfce6-5b7c-47a5-8833-8225c8648131", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202049Z:c6edfce6-5b7c-47a5-8833-8225c8648131" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-0593d5a85decf355-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-c6910e91a6166f5f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "468f639609bc29b573469e6daf368060", + "x-ms-client-request-id": "61a220dcb7153b8915a50d5c397daea6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15184,29 +15415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:40 GMT", + "Date": "Thu, 20 Apr 2023 20:20:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05fcbacb-9712-4588-91cc-77a24542a470", + "x-ms-correlation-request-id": "b623f4c3-be98-480d-b301-7b3aa0b54c5f", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "05fcbacb-9712-4588-91cc-77a24542a470", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155740Z:05fcbacb-9712-4588-91cc-77a24542a470" + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "b623f4c3-be98-480d-b301-7b3aa0b54c5f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202051Z:b623f4c3-be98-480d-b301-7b3aa0b54c5f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-6f8f48460206b92a-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-52adb97da3249332-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7a951a02652f8c10716d9eff208746d1", + "x-ms-client-request-id": "c3daefb0b58dd0a939f0bf2d7f93ca61", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15215,29 +15446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:44 GMT", + "Date": "Thu, 20 Apr 2023 20:20:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a312c28c-25af-4145-96f0-40b3f641c51b", + "x-ms-correlation-request-id": "f5cc9c99-1e7b-45bb-88ad-d5260d7f51d0", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "a312c28c-25af-4145-96f0-40b3f641c51b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155744Z:a312c28c-25af-4145-96f0-40b3f641c51b" + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "f5cc9c99-1e7b-45bb-88ad-d5260d7f51d0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202055Z:f5cc9c99-1e7b-45bb-88ad-d5260d7f51d0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bcb0b77e-d2e1-4ddc-89a6-799294b92f45?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/e82e66ef-18b5-4d20-bd21-c9aba60d994c?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-c1579edf0607d84a-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-00505704b7fbed70-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "361bb24622963c9d2dcc12fef6caf239", + "x-ms-client-request-id": "a65087d8ec09adc6a041f9200722fd44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15246,29 +15477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:52 GMT", + "Date": "Thu, 20 Apr 2023 20:21:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9ace00b-6b0b-4069-84d3-f9b42bb48ba6", + "x-ms-correlation-request-id": "b5cd1e65-9940-4b50-a4a9-347873c14412", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "d9ace00b-6b0b-4069-84d3-f9b42bb48ba6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155752Z:d9ace00b-6b0b-4069-84d3-f9b42bb48ba6" + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "b5cd1e65-9940-4b50-a4a9-347873c14412", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202103Z:b5cd1e65-9940-4b50-a4a9-347873c14412" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-51f61e38d4cd356d5a6e66bd888f4b48-8b7c09e5db93954b-00", + "traceparent": "00-fbc86ddbb818c8b03d1077f6453c3358-91d60d531858704b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4e3fa9851ad631205303d44e6bb609eb", + "x-ms-client-request-id": "dee51358cd6a260a77d12725f85cbc82", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15277,45 +15508,45 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "479", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:52 GMT", + "Date": "Thu, 20 Apr 2023 20:21:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d7eb341-fd1e-4f63-b24b-f2ff50358122", + "x-ms-correlation-request-id": "063adba2-1816-4dc0-acf8-2c5bd6af3183", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "3d7eb341-fd1e-4f63-b24b-f2ff50358122", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155753Z:3d7eb341-fd1e-4f63-b24b-f2ff50358122" + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "063adba2-1816-4dc0-acf8-2c5bd6af3183", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202103Z:063adba2-1816-4dc0-acf8-2c5bd6af3183" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863", "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", - "name": "sql-database-5035", + "name": "sql-database-4863", "properties": { "resource": { - "id": "sql-database-5035", - "_rid": "j3owAA==", - "_self": "dbs/j3owAA==/", - "_etag": "\u00220000f40a-0000-0600-0000-644160f60000\u0022", + "id": "sql-database-4863", + "_rid": "B3JiAA==", + "_self": "dbs/B3JiAA==/", + "_etag": "\u002200008b12-0000-0600-0000-64419ea50000\u0022", "_colls": "colls/", "_users": "users/", - "_ts": 1682006262 + "_ts": 1682022053 } } } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863/containers/sql-container-5779?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "489", "Content-Type": "application/json", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-2bb8e417fe78ac38-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-96b0a6767f461aeb-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1afc27ccca497ddf584c63521296a67b", + "x-ms-client-request-id": "2cb284ab9c0729c32d234bbb89c917f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -15323,7 +15554,7 @@ "location": "westcentralus", "properties": { "resource": { - "id": "sql-container-8650", + "id": "sql-container-5779", "indexingPolicy": { "automatic": true, "indexingMode": "consistent", @@ -15372,34 +15603,34 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:53 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650/operationResults/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 20:21:04 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863/containers/sql-container-5779/operationResults/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20b12b1c-6e3e-406f-b09c-ad484e9d64f3", + "x-ms-correlation-request-id": "4f5d1387-5465-4daa-bdb6-9d79c2600338", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "bb499232-b656-443a-b0f2-2f327cb7cd80", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155754Z:20b12b1c-6e3e-406f-b09c-ad484e9d64f3" + "x-ms-request-id": "273a6c5a-1888-4923-a62a-e523d5c71fe2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202104Z:4f5d1387-5465-4daa-bdb6-9d79c2600338" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-8235e28ecfa17fe4-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-ada328fa671d47c0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a329fe261ef5df3b60d07dcdbdde416c", + "x-ms-client-request-id": "9d5b4577174b765121b43da9be6bed07", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15408,29 +15639,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:53 GMT", + "Date": "Thu, 20 Apr 2023 20:21:04 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "010a99f6-dfea-4f4a-90c2-facdf46878b3", + "x-ms-correlation-request-id": "fe56a067-b7ed-4d32-8242-e08fdb5e6557", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "010a99f6-dfea-4f4a-90c2-facdf46878b3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155754Z:010a99f6-dfea-4f4a-90c2-facdf46878b3" + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "fe56a067-b7ed-4d32-8242-e08fdb5e6557", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202104Z:fe56a067-b7ed-4d32-8242-e08fdb5e6557" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-276b2f7dcbc841b4-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-9c565e15110f541f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3c06d32da392d107fb6b306637912e87", + "x-ms-client-request-id": "877d3210d450b5ef793502d864fe8878", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15439,29 +15670,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:54 GMT", + "Date": "Thu, 20 Apr 2023 20:21:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7719608-a805-422e-b936-59ba7cab5b56", + "x-ms-correlation-request-id": "e32f7482-3f16-4fd1-9a67-ebd9866e628e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "e7719608-a805-422e-b936-59ba7cab5b56", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155755Z:e7719608-a805-422e-b936-59ba7cab5b56" + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "e32f7482-3f16-4fd1-9a67-ebd9866e628e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202105Z:e32f7482-3f16-4fd1-9a67-ebd9866e628e" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-bb917a0145ffc2cb-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-a0b94d4f2a2a6669-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "132ca0d4036d46853e97e7277d5ed40b", + "x-ms-client-request-id": "4444c6df796d63a683f58c37b861bdbe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15470,29 +15701,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:55 GMT", + "Date": "Thu, 20 Apr 2023 20:21:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5276651-e2ab-439e-873b-7f597918fd91", + "x-ms-correlation-request-id": "822b06d1-e1b8-40d2-ba0c-7ea661850d3f", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "d5276651-e2ab-439e-873b-7f597918fd91", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155756Z:d5276651-e2ab-439e-873b-7f597918fd91" + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "822b06d1-e1b8-40d2-ba0c-7ea661850d3f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202106Z:822b06d1-e1b8-40d2-ba0c-7ea661850d3f" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-4774aaf93bcf01bb-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-236a9c5d086d3df1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7a2026a13bca8230f657a78aedd4a8cf", + "x-ms-client-request-id": "6eb43041bc37a23455a6241514781222", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15501,29 +15732,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:56 GMT", + "Date": "Thu, 20 Apr 2023 20:21:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "653819cc-63d3-45ef-a872-036d81dd08ac", + "x-ms-correlation-request-id": "3b33dd2c-64e5-43a8-983d-e9b96d0d4aa5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "653819cc-63d3-45ef-a872-036d81dd08ac", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155757Z:653819cc-63d3-45ef-a872-036d81dd08ac" + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "3b33dd2c-64e5-43a8-983d-e9b96d0d4aa5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202107Z:3b33dd2c-64e5-43a8-983d-e9b96d0d4aa5" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-058e918b10245a40-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-d1b027a3e949b36f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1df8f5a22db22aff4ec0fdfbbce0549d", + "x-ms-client-request-id": "f8cac52ca92797998b19045b47b7fc17", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15532,29 +15763,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:57:58 GMT", + "Date": "Thu, 20 Apr 2023 20:21:09 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac99458-2ce8-49d8-87bc-9626eb177969", + "x-ms-correlation-request-id": "284ba9cf-a814-41d2-bb2a-da225d41f502", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "eac99458-2ce8-49d8-87bc-9626eb177969", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155759Z:eac99458-2ce8-49d8-87bc-9626eb177969" + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "284ba9cf-a814-41d2-bb2a-da225d41f502", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202109Z:284ba9cf-a814-41d2-bb2a-da225d41f502" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-ad1889ff8e387c46-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-9ff8a4bf8f871201-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "11c42596b47099bc6fa91c155bfa5869", + "x-ms-client-request-id": "34964478194a234091a1eec754914f0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15563,29 +15794,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:58:03 GMT", + "Date": "Thu, 20 Apr 2023 20:21:13 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fea19ea-9b79-4d6c-b3cc-cfde45993230", + "x-ms-correlation-request-id": "2c49b991-5900-4d43-a99c-8a312f6f54ad", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "1fea19ea-9b79-4d6c-b3cc-cfde45993230", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155803Z:1fea19ea-9b79-4d6c-b3cc-cfde45993230" + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "2c49b991-5900-4d43-a99c-8a312f6f54ad", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202113Z:2c49b991-5900-4d43-a99c-8a312f6f54ad" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/bb499232-b656-443a-b0f2-2f327cb7cd80?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/273a6c5a-1888-4923-a62a-e523d5c71fe2?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-65ec96052aa50f31-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-f534614c78ee2d9a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "888417eeb665745826f62c0a3d35c615", + "x-ms-client-request-id": "f30a6ae2c5969797961de21eb7d95b9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15594,29 +15825,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:58:11 GMT", + "Date": "Thu, 20 Apr 2023 20:21:21 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03880cf7-70f2-4b7e-afaf-f06468f52062", + "x-ms-correlation-request-id": "73a7ba0c-4705-45b6-9619-063abd910d10", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "03880cf7-70f2-4b7e-afaf-f06468f52062", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155811Z:03880cf7-70f2-4b7e-afaf-f06468f52062" + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "73a7ba0c-4705-45b6-9619-063abd910d10", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202122Z:73a7ba0c-4705-45b6-9619-063abd910d10" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863/containers/sql-container-5779?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8b17a1bdf3bfe2ca0cc6f50e62eae3da-c9bbe9c10d8c82ed-00", + "traceparent": "00-c6d9c268a7374417cf3a7ae2d65a6a10-5b3ebdd6a9ff777f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c7f30a039710ee5e385fae0910e9ce53", + "x-ms-client-request-id": "cf9d0da9dee213d885a76685bbd242fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15625,24 +15856,24 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "1374", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 15:58:11 GMT", + "Date": "Thu, 20 Apr 2023 20:21:22 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26470c33-e543-4a73-84a8-c157333cb48f", + "x-ms-correlation-request-id": "2b29649d-7dd1-444a-ba85-8341b47ccce9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "26470c33-e543-4a73-84a8-c157333cb48f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T155811Z:26470c33-e543-4a73-84a8-c157333cb48f" + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "2b29649d-7dd1-444a-ba85-8341b47ccce9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T202122Z:2b29649d-7dd1-444a-ba85-8341b47ccce9" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733/sqlDatabases/sql-database-5035/containers/sql-container-8650", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943/sqlDatabases/sql-database-4863/containers/sql-container-5779", "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", - "name": "sql-container-8650", + "name": "sql-container-5779", "properties": { "resource": { - "id": "sql-container-8650", + "id": "sql-container-5779", "indexingPolicy": { "indexingMode": "consistent", "automatic": true, @@ -15703,10 +15934,10 @@ "geospatialConfig": { "type": "Geography" }, - "_rid": "j3owAIouD24=", - "_ts": 1682006282, - "_self": "dbs/j3owAA==/colls/j3owAIouD24=/", - "_etag": "\u00220000f90a-0000-0600-0000-6441610a0000\u0022", + "_rid": "B3JiAOnU6us=", + "_ts": 1682022071, + "_self": "dbs/B3JiAA==/colls/B3JiAOnU6us=/", + "_etag": "\u002200009012-0000-0600-0000-64419eb70000\u0022", "_docs": "docs/", "_sprocs": "sprocs/", "_triggers": "triggers/", @@ -15726,16 +15957,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "578", "Content-Type": "application/json", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-dcc1b5c58e18a74f-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-45d81e5a44c2e389-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5ba40c9437cbcde050ea7a87b15c39e3", + "x-ms-client-request-id": "addd78fa8109adb2fe9d2d37216cb846", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -15757,38 +15988,38 @@ "restoreParameters": { "restoreMode": "PointInTime", "sourceBackupLocation": "West Central US", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", - "restoreTimestampInUtc": "2023-04-20T16:59:32.0000000Z" + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "restoreTimestampInUtc": "2023-04-20T21:21:56.0000000Z" } } }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2864", + "Content-Length": "2869", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:37 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296/operationResults/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 21:25:47 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177/operationResults/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c53c6305-a689-4258-a662-bf9883498c66", + "x-ms-correlation-request-id": "6763497d-7db7-49de-abb7-a32db5a0d61c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170237Z:c53c6305-a689-4258-a662-bf9883498c66" + "x-ms-request-id": "f527b681-7c1e-4e3e-845c-88b9959dbee3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212547Z:6763497d-7db7-49de-abb7-a32db5a0d61c" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296", - "name": "restoredaccount-3296", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177", + "name": "restoredaccount-5177", "location": "West Central US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T17:02:34.837115Z" + "createdAt": "2023-04-20T21:25:44.8364981Z" }, "properties": { "provisioningState": "Creating", @@ -15803,7 +16034,7 @@ "enableFreeTier": false, "enableAnalyticalStorage": false, "analyticalStorageConfiguration": {}, - "instanceId": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "instanceId": "fe240915-dab9-40fb-8e13-34442caac7ad", "createMode": "Restore", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -15821,7 +16052,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", "documentEndpoint": "", "provisioningState": "Creating", @@ -15831,7 +16062,7 @@ ], "readLocations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", "documentEndpoint": "", "provisioningState": "Creating", @@ -15841,7 +16072,7 @@ ], "locations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", "documentEndpoint": "", "provisioningState": "Creating", @@ -15851,7 +16082,7 @@ ], "failoverPolicies": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", "failoverPriority": 0 } @@ -15867,8 +16098,8 @@ }, "restoreParameters": { "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", - "restoreTimestampInUtc": "2023-04-20T16:59:32Z", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "restoreTimestampInUtc": "2023-04-20T21:21:56Z", "sourceBackupLocation": "West Central US", "databasesToRestore": [] }, @@ -15881,16 +16112,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T17:02:34.837115Z" + "generationTime": "2023-04-20T21:25:44.8364981Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T17:02:34.837115Z" + "generationTime": "2023-04-20T21:25:44.8364981Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T17:02:34.837115Z" + "generationTime": "2023-04-20T21:25:44.8364981Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T17:02:34.837115Z" + "generationTime": "2023-04-20T21:25:44.8364981Z" } } }, @@ -15900,13 +16131,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-ba905f4768676b07-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-1ee62ad24bef5256-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "28a8a3d8ba21d33713fac0ace3668603", + "x-ms-client-request-id": "60bc53e8f07e8c9fea22e340aadb633b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15915,29 +16146,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:41 GMT", + "Date": "Thu, 20 Apr 2023 21:25:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4ad616a-dc72-4721-ba46-498bb5cf3df9", + "x-ms-correlation-request-id": "d3327cc3-90a1-43fc-a943-2612325fe968", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "b4ad616a-dc72-4721-ba46-498bb5cf3df9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170242Z:b4ad616a-dc72-4721-ba46-498bb5cf3df9" + "x-ms-request-id": "d3327cc3-90a1-43fc-a943-2612325fe968", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212547Z:d3327cc3-90a1-43fc-a943-2612325fe968" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-0cd0d2ffa260fa8b-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-482a2ee8a7e0e6be-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d70925744d7e3bd6b5ebc47c31d77eec", + "x-ms-client-request-id": "b36a3fad06fbd24b734ab69c91549b22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15946,29 +16177,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:42 GMT", + "Date": "Thu, 20 Apr 2023 21:25:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb", + "x-ms-correlation-request-id": "01f7f3c1-4643-4b22-b89d-662c78d6450c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170243Z:d7b261c5-3b23-4f35-a1ef-ae0bc8a81eeb" + "x-ms-request-id": "01f7f3c1-4643-4b22-b89d-662c78d6450c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212549Z:01f7f3c1-4643-4b22-b89d-662c78d6450c" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-25f57ee4adbd02bc-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-27ea301b15d035e5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0eaf53ad10b34cc1db7df39698aad630", + "x-ms-client-request-id": "ce4f52d958af60c77fbb095c44c4e71b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15977,29 +16208,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:43 GMT", + "Date": "Thu, 20 Apr 2023 21:25:49 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb0d9695-9245-4a57-992a-59c6801e2675", + "x-ms-correlation-request-id": "0b1b58c0-28d6-42ab-afba-d0b76dd9f431", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "eb0d9695-9245-4a57-992a-59c6801e2675", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170244Z:eb0d9695-9245-4a57-992a-59c6801e2675" + "x-ms-request-id": "0b1b58c0-28d6-42ab-afba-d0b76dd9f431", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212550Z:0b1b58c0-28d6-42ab-afba-d0b76dd9f431" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-f966f42d5951d832-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-52b812b940540d13-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "299402c8655a8ba9cd6d7336f5bba13c", + "x-ms-client-request-id": "d1b0b40a1171e2df08e9ec333903fa96", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16008,29 +16239,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:44 GMT", + "Date": "Thu, 20 Apr 2023 21:25:50 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de0ee014-816a-4cd1-b8c8-d141f5d3e568", + "x-ms-correlation-request-id": "73f60d28-ac07-4c71-a44b-fe8505b2d6ac", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "de0ee014-816a-4cd1-b8c8-d141f5d3e568", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170245Z:de0ee014-816a-4cd1-b8c8-d141f5d3e568" + "x-ms-request-id": "73f60d28-ac07-4c71-a44b-fe8505b2d6ac", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212551Z:73f60d28-ac07-4c71-a44b-fe8505b2d6ac" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-1df94855416d58f2-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-3db74b0f81b9d69c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "90fed37b78b7634f63bcfb005a3fa20a", + "x-ms-client-request-id": "5867c086958c558b770a3440fcee8daf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16039,29 +16270,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:46 GMT", + "Date": "Thu, 20 Apr 2023 21:25:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35789de9-89e8-4c93-837c-05e99165c2a3", + "x-ms-correlation-request-id": "44f3dcbe-a1c9-4dae-abae-0bdb529428e1", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "35789de9-89e8-4c93-837c-05e99165c2a3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170247Z:35789de9-89e8-4c93-837c-05e99165c2a3" + "x-ms-request-id": "44f3dcbe-a1c9-4dae-abae-0bdb529428e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212553Z:44f3dcbe-a1c9-4dae-abae-0bdb529428e1" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-5ec0e1b550655f86-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-c65143680e5b48e5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2eb3941455424892aa2441459d8b571f", + "x-ms-client-request-id": "dc929a63caa3c8b0736cc5c56b94267b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16070,29 +16301,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:50 GMT", + "Date": "Thu, 20 Apr 2023 21:25:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abe9d602-93f0-4e35-a8e2-74d51788af3d", + "x-ms-correlation-request-id": "152dc7d1-e081-4581-8624-7012427e98e1", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "abe9d602-93f0-4e35-a8e2-74d51788af3d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170251Z:abe9d602-93f0-4e35-a8e2-74d51788af3d" + "x-ms-request-id": "152dc7d1-e081-4581-8624-7012427e98e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212557Z:152dc7d1-e081-4581-8624-7012427e98e1" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-4e9c74c3e58fcb0a-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-7a69312ecd870887-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c51ab6dc46ab5079b231c59d69a8318d", + "x-ms-client-request-id": "84d573c08f5d748e295b5967dc9ee619", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16101,29 +16332,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:02:59 GMT", + "Date": "Thu, 20 Apr 2023 21:26:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9ab03b4-89bc-497b-b16a-39fc42fbb926", + "x-ms-correlation-request-id": "caac67e5-c3ca-40d6-ad90-9d4bbf70b927", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "d9ab03b4-89bc-497b-b16a-39fc42fbb926", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170259Z:d9ab03b4-89bc-497b-b16a-39fc42fbb926" + "x-ms-request-id": "caac67e5-c3ca-40d6-ad90-9d4bbf70b927", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212605Z:caac67e5-c3ca-40d6-ad90-9d4bbf70b927" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-27868b656c81bc1a-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-ccd5d707e5b27596-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "602168ca720826f941b6e592360ac5d8", + "x-ms-client-request-id": "9fcf3d5c1d71bcf30f9ee41fcfc5eae3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16132,29 +16363,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:03:16 GMT", + "Date": "Thu, 20 Apr 2023 21:26:21 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f", + "x-ms-correlation-request-id": "65763892-1b25-492c-9712-c0048090b6f2", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170316Z:90a09eb4-bf18-4eda-a4a8-d4f64b53aa4f" + "x-ms-request-id": "65763892-1b25-492c-9712-c0048090b6f2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212621Z:65763892-1b25-492c-9712-c0048090b6f2" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-010bbc893eaf08f4-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-03f1eba908f2517a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a324dc65dd24ce5f1a627c1190f4de01", + "x-ms-client-request-id": "887fb8e40919d4510b1db3477049ebd4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16163,29 +16394,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:03:47 GMT", + "Date": "Thu, 20 Apr 2023 21:26:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15caa767-2077-4fba-a7a8-8a9f72e94045", + "x-ms-correlation-request-id": "4927fb61-b32e-458c-87f1-66ffc04bdc86", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "15caa767-2077-4fba-a7a8-8a9f72e94045", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170348Z:15caa767-2077-4fba-a7a8-8a9f72e94045" + "x-ms-request-id": "4927fb61-b32e-458c-87f1-66ffc04bdc86", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212653Z:4927fb61-b32e-458c-87f1-66ffc04bdc86" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-6ac4dafb1a8e0c12-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-881c422802ef067b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "347ab3f2f66a6a16bcf483f460e619a8", + "x-ms-client-request-id": "2d69ac8687c5a20a801974beaa6fa563", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16194,29 +16425,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:04:19 GMT", + "Date": "Thu, 20 Apr 2023 21:27:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fb1d16d-0d4a-4de7-8e37-d738a2965061", + "x-ms-correlation-request-id": "4e342d47-2d02-4698-a8aa-dbcc18bfffa0", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "8fb1d16d-0d4a-4de7-8e37-d738a2965061", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170420Z:8fb1d16d-0d4a-4de7-8e37-d738a2965061" + "x-ms-request-id": "4e342d47-2d02-4698-a8aa-dbcc18bfffa0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212725Z:4e342d47-2d02-4698-a8aa-dbcc18bfffa0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-f2f66faf53870c55-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-8ded36c478934cfd-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8d38ec6b8d84ed68085245a6f6e8964d", + "x-ms-client-request-id": "238376705d1f5200ebfb93546aab4cc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16225,29 +16456,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:04:51 GMT", + "Date": "Thu, 20 Apr 2023 21:27:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "436b5d44-db83-4f51-968f-75defa1d7f11", + "x-ms-correlation-request-id": "7500b570-5f54-4e84-8f2d-5ebdc6721b28", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "436b5d44-db83-4f51-968f-75defa1d7f11", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170452Z:436b5d44-db83-4f51-968f-75defa1d7f11" + "x-ms-request-id": "7500b570-5f54-4e84-8f2d-5ebdc6721b28", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212757Z:7500b570-5f54-4e84-8f2d-5ebdc6721b28" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e654f9865027c499-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-c66cb7b691e54a7e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "829fe4d8918f6e6dc5bae6305a6a6e34", + "x-ms-client-request-id": "22980fb3bc5b5c1daedc08ff9593299c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16256,29 +16487,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:05:24 GMT", + "Date": "Thu, 20 Apr 2023 21:28:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38d95b20-ffba-41b1-ad1e-85de3bfbfcae", + "x-ms-correlation-request-id": "25227355-0d28-445f-bbee-fb196caa7f23", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "38d95b20-ffba-41b1-ad1e-85de3bfbfcae", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170524Z:38d95b20-ffba-41b1-ad1e-85de3bfbfcae" + "x-ms-request-id": "25227355-0d28-445f-bbee-fb196caa7f23", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212829Z:25227355-0d28-445f-bbee-fb196caa7f23" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-72ade9d8f167289f-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-2d12cd4886660c2f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a3a5d34851bc657c4b8d2b17b07073d4", + "x-ms-client-request-id": "f9d75078c7c629b5ac1741c9f3b638d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16287,29 +16518,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:05:56 GMT", + "Date": "Thu, 20 Apr 2023 21:29:01 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "414f90e3-eebd-49e0-ba0b-2513aa46df73", + "x-ms-correlation-request-id": "aa5a2cdb-25b3-42e2-a7f2-df931c4e72e9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "414f90e3-eebd-49e0-ba0b-2513aa46df73", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170556Z:414f90e3-eebd-49e0-ba0b-2513aa46df73" + "x-ms-request-id": "aa5a2cdb-25b3-42e2-a7f2-df931c4e72e9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212902Z:aa5a2cdb-25b3-42e2-a7f2-df931c4e72e9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-8f0f61d603fc8e88-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-34ffe36eddbe7a0f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7c1c365d9646da197ec9c8caa738939e", + "x-ms-client-request-id": "9b0baecc82d6b307582675435500bd58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16318,29 +16549,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:06:27 GMT", + "Date": "Thu, 20 Apr 2023 21:29:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "184121d9-2634-4b39-8650-14693fd7e969", + "x-ms-correlation-request-id": "20868112-1b85-4416-90b4-e2736c338b9c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "184121d9-2634-4b39-8650-14693fd7e969", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170628Z:184121d9-2634-4b39-8650-14693fd7e969" + "x-ms-request-id": "20868112-1b85-4416-90b4-e2736c338b9c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T212934Z:20868112-1b85-4416-90b4-e2736c338b9c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-ff6a6b394928233d-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-2d2def2a51039991-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "225e11e3f3438790673a37016556bd54", + "x-ms-client-request-id": "19dbf6d153d4ebff5a6f76447b5369f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16349,29 +16580,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:07:00 GMT", + "Date": "Thu, 20 Apr 2023 21:30:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8", + "x-ms-correlation-request-id": "0f9dfd6c-7bda-43a0-8e47-1790da91c8ed", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170700Z:6c8c8f1e-6e2b-4a03-b614-a3f5fa78b0f8" + "x-ms-request-id": "0f9dfd6c-7bda-43a0-8e47-1790da91c8ed", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213006Z:0f9dfd6c-7bda-43a0-8e47-1790da91c8ed" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-06534bfb5694693c-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-dae6e36d579c006b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "23d21246f24eb1edb9ca24f289b1bd12", + "x-ms-client-request-id": "e63333a38d88f5c64823a0a05272d4ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16380,29 +16611,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:07:32 GMT", + "Date": "Thu, 20 Apr 2023 21:30:38 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b2f93fa-0951-4892-8b89-cb283e3270df", + "x-ms-correlation-request-id": "25924285-bc3a-497c-b0ac-ac8deacc77ac", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "5b2f93fa-0951-4892-8b89-cb283e3270df", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170732Z:5b2f93fa-0951-4892-8b89-cb283e3270df" + "x-ms-request-id": "25924285-bc3a-497c-b0ac-ac8deacc77ac", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213038Z:25924285-bc3a-497c-b0ac-ac8deacc77ac" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-64d8408fcce5f3b0-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-650621402cf2b1cc-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9f338df951126a90a595140b5f177528", + "x-ms-client-request-id": "fdf8e9591eda7900ae1f41660bc33805", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16411,29 +16642,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:08:04 GMT", + "Date": "Thu, 20 Apr 2023 21:31:09 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "171cabe6-86c7-4e48-b1d3-a492d550f008", + "x-ms-correlation-request-id": "fbdda207-bddc-4648-be71-0aaf4d3da818", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "171cabe6-86c7-4e48-b1d3-a492d550f008", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170804Z:171cabe6-86c7-4e48-b1d3-a492d550f008" + "x-ms-request-id": "fbdda207-bddc-4648-be71-0aaf4d3da818", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213110Z:fbdda207-bddc-4648-be71-0aaf4d3da818" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-43257c389d7e9edc-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-1aed41a9bab5eb9d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9584730b6f65f14f24ac6878ce9dfeb5", + "x-ms-client-request-id": "229f7dbdd6cd43d02fe6d1b0b25f99e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16442,29 +16673,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:08:36 GMT", + "Date": "Thu, 20 Apr 2023 21:31:42 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b55542a-5741-4fab-b237-f9d93457a6fb", + "x-ms-correlation-request-id": "3cd04d08-aa12-4d2a-bb1a-df010f216d5b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "0b55542a-5741-4fab-b237-f9d93457a6fb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170837Z:0b55542a-5741-4fab-b237-f9d93457a6fb" + "x-ms-request-id": "3cd04d08-aa12-4d2a-bb1a-df010f216d5b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213142Z:3cd04d08-aa12-4d2a-bb1a-df010f216d5b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-6d99644ed63cbcf4-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-8060d64e87e4d710-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d708257d1e22f54281687eb9dde152a2", + "x-ms-client-request-id": "91eaca9b6b5b841e32b938684c5fea84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16473,29 +16704,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:09:08 GMT", + "Date": "Thu, 20 Apr 2023 21:32:14 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "996ed2cd-41a0-444a-a97a-4421e8d55fe7", + "x-ms-correlation-request-id": "aecd96c3-ecfb-421c-a2c7-563db9c11d2e", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "996ed2cd-41a0-444a-a97a-4421e8d55fe7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170909Z:996ed2cd-41a0-444a-a97a-4421e8d55fe7" + "x-ms-request-id": "aecd96c3-ecfb-421c-a2c7-563db9c11d2e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213214Z:aecd96c3-ecfb-421c-a2c7-563db9c11d2e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-60cced6d1663a1c3-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-c29ba0f55a2c53e5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "15e7fb55272d8aad3e427b65e8189b08", + "x-ms-client-request-id": "d4e39beab2d282df19b4cdf44d50c74e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16504,29 +16735,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:09:40 GMT", + "Date": "Thu, 20 Apr 2023 21:32:46 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0a3634d-0570-4a27-81ab-05642224c842", + "x-ms-correlation-request-id": "05a683e4-8082-4f79-9d85-8ecf83ad6a88", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a0a3634d-0570-4a27-81ab-05642224c842", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T170941Z:a0a3634d-0570-4a27-81ab-05642224c842" + "x-ms-request-id": "05a683e4-8082-4f79-9d85-8ecf83ad6a88", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213246Z:05a683e4-8082-4f79-9d85-8ecf83ad6a88" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-742c8acdcd049f74-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-3ca136454b6ef1d2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3a8e5f979d0fed06318f14fdf1961342", + "x-ms-client-request-id": "41cb5985a7d851a95f1aef139e67f7d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16535,29 +16766,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:10:12 GMT", + "Date": "Thu, 20 Apr 2023 21:33:18 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5707af6d-1496-4409-9d63-722d8ea4c73d", + "x-ms-correlation-request-id": "7321b719-da96-4d3e-aaac-d2963bf3e489", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "5707af6d-1496-4409-9d63-722d8ea4c73d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171013Z:5707af6d-1496-4409-9d63-722d8ea4c73d" + "x-ms-request-id": "7321b719-da96-4d3e-aaac-d2963bf3e489", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213318Z:7321b719-da96-4d3e-aaac-d2963bf3e489" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-120afbf04d341955-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-13c9838c2968db20-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d322c65ae8b65588777d99dfa3dc0c68", + "x-ms-client-request-id": "17c54cfbc47ce815ea6777a79e2937e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16566,29 +16797,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:10:45 GMT", + "Date": "Thu, 20 Apr 2023 21:33:50 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e420532a-1157-492a-8b5f-f5cfc7f4b4c1", + "x-ms-correlation-request-id": "cc9d0e94-0256-47eb-996c-3e52b012a7b5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "e420532a-1157-492a-8b5f-f5cfc7f4b4c1", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171045Z:e420532a-1157-492a-8b5f-f5cfc7f4b4c1" + "x-ms-request-id": "cc9d0e94-0256-47eb-996c-3e52b012a7b5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213351Z:cc9d0e94-0256-47eb-996c-3e52b012a7b5" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-78c6ce71e80735d9-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-1dd98bb5019ba2a6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7e2276cc1853b792f5f9e49d13af98a7", + "x-ms-client-request-id": "f3e2e9f1a89343acf19275b8c2cbe4b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16597,29 +16828,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:11:16 GMT", + "Date": "Thu, 20 Apr 2023 21:34:23 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d736992-ef16-4770-bc94-398fe91a7356", + "x-ms-correlation-request-id": "461eef88-5fa9-47c5-8791-95398b825111", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "0d736992-ef16-4770-bc94-398fe91a7356", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171117Z:0d736992-ef16-4770-bc94-398fe91a7356" + "x-ms-request-id": "461eef88-5fa9-47c5-8791-95398b825111", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213423Z:461eef88-5fa9-47c5-8791-95398b825111" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-299eeedf0c365c69-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-51a094dcc74086cc-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "210b382ec8f5ae51d638c29104264954", + "x-ms-client-request-id": "00f8fdbdaf8ac1d244e256702f01b235", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16628,29 +16859,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:11:49 GMT", + "Date": "Thu, 20 Apr 2023 21:34:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dd3608c-ef47-4f07-af45-fc71435b57f9", + "x-ms-correlation-request-id": "f31e9f25-0356-4d96-9266-7bfb87b85928", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "0dd3608c-ef47-4f07-af45-fc71435b57f9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171149Z:0dd3608c-ef47-4f07-af45-fc71435b57f9" + "x-ms-request-id": "f31e9f25-0356-4d96-9266-7bfb87b85928", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213455Z:f31e9f25-0356-4d96-9266-7bfb87b85928" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-fe5bcd8124a8693b-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-6c985c6f46ced8ae-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7b31ab82947442ee336bdebc03ea42c7", + "x-ms-client-request-id": "b5220de30384533ca08125ea4f5c261f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16659,29 +16890,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:12:21 GMT", + "Date": "Thu, 20 Apr 2023 21:35:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10736018-7b7b-47a6-8a7c-25bec5d7e669", + "x-ms-correlation-request-id": "a2527f02-c2bb-4789-8fb5-3236e5b83275", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "10736018-7b7b-47a6-8a7c-25bec5d7e669", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171221Z:10736018-7b7b-47a6-8a7c-25bec5d7e669" + "x-ms-request-id": "a2527f02-c2bb-4789-8fb5-3236e5b83275", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213527Z:a2527f02-c2bb-4789-8fb5-3236e5b83275" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e794c53116446a35-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-7094493faa92c0d9-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6ab1f1e5ead104732473a71a5500b3ce", + "x-ms-client-request-id": "a1eac583373142571621afb0513b14f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16690,29 +16921,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:12:53 GMT", + "Date": "Thu, 20 Apr 2023 21:35:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "141367e2-b1dd-4481-860e-2ffd48f39ddf", + "x-ms-correlation-request-id": "b0269e90-1b5f-44fe-b415-fa30745e2d3d", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "141367e2-b1dd-4481-860e-2ffd48f39ddf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171253Z:141367e2-b1dd-4481-860e-2ffd48f39ddf" + "x-ms-request-id": "b0269e90-1b5f-44fe-b415-fa30745e2d3d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213559Z:b0269e90-1b5f-44fe-b415-fa30745e2d3d" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-4aba54f9f638e489-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-b75d6ea0c0be6a2b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "671b90b01d7e99334ac8ed8aea94aaec", + "x-ms-client-request-id": "b4d540df2fa9b92dc0a45f088ae772e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16721,29 +16952,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:13:25 GMT", + "Date": "Thu, 20 Apr 2023 21:36:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a56c422a-5c72-495c-a013-7474c3e7d57a", + "x-ms-correlation-request-id": "0b8d9e5a-d051-45f0-bb1c-dd2862c960af", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "a56c422a-5c72-495c-a013-7474c3e7d57a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171325Z:a56c422a-5c72-495c-a013-7474c3e7d57a" + "x-ms-request-id": "0b8d9e5a-d051-45f0-bb1c-dd2862c960af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213631Z:0b8d9e5a-d051-45f0-bb1c-dd2862c960af" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-782f3b1010f761a0-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-a14738c165de8483-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "13acfaf6df759883382d5600edd3ec32", + "x-ms-client-request-id": "69ed36bc1017ab03b6e09e63548b0164", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16752,29 +16983,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:13:57 GMT", + "Date": "Thu, 20 Apr 2023 21:37:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "369804e8-734d-4a6b-81b1-50f2e0cb01f6", + "x-ms-correlation-request-id": "12e71bbc-16b3-4dd0-834e-6c21444463c9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "369804e8-734d-4a6b-81b1-50f2e0cb01f6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171358Z:369804e8-734d-4a6b-81b1-50f2e0cb01f6" + "x-ms-request-id": "12e71bbc-16b3-4dd0-834e-6c21444463c9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213703Z:12e71bbc-16b3-4dd0-834e-6c21444463c9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-8e41c8a4883505e5-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-233fbdf774ba249e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "730c0fb7dbcfc749bd172008fce8198f", + "x-ms-client-request-id": "0e0a356d718754769830e08cd74eb72e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16783,29 +17014,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:14:29 GMT", + "Date": "Thu, 20 Apr 2023 21:37:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d48dfc19-a9ec-419c-962c-348b032b608c", + "x-ms-correlation-request-id": "33b9398a-90a1-43e3-92e5-691a3dc8ea3c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "d48dfc19-a9ec-419c-962c-348b032b608c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171430Z:d48dfc19-a9ec-419c-962c-348b032b608c" + "x-ms-request-id": "33b9398a-90a1-43e3-92e5-691a3dc8ea3c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213735Z:33b9398a-90a1-43e3-92e5-691a3dc8ea3c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-e74cf7a1d19ddcef-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-3e347f5c7ac75c3a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5b24bbc8a054d0590c822e51c633ac76", + "x-ms-client-request-id": "1af4c7afab4eced83c29fdc990ca6435", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16814,60 +17045,91 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:01 GMT", + "Date": "Thu, 20 Apr 2023 21:38:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60f6093e-6176-4ab2-a099-4dd87c192f59", + "x-ms-correlation-request-id": "aadff57c-864d-4c19-97de-8624b991cce3", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "60f6093e-6176-4ab2-a099-4dd87c192f59", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171502Z:60f6093e-6176-4ab2-a099-4dd87c192f59" + "x-ms-request-id": "aadff57c-864d-4c19-97de-8624b991cce3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213807Z:aadff57c-864d-4c19-97de-8624b991cce3" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/d0b8d7a4-28d2-44c8-98c3-1a7aca52e0d7?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-d8be36ff61db5a51-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-70a9e557618eec9e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dad2bbdc37871a1db1e4555dbf7a9b4f", + "x-ms-client-request-id": "559bfba363dd4a5fc098d0e63077d468", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:33 GMT", + "Date": "Thu, 20 Apr 2023 21:38:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9df74c0-8b6d-41d9-9d28-bd1a30c7e038", + "x-ms-correlation-request-id": "04898390-2dfe-491a-b7aa-b63c57e0c386", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "d9df74c0-8b6d-41d9-9d28-bd1a30c7e038", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171534Z:d9df74c0-8b6d-41d9-9d28-bd1a30c7e038" + "x-ms-request-id": "04898390-2dfe-491a-b7aa-b63c57e0c386", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213839Z:04898390-2dfe-491a-b7aa-b63c57e0c386" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f527b681-7c1e-4e3e-845c-88b9959dbee3?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-ccfff86493e70f42-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8cb46f28e696c2155d3cd25e74adc3ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 21:39:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3847c8bf-0f45-4054-ba77-f90816ab6983", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "3847c8bf-0f45-4054-ba77-f90816ab6983", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213912Z:3847c8bf-0f45-4054-ba77-f90816ab6983" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e671ab9773efbeb74abc6f948f3e3b30-a47cbd9930bbda10-00", + "traceparent": "00-3938ebb5df8217be2cd75591f1b0f205-6f31521fefe5782c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3137c61391ae17deb63b664cacf7008a", + "x-ms-client-request-id": "dce9abcc62b34b5168a95ab6daf19ec5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16876,31 +17138,31 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "3234", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:33 GMT", + "Date": "Thu, 20 Apr 2023 21:39:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b14b45f3-222c-4e3c-ac21-328a9426cda6", + "x-ms-correlation-request-id": "e5e62ed9-6046-438e-97ac-2e168327c2e1", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "b14b45f3-222c-4e3c-ac21-328a9426cda6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171534Z:b14b45f3-222c-4e3c-ac21-328a9426cda6" + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "e5e62ed9-6046-438e-97ac-2e168327c2e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213912Z:e5e62ed9-6046-438e-97ac-2e168327c2e1" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296", - "name": "restoredaccount-3296", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177", + "name": "restoredaccount-5177", "location": "West Central US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T17:15:17.1331103Z" + "createdAt": "2023-04-20T21:38:35.8571658Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://restoredaccount-3296.documents.azure.com:443/", - "sqlEndpoint": "https://restoredaccount-3296.documents.azure.com:443/", + "documentEndpoint": "https://restoredaccount-5177.documents.azure.com:443/", + "sqlEndpoint": "https://restoredaccount-5177.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -16912,7 +17174,7 @@ "enableFreeTier": false, "enableAnalyticalStorage": false, "analyticalStorageConfiguration": {}, - "instanceId": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "instanceId": "fe240915-dab9-40fb-8e13-34442caac7ad", "createMode": "Restore", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -16930,9 +17192,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "documentEndpoint": "https://restoredaccount-5177-northcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -16940,9 +17202,9 @@ ], "readLocations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "documentEndpoint": "https://restoredaccount-5177-northcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -16950,9 +17212,9 @@ ], "locations": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-3296-northcentralus.documents.azure.com:443/", + "documentEndpoint": "https://restoredaccount-5177-northcentralus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -16960,7 +17222,7 @@ ], "failoverPolicies": [ { - "id": "restoredaccount-3296-northcentralus", + "id": "restoredaccount-5177-northcentralus", "locationName": "North Central US", "failoverPriority": 0 } @@ -16976,8 +17238,8 @@ }, "restoreParameters": { "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", - "restoreTimestampInUtc": "2023-04-20T16:59:32Z", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "restoreTimestampInUtc": "2023-04-20T21:21:56Z", "sourceBackupLocation": "West Central US", "databasesToRestore": [] }, @@ -16990,16 +17252,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T17:15:17.1331103Z" + "generationTime": "2023-04-20T21:38:35.8571658Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T17:15:17.1331103Z" + "generationTime": "2023-04-20T21:38:35.8571658Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T17:15:17.1331103Z" + "generationTime": "2023-04-20T21:38:35.8571658Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T17:15:17.1331103Z" + "generationTime": "2023-04-20T21:38:35.8571658Z" } } }, @@ -17009,46 +17271,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-2733?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-4943?api-version=2022-11-15-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-ef50cf266b527a81-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-e3a2b545bcc89226-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "412ca96b3f1691089d0aaa6f4afc1191", + "x-ms-client-request-id": "20a09554d816bc9ee5d8f7a19100d612", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:34 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 21:39:12 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9935221-1878-4c19-8db3-faba68a6413b", + "x-ms-correlation-request-id": "41aad8e4-baba-4543-b681-cc8d896dfcc5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "1949d3d5-b489-4ef6-bfe3-9652000a2302", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171535Z:f9935221-1878-4c19-8db3-faba68a6413b" + "x-ms-request-id": "608b8e7e-59dc-468c-a7f7-c5c9b3d151b6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213913Z:41aad8e4-baba-4543-b681-cc8d896dfcc5" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-601873e13ecac27a-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-748956143d93d380-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "15f1cbe3594ed339bea694a4e76ecdba", + "x-ms-client-request-id": "de090c9da20df3b80c2df6da6ab0ba67", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17057,60 +17319,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:34 GMT", + "Date": "Thu, 20 Apr 2023 21:39:12 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4868b5ac-0107-4407-8d53-9acde00cec5e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "4868b5ac-0107-4407-8d53-9acde00cec5e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171535Z:4868b5ac-0107-4407-8d53-9acde00cec5e" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-ad54db7366bb37b1-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cd64d42a00b9f08ee1e1655b1bbbc0cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:36 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "943adfd4-a900-4121-9afb-2ee2101f2d0d", + "x-ms-correlation-request-id": "7e1df155-315a-4790-8779-4e35a901177c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "943adfd4-a900-4121-9afb-2ee2101f2d0d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171536Z:943adfd4-a900-4121-9afb-2ee2101f2d0d" + "x-ms-request-id": "7e1df155-315a-4790-8779-4e35a901177c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213913Z:7e1df155-315a-4790-8779-4e35a901177c" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-73f2dbf23deca624-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-9a8529446e0103e2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7f8bf09bfc0a8e43a56a4154e523636d", + "x-ms-client-request-id": "d7e148d219d65c37e0da02adb3b13086", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17119,29 +17350,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:37 GMT", + "Date": "Thu, 20 Apr 2023 21:39:13 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b099426-7568-4f1d-bf6a-28a7e6e3c78d", + "x-ms-correlation-request-id": "80fbff6d-d182-4367-a07d-07c57d7c880e", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "9b099426-7568-4f1d-bf6a-28a7e6e3c78d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171537Z:9b099426-7568-4f1d-bf6a-28a7e6e3c78d" + "x-ms-request-id": "80fbff6d-d182-4367-a07d-07c57d7c880e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213914Z:80fbff6d-d182-4367-a07d-07c57d7c880e" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-df7d79ccc6f8d0c8-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-81281ab1f1961c64-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fb2169eda16de3003c00346df4ddb802", + "x-ms-client-request-id": "84038cf0f8f731054a26786001da5b6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17150,29 +17381,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:38 GMT", + "Date": "Thu, 20 Apr 2023 21:39:15 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a434940-0217-4b30-848b-17dbfa7af90c", + "x-ms-correlation-request-id": "4ab31620-98fb-4f4b-892d-d14c7bb59912", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "1a434940-0217-4b30-848b-17dbfa7af90c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171539Z:1a434940-0217-4b30-848b-17dbfa7af90c" + "x-ms-request-id": "4ab31620-98fb-4f4b-892d-d14c7bb59912", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213915Z:4ab31620-98fb-4f4b-892d-d14c7bb59912" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f81e74a2bce8afad-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-62782c4221ccac2c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f608c8e54ee32eb091d6274ebf3a0bbd", + "x-ms-client-request-id": "431abcae107d8394d5acfe32a00a3f5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17181,29 +17412,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:40 GMT", + "Date": "Thu, 20 Apr 2023 21:39:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ab55a94-1f3b-4922-9f97-6634cf2bbf19", + "x-ms-correlation-request-id": "1c9d1e58-9fe5-4423-a06c-f3dfd15d9422", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "7ab55a94-1f3b-4922-9f97-6634cf2bbf19", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171541Z:7ab55a94-1f3b-4922-9f97-6634cf2bbf19" + "x-ms-request-id": "1c9d1e58-9fe5-4423-a06c-f3dfd15d9422", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213916Z:1c9d1e58-9fe5-4423-a06c-f3dfd15d9422" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-06d39890450a6338-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-9c12689199eae028-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b16ef77dc59afa5ef0a84209c7d699c7", + "x-ms-client-request-id": "deea6ffc35acda7042af8dafa1d75a05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17212,29 +17443,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:44 GMT", + "Date": "Thu, 20 Apr 2023 21:39:18 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "902e262e-5df9-4526-bdd2-052d5a6e6619", + "x-ms-correlation-request-id": "764eda75-9a76-44c7-9c1c-77267ff2fe5c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "902e262e-5df9-4526-bdd2-052d5a6e6619", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171545Z:902e262e-5df9-4526-bdd2-052d5a6e6619" + "x-ms-request-id": "764eda75-9a76-44c7-9c1c-77267ff2fe5c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213918Z:764eda75-9a76-44c7-9c1c-77267ff2fe5c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fb7d989683ce3f65-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-92d1351f236ec27c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1c6f3eb26d1a9f8ab9f36a9779b12302", + "x-ms-client-request-id": "f7ff957fec96df09f780af4af9d2913f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17243,29 +17474,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:15:52 GMT", + "Date": "Thu, 20 Apr 2023 21:39:22 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e7f81bd-80da-49d5-a7df-a759c8ed3d24", + "x-ms-correlation-request-id": "026d7e78-dc87-4eea-b324-60963e6df0e1", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "3e7f81bd-80da-49d5-a7df-a759c8ed3d24", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171553Z:3e7f81bd-80da-49d5-a7df-a759c8ed3d24" + "x-ms-request-id": "026d7e78-dc87-4eea-b324-60963e6df0e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213923Z:026d7e78-dc87-4eea-b324-60963e6df0e1" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d9cec4dfac01a71e-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-c49d647f89aa200e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fcef77f5066f20686a0e063a0ba666bb", + "x-ms-client-request-id": "92631ce77df078c04c3f01ce83e4e1fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17274,29 +17505,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:16:09 GMT", + "Date": "Thu, 20 Apr 2023 21:39:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07edb4cd-3e71-49d5-b2eb-a893684027af", + "x-ms-correlation-request-id": "992ec239-fe90-4c9a-9644-ac5a78690dff", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "07edb4cd-3e71-49d5-b2eb-a893684027af", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171609Z:07edb4cd-3e71-49d5-b2eb-a893684027af" + "x-ms-request-id": "992ec239-fe90-4c9a-9644-ac5a78690dff", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213931Z:992ec239-fe90-4c9a-9644-ac5a78690dff" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-57ccdb6a2106f868-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-04a70cff6a97cd4a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "809b603ceecb0fa26dcff7a65ac7813e", + "x-ms-client-request-id": "0ab3f851480b10c4660ae62c8625e06f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17305,29 +17536,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:16:40 GMT", + "Date": "Thu, 20 Apr 2023 21:39:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8946ab84-49d0-42fe-831a-0cfe30424387", + "x-ms-correlation-request-id": "6cb79c11-18f4-4dbc-815a-e25f723c4545", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "8946ab84-49d0-42fe-831a-0cfe30424387", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171641Z:8946ab84-49d0-42fe-831a-0cfe30424387" + "x-ms-request-id": "6cb79c11-18f4-4dbc-815a-e25f723c4545", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T213947Z:6cb79c11-18f4-4dbc-815a-e25f723c4545" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d48d7fe55a09b9ad-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-a266cd41276fab8e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "50133f849de6ab57d64eb20c674f9313", + "x-ms-client-request-id": "85c84d1dc8730115d587aa57eb3a5b12", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17336,29 +17567,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:17:12 GMT", + "Date": "Thu, 20 Apr 2023 21:40:19 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c798d50-f571-45a7-be74-d46dcfeeb778", + "x-ms-correlation-request-id": "f2b3d941-ecf3-40e4-8964-cfdbd5b62984", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "4c798d50-f571-45a7-be74-d46dcfeeb778", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171713Z:4c798d50-f571-45a7-be74-d46dcfeeb778" + "x-ms-request-id": "f2b3d941-ecf3-40e4-8964-cfdbd5b62984", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214019Z:f2b3d941-ecf3-40e4-8964-cfdbd5b62984" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fccc7ac87c9deb3a-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-5c06f6eed99543c1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "195aae8da3160737d4df8fa00ec2c5a3", + "x-ms-client-request-id": "01f8b19e871f9e3458532be59693f226", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17367,29 +17598,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:17:45 GMT", + "Date": "Thu, 20 Apr 2023 21:40:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceb906bc-a611-4b57-ae09-6289c98810ee", + "x-ms-correlation-request-id": "10f4d3b6-d192-4481-8206-740aa5b11fbf", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "ceb906bc-a611-4b57-ae09-6289c98810ee", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171745Z:ceb906bc-a611-4b57-ae09-6289c98810ee" + "x-ms-request-id": "10f4d3b6-d192-4481-8206-740aa5b11fbf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214051Z:10f4d3b6-d192-4481-8206-740aa5b11fbf" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-a8a26bdf858af6ae-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-17f97e7d761b671b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cbb6c78d16939fd508f0a97c3b96a81d", + "x-ms-client-request-id": "36b0915e5c1c898ae3b135839e6d242b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17398,29 +17629,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:18:17 GMT", + "Date": "Thu, 20 Apr 2023 21:41:22 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b", + "x-ms-correlation-request-id": "1e44ffc3-31e5-44e9-ab6c-8bd046c0ca2d", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171817Z:f4ee7cf2-4c86-4c02-9a5a-a12fa37ea32b" + "x-ms-request-id": "1e44ffc3-31e5-44e9-ab6c-8bd046c0ca2d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214123Z:1e44ffc3-31e5-44e9-ab6c-8bd046c0ca2d" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f5ad778bd9a99692-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-b04c3bd06bdf03d7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ac19e43b686ce028080c7b060eb79c14", + "x-ms-client-request-id": "d48dd3aedf2d9650182a2d1f9d2f6a41", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17429,29 +17660,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:18:49 GMT", + "Date": "Thu, 20 Apr 2023 21:41:54 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a64b9c83-693d-49d0-8c73-ead2eb04570a", + "x-ms-correlation-request-id": "31640f19-f3b1-43a8-b954-0e2be4c76365", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "a64b9c83-693d-49d0-8c73-ead2eb04570a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171849Z:a64b9c83-693d-49d0-8c73-ead2eb04570a" + "x-ms-request-id": "31640f19-f3b1-43a8-b954-0e2be4c76365", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214155Z:31640f19-f3b1-43a8-b954-0e2be4c76365" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-d6c927a5734e067f-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-a3f94e750af69c21-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9f7f0f88c7997680d9bb1025f9bacb3e", + "x-ms-client-request-id": "5af88394258a42f6276f1e6d51b0ffea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17460,29 +17691,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:19:21 GMT", + "Date": "Thu, 20 Apr 2023 21:42:26 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac9a5c2a-804a-412f-a846-540dfd34eda0", + "x-ms-correlation-request-id": "95bdc969-a588-4912-90b8-035c82630467", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "ac9a5c2a-804a-412f-a846-540dfd34eda0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171921Z:ac9a5c2a-804a-412f-a846-540dfd34eda0" + "x-ms-request-id": "95bdc969-a588-4912-90b8-035c82630467", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214227Z:95bdc969-a588-4912-90b8-035c82630467" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-f1a1ba0ecdccd498-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-ae96f5b7776dca7b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2a64713719a924369fd5c3869bce9151", + "x-ms-client-request-id": "c336ff2f1d057ff9401a1df12e6bebb3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17491,29 +17722,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:19:53 GMT", + "Date": "Thu, 20 Apr 2023 21:42:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d0384ff-28c8-4682-a944-f62dee9a9248", + "x-ms-correlation-request-id": "9704f793-21b2-4d21-a1e5-8e711dd84373", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "1d0384ff-28c8-4682-a944-f62dee9a9248", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T171954Z:1d0384ff-28c8-4682-a944-f62dee9a9248" + "x-ms-request-id": "9704f793-21b2-4d21-a1e5-8e711dd84373", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214259Z:9704f793-21b2-4d21-a1e5-8e711dd84373" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-24b30a034220a8cc-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-bede37bce579f017-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2cf495530816748464a2d3b15702e74d", + "x-ms-client-request-id": "1beff446ca7589a1dc4aadbec0e34468", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17522,29 +17753,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:20:25 GMT", + "Date": "Thu, 20 Apr 2023 21:43:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a67ca024-436d-4609-8116-dcd258b91e60", + "x-ms-correlation-request-id": "ffbb1557-ab67-425e-a8bc-e435732f858c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "a67ca024-436d-4609-8116-dcd258b91e60", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172026Z:a67ca024-436d-4609-8116-dcd258b91e60" + "x-ms-request-id": "ffbb1557-ab67-425e-a8bc-e435732f858c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214332Z:ffbb1557-ab67-425e-a8bc-e435732f858c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-b9e5c3cec1bb61fa-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-8b4599e5fb7467a7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9cce3c4072526f6ad85a00c404f9db0a", + "x-ms-client-request-id": "9df0422aa7f8773b8978196f080413bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17553,29 +17784,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:20:57 GMT", + "Date": "Thu, 20 Apr 2023 21:44:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99b7c90f-4690-4cf9-ad7f-b54cf9699377", + "x-ms-correlation-request-id": "d768beb0-5f0b-4a3a-979c-1ec85b1ac4c3", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "99b7c90f-4690-4cf9-ad7f-b54cf9699377", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172058Z:99b7c90f-4690-4cf9-ad7f-b54cf9699377" + "x-ms-request-id": "d768beb0-5f0b-4a3a-979c-1ec85b1ac4c3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214404Z:d768beb0-5f0b-4a3a-979c-1ec85b1ac4c3" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-7db7bf9729be34b5-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-6cde488dbbe2fb6a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "63d2bf2a9ec62e27edf0c5064685cd9d", + "x-ms-client-request-id": "5d266b83e4c164755eade6ba703bbe5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17584,29 +17815,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:21:30 GMT", + "Date": "Thu, 20 Apr 2023 21:44:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c67bdba-8c02-47e4-b896-1f7b878dd696", + "x-ms-correlation-request-id": "d7788c2a-bfde-43bb-ac73-804a9e7309d6", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "4c67bdba-8c02-47e4-b896-1f7b878dd696", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172130Z:4c67bdba-8c02-47e4-b896-1f7b878dd696" + "x-ms-request-id": "d7788c2a-bfde-43bb-ac73-804a9e7309d6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214436Z:d7788c2a-bfde-43bb-ac73-804a9e7309d6" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fe4c2a0b3229a039-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-623feaf3a595fa05-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5e4675eef400e0ff2a8553bc08bf706b", + "x-ms-client-request-id": "ecc7b5d64e7a9fbab87891fcb03181d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17615,29 +17846,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:22:02 GMT", + "Date": "Thu, 20 Apr 2023 21:45:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82bcf547-63c9-45ad-a456-dd166031495b", + "x-ms-correlation-request-id": "9325fab5-845b-427f-a0bd-317a008ee133", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "82bcf547-63c9-45ad-a456-dd166031495b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172202Z:82bcf547-63c9-45ad-a456-dd166031495b" + "x-ms-request-id": "9325fab5-845b-427f-a0bd-317a008ee133", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214508Z:9325fab5-845b-427f-a0bd-317a008ee133" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-fb2a401767f786cc-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-e58cd92221d72d95-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9886c8c6832fa187159fae61ac642853", + "x-ms-client-request-id": "553bf137e6bc45a6cc8b3e4bc080074e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17646,29 +17877,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:22:33 GMT", + "Date": "Thu, 20 Apr 2023 21:45:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2f58c70-f43b-4037-af77-33da213069b8", + "x-ms-correlation-request-id": "bfbf1266-2cad-4aef-b765-f5b524f176d0", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "e2f58c70-f43b-4037-af77-33da213069b8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172234Z:e2f58c70-f43b-4037-af77-33da213069b8" + "x-ms-request-id": "bfbf1266-2cad-4aef-b765-f5b524f176d0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214540Z:bfbf1266-2cad-4aef-b765-f5b524f176d0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-def1c1d5ec4bde29-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-aa2879dfb1b61656-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8ed6638d7db2350abff239414a6b262d", + "x-ms-client-request-id": "5399bcb9273d3441b087a4495379b42d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17677,29 +17908,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:23:06 GMT", + "Date": "Thu, 20 Apr 2023 21:46:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4", + "x-ms-correlation-request-id": "ca54dc24-6a20-4f72-9a7e-ebd56544d856", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172306Z:4e88a30d-2d45-4e0d-b38b-c9c56a52bdf4" + "x-ms-request-id": "ca54dc24-6a20-4f72-9a7e-ebd56544d856", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214612Z:ca54dc24-6a20-4f72-9a7e-ebd56544d856" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-0d5db0616c85f177-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-3d7ae7265c400da8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7d405a8034fe6b6deea44860459d33c6", + "x-ms-client-request-id": "7e830e2c6900efa00e8220ee0f6fde38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17708,29 +17939,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:23:38 GMT", + "Date": "Thu, 20 Apr 2023 21:46:44 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a161a55f-9653-4821-b1e9-d13105912b4a", + "x-ms-correlation-request-id": "3c108bd0-b5a8-494c-9a8d-93551b30f451", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "a161a55f-9653-4821-b1e9-d13105912b4a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172338Z:a161a55f-9653-4821-b1e9-d13105912b4a" + "x-ms-request-id": "3c108bd0-b5a8-494c-9a8d-93551b30f451", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214644Z:3c108bd0-b5a8-494c-9a8d-93551b30f451" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-06a25192f4a1f2d3-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-2a3dad278e9b3d68-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a42f005ce1e949b8be51d83d4a4557aa", + "x-ms-client-request-id": "f44242712e970f9ab006a535415df153", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17739,29 +17970,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:24:10 GMT", + "Date": "Thu, 20 Apr 2023 21:47:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84534319-80fc-4326-9598-a27fc6d7f16a", + "x-ms-correlation-request-id": "2603ee7e-8908-45e6-8817-76f829cbae1a", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "84534319-80fc-4326-9598-a27fc6d7f16a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172410Z:84534319-80fc-4326-9598-a27fc6d7f16a" + "x-ms-request-id": "2603ee7e-8908-45e6-8817-76f829cbae1a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214716Z:2603ee7e-8908-45e6-8817-76f829cbae1a" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-e01048dda9bc7840-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-d78f6a7c6fbe5594-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "52e18178ab245855f56a9f0e34aaef22", + "x-ms-client-request-id": "b11f11d788fc504e1baa44ba07522541", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17770,29 +18001,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:24:42 GMT", + "Date": "Thu, 20 Apr 2023 21:47:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43f93b83-0868-4bea-95e0-37f8a46cd321", + "x-ms-correlation-request-id": "0fb617dc-39a8-4d91-bf65-e1db05ce59eb", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "43f93b83-0868-4bea-95e0-37f8a46cd321", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172443Z:43f93b83-0868-4bea-95e0-37f8a46cd321" + "x-ms-request-id": "0fb617dc-39a8-4d91-bf65-e1db05ce59eb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214748Z:0fb617dc-39a8-4d91-bf65-e1db05ce59eb" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-1c664eaa43e4a5af-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-3cb761ba6448c6be-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4ae472be823b9e44a1f6bfac5c3021a8", + "x-ms-client-request-id": "11d86ca8bf36fe957474cef9c36baeb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17801,124 +18032,124 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:14 GMT", + "Date": "Thu, 20 Apr 2023 21:48:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9751dff-e925-403d-80ec-362b9a502239", + "x-ms-correlation-request-id": "0f4b5606-df37-4320-9bd1-67858caf3983", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "d9751dff-e925-403d-80ec-362b9a502239", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172515Z:d9751dff-e925-403d-80ec-362b9a502239" + "x-ms-request-id": "0f4b5606-df37-4320-9bd1-67858caf3983", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214820Z:0f4b5606-df37-4320-9bd1-67858caf3983" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/1949d3d5-b489-4ef6-bfe3-9652000a2302?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7d4927484c357cc68a563ad500224b2-437f029721534652-00", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-69cc8266707d88ed-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c4e79e4de1bcb1a2aad7ae7e42aa1414", + "x-ms-client-request-id": "fd17cc902c50e83bf3f2d8ede9df085d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:46 GMT", + "Date": "Thu, 20 Apr 2023 21:48:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d26f805e-ffdb-4276-a8d4-de5b3a18a066", + "x-ms-correlation-request-id": "8c742a8a-5ee1-4a8c-9628-c974d8b3c187", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "d26f805e-ffdb-4276-a8d4-de5b3a18a066", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172547Z:d26f805e-ffdb-4276-a8d4-de5b3a18a066" + "x-ms-request-id": "8c742a8a-5ee1-4a8c-9628-c974d8b3c187", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214853Z:8c742a8a-5ee1-4a8c-9628-c974d8b3c187" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6298/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-3296?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/608b8e7e-59dc-468c-a7f7-c5c9b3d151b6?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-669188f521420978-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d77eb6610c60f66e3d43b02deba8fcc5", + "traceparent": "00-53cdb12acdfdab596b77d37830f51bc6-8e3014a076bb4077-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d48c64e0e084171c7c203d88b9548cb0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "21", + "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:47 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 21:49:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "580453d1-a784-4cc8-9545-0bd7cfb32ad2", + "x-ms-correlation-request-id": "19d02ad9-7ad7-4dff-8378-2a0c00868021", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "915ccf62-4f56-4617-a80a-8ded062d7d3b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172548Z:580453d1-a784-4cc8-9545-0bd7cfb32ad2" + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "19d02ad9-7ad7-4dff-8378-2a0c00868021", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214925Z:19d02ad9-7ad7-4dff-8378-2a0c00868021" }, "ResponseBody": { - "status": "Enqueued" + "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6101/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5177?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-acb02ff72889feff-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a64baae249b140472ff087783075c501", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-56f844fd19abaed1-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a2a93fb273b7bf030ef1d43e7a81494", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:47 GMT", + "Date": "Thu, 20 Apr 2023 21:49:25 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "977b5fdb-702d-4a5e-b723-d10385c1c1e8", + "x-ms-correlation-request-id": "299bb744-e89e-45be-8437-40df762daca2", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "977b5fdb-702d-4a5e-b723-d10385c1c1e8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172548Z:977b5fdb-702d-4a5e-b723-d10385c1c1e8" + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "595e9150-2691-45bf-8c31-bcc9734f60bd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214926Z:299bb744-e89e-45be-8437-40df762daca2" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-158e163352587273-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-ce4cdb7e6c4392f5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4a35e9da7ee936514fa1082d6c0a2377", + "x-ms-client-request-id": "55f12866ceb5b8217311a494c2d930d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17927,29 +18158,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:48 GMT", + "Date": "Thu, 20 Apr 2023 21:49:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae432516-5857-4995-9f57-29eb92997e9d", + "x-ms-correlation-request-id": "79f1c658-82b1-4c37-9195-d7afce16c92d", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "ae432516-5857-4995-9f57-29eb92997e9d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172549Z:ae432516-5857-4995-9f57-29eb92997e9d" + "x-ms-request-id": "79f1c658-82b1-4c37-9195-d7afce16c92d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214926Z:79f1c658-82b1-4c37-9195-d7afce16c92d" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-1e815e5bf90d631c-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-039b7f7db71fb487-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "414ab9e6565d0014af7f66d2a3edad59", + "x-ms-client-request-id": "481ca90c2c3b22d167798a3ca6c18c7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17958,29 +18189,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:49 GMT", + "Date": "Thu, 20 Apr 2023 21:49:26 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d65a155-e812-449f-9d0e-b083d97597a7", + "x-ms-correlation-request-id": "3791bc8c-5768-46f1-8b8d-3670da55ddf5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "1d65a155-e812-449f-9d0e-b083d97597a7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172550Z:1d65a155-e812-449f-9d0e-b083d97597a7" + "x-ms-request-id": "3791bc8c-5768-46f1-8b8d-3670da55ddf5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214927Z:3791bc8c-5768-46f1-8b8d-3670da55ddf5" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6ddd1aefae146219-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-36af384fb44f645e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ea899e6e118f640e59155610401ad425", + "x-ms-client-request-id": "bedd7ec1beb69dde4f60eccd3597edd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17989,29 +18220,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:51 GMT", + "Date": "Thu, 20 Apr 2023 21:49:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "606b27d6-ad48-4c78-975f-e1378710c4fd", + "x-ms-correlation-request-id": "8b945c9e-b401-4d0f-a8be-1a546849d7e2", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "606b27d6-ad48-4c78-975f-e1378710c4fd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172551Z:606b27d6-ad48-4c78-975f-e1378710c4fd" + "x-ms-request-id": "8b945c9e-b401-4d0f-a8be-1a546849d7e2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214928Z:8b945c9e-b401-4d0f-a8be-1a546849d7e2" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-0f58b093b211ae5f-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-9d3d900f158f1bbb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "77910fcc842a84a3d5349b69177f9261", + "x-ms-client-request-id": "4523adcee597396357ceee3b44e512b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18020,29 +18251,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:53 GMT", + "Date": "Thu, 20 Apr 2023 21:49:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2897a977-fb83-44b9-9792-c8dbf471f6f9", + "x-ms-correlation-request-id": "3de364da-9734-4289-be4f-383f85cbaf8e", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "2897a977-fb83-44b9-9792-c8dbf471f6f9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172553Z:2897a977-fb83-44b9-9792-c8dbf471f6f9" + "x-ms-request-id": "3de364da-9734-4289-be4f-383f85cbaf8e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214929Z:3de364da-9734-4289-be4f-383f85cbaf8e" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-433fede26d0fdbe3-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-4ea6842a7d2f0cd1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cdbeaef33980d5e7abe6e848ff03bf94", + "x-ms-client-request-id": "43d3278472fb4d1dca7ef9da4003edcf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18051,29 +18282,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:25:57 GMT", + "Date": "Thu, 20 Apr 2023 21:49:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e2700a3-b9a8-4ec3-9119-55af471d4d18", + "x-ms-correlation-request-id": "c532b38f-4a06-4e79-bef7-ecf21f109011", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "2e2700a3-b9a8-4ec3-9119-55af471d4d18", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172558Z:2e2700a3-b9a8-4ec3-9119-55af471d4d18" + "x-ms-request-id": "c532b38f-4a06-4e79-bef7-ecf21f109011", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214931Z:c532b38f-4a06-4e79-bef7-ecf21f109011" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-59aca308151b44f1-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-e95db2e29343926f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "930540ab365bea2ffa04145b76a44cd9", + "x-ms-client-request-id": "f86eb28b469edbe61ba467e7d0a3596a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18082,29 +18313,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:26:06 GMT", + "Date": "Thu, 20 Apr 2023 21:49:34 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34b02875-c817-4ef9-82da-c2fe7c09ceda", + "x-ms-correlation-request-id": "f121b434-f9cd-4a7f-b4af-e6b962d52b74", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "34b02875-c817-4ef9-82da-c2fe7c09ceda", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172606Z:34b02875-c817-4ef9-82da-c2fe7c09ceda" + "x-ms-request-id": "f121b434-f9cd-4a7f-b4af-e6b962d52b74", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214935Z:f121b434-f9cd-4a7f-b4af-e6b962d52b74" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6edc73778375d3f4-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-055c46027f7fec56-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "921cf482065b93a527bccb449c5b85d1", + "x-ms-client-request-id": "0e483a4eaac35bdb90d67a18ec88f853", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18113,29 +18344,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:26:21 GMT", + "Date": "Thu, 20 Apr 2023 21:49:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dc2a745-c42d-4d1c-b222-e8ff1311dff7", + "x-ms-correlation-request-id": "f0bc9c68-28a1-4283-8c5c-e34c39c9341c", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "4dc2a745-c42d-4d1c-b222-e8ff1311dff7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172622Z:4dc2a745-c42d-4d1c-b222-e8ff1311dff7" + "x-ms-request-id": "f0bc9c68-28a1-4283-8c5c-e34c39c9341c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214943Z:f0bc9c68-28a1-4283-8c5c-e34c39c9341c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-460ddccb302500b4-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-c828f95294629562-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d7bd0675fe79bd067fd4d37b248c5f06", + "x-ms-client-request-id": "91af1fe119763d1340f828570b357d27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18144,29 +18375,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:26:53 GMT", + "Date": "Thu, 20 Apr 2023 21:49:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28532e50-f512-4ce7-826d-570b881b3d39", + "x-ms-correlation-request-id": "e5d7bdd5-40e7-40bc-82fe-b58379c19ea5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "28532e50-f512-4ce7-826d-570b881b3d39", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172654Z:28532e50-f512-4ce7-826d-570b881b3d39" + "x-ms-request-id": "e5d7bdd5-40e7-40bc-82fe-b58379c19ea5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T214959Z:e5d7bdd5-40e7-40bc-82fe-b58379c19ea5" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-dea20aa0e7fd4b5e-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-76f728d0d197bf9a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0ac50e992ce7a5389b726b9f6aea4e9f", + "x-ms-client-request-id": "058c8f25dfbae10bd71268c8cccdee92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18175,29 +18406,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:27:26 GMT", + "Date": "Thu, 20 Apr 2023 21:50:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d73d560-2115-465f-8b2f-f1a97e90ff5b", + "x-ms-correlation-request-id": "f3a5c35c-063f-4c5f-a2bb-72d9001c7477", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "3d73d560-2115-465f-8b2f-f1a97e90ff5b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172726Z:3d73d560-2115-465f-8b2f-f1a97e90ff5b" + "x-ms-request-id": "f3a5c35c-063f-4c5f-a2bb-72d9001c7477", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215032Z:f3a5c35c-063f-4c5f-a2bb-72d9001c7477" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-227424b3c1ef3392-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-b9b27bc38fa2f661-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6fe5437f75e68360ee5e138733296e9a", + "x-ms-client-request-id": "b00613abc8f335f3270acdcb8184505b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18206,29 +18437,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:27:58 GMT", + "Date": "Thu, 20 Apr 2023 21:51:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "181f8748-10f6-4129-8f21-f14ac28f4a44", + "x-ms-correlation-request-id": "0fd980e2-e807-4ab5-8aae-f9156b7fd964", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "181f8748-10f6-4129-8f21-f14ac28f4a44", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172758Z:181f8748-10f6-4129-8f21-f14ac28f4a44" + "x-ms-request-id": "0fd980e2-e807-4ab5-8aae-f9156b7fd964", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215104Z:0fd980e2-e807-4ab5-8aae-f9156b7fd964" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-7e0382d792d6f937-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-dab859aba41f3c9c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8dabc55c7a9648eacd183b0792665395", + "x-ms-client-request-id": "5df35259f2fc029813cdba64b14b7173", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18237,29 +18468,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:28:30 GMT", + "Date": "Thu, 20 Apr 2023 21:51:36 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce", + "x-ms-correlation-request-id": "10b819d3-f2e2-4c17-b058-2238f578e0c8", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172830Z:aa8dadb2-5cc7-4ba8-b3f9-24e2438c4fce" + "x-ms-request-id": "10b819d3-f2e2-4c17-b058-2238f578e0c8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215136Z:10b819d3-f2e2-4c17-b058-2238f578e0c8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-ec11437e070ebefa-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-f45bab098f21d49e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e1fc3485efa7231fae411c8819b17171", + "x-ms-client-request-id": "f7ab9609cc2e5c349c57deb012406052", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18268,29 +18499,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:29:01 GMT", + "Date": "Thu, 20 Apr 2023 21:52:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "170f1e7a-7891-4c0b-9dd1-69c0c538428a", + "x-ms-correlation-request-id": "cbf1344d-7222-4bd4-8a48-864f97022893", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "170f1e7a-7891-4c0b-9dd1-69c0c538428a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172902Z:170f1e7a-7891-4c0b-9dd1-69c0c538428a" + "x-ms-request-id": "cbf1344d-7222-4bd4-8a48-864f97022893", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215208Z:cbf1344d-7222-4bd4-8a48-864f97022893" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-6dbd7f1ceea599d4-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-5bd20efdb6dbf900-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a442d103c03e0409599da2cd3958f087", + "x-ms-client-request-id": "796e0cc191dab8957a049c250e8e83db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18299,29 +18530,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:29:34 GMT", + "Date": "Thu, 20 Apr 2023 21:52:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "957011c8-3c43-4240-be53-8e3b30ecc9ff", + "x-ms-correlation-request-id": "7df86809-63e3-4ad5-90b0-c2a110ac0580", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "957011c8-3c43-4240-be53-8e3b30ecc9ff", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T172934Z:957011c8-3c43-4240-be53-8e3b30ecc9ff" + "x-ms-request-id": "7df86809-63e3-4ad5-90b0-c2a110ac0580", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215240Z:7df86809-63e3-4ad5-90b0-c2a110ac0580" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-9937bc096d4c396b-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-59c54b62b764e071-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ff017d0b8d2d6df3a588df545e622e1c", + "x-ms-client-request-id": "ebc1599958d88c2c1d96c0a514e8efd3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18330,29 +18561,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:30:06 GMT", + "Date": "Thu, 20 Apr 2023 21:53:12 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ace47bc-fba2-431c-aae3-c13e372a8cb9", + "x-ms-correlation-request-id": "69886654-1d94-48da-adcd-891d554b25f9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "2ace47bc-fba2-431c-aae3-c13e372a8cb9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173006Z:2ace47bc-fba2-431c-aae3-c13e372a8cb9" + "x-ms-request-id": "69886654-1d94-48da-adcd-891d554b25f9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215312Z:69886654-1d94-48da-adcd-891d554b25f9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-4bda094c8af5cf9a-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-97753dab29d89c93-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c104caa7ae24c5562af7870a4d52e955", + "x-ms-client-request-id": "a4a2676df7dc779800f37d2a2f0f4e0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18361,29 +18592,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:30:38 GMT", + "Date": "Thu, 20 Apr 2023 21:53:44 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34dbfac7-93a3-4313-bc2e-38b83a2f3b2c", + "x-ms-correlation-request-id": "71426013-566b-4385-adbb-02f7ea1b1bb6", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "34dbfac7-93a3-4313-bc2e-38b83a2f3b2c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173039Z:34dbfac7-93a3-4313-bc2e-38b83a2f3b2c" + "x-ms-request-id": "71426013-566b-4385-adbb-02f7ea1b1bb6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215344Z:71426013-566b-4385-adbb-02f7ea1b1bb6" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-f3d86d749647b2ed-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-c87d183be7bdcc4f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9c7c955172af7543ddd5ffb5e0b4a6f7", + "x-ms-client-request-id": "b81602d3747e687adfe25b44d0f0a491", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18392,29 +18623,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:31:11 GMT", + "Date": "Thu, 20 Apr 2023 21:54:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2f6b898-af77-4e94-83e6-208332cf08f6", + "x-ms-correlation-request-id": "2c80bb74-b906-40d8-9fa5-690d191e9b40", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "e2f6b898-af77-4e94-83e6-208332cf08f6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173111Z:e2f6b898-af77-4e94-83e6-208332cf08f6" + "x-ms-request-id": "2c80bb74-b906-40d8-9fa5-690d191e9b40", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215416Z:2c80bb74-b906-40d8-9fa5-690d191e9b40" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-575e1c2822d3ff7b-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-fa21d0a140cb4034-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6f26856e2e545d62263cd43606e91f53", + "x-ms-client-request-id": "a7b7c914dfeba2ffc149ebe5db025d0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18423,29 +18654,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:31:42 GMT", + "Date": "Thu, 20 Apr 2023 21:54:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "816dd2e7-8d35-41a0-b22c-2d60e42c871b", + "x-ms-correlation-request-id": "70292060-c37e-4644-b323-667d0257d4c7", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "816dd2e7-8d35-41a0-b22c-2d60e42c871b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173143Z:816dd2e7-8d35-41a0-b22c-2d60e42c871b" + "x-ms-request-id": "70292060-c37e-4644-b323-667d0257d4c7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215448Z:70292060-c37e-4644-b323-667d0257d4c7" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-04d309d2bdcfe17a-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-d98c6ab44eb4cc2c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c803899f92e5356c878ee44faea0e476", + "x-ms-client-request-id": "11d1b34837d2f955ed3ac4fa9b54a70f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18454,29 +18685,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:32:14 GMT", + "Date": "Thu, 20 Apr 2023 21:55:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a40bc77a-a7bb-433d-b43b-59913349ddb4", + "x-ms-correlation-request-id": "20d73931-991a-4290-b3c1-5c9ec98024a1", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "a40bc77a-a7bb-433d-b43b-59913349ddb4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173215Z:a40bc77a-a7bb-433d-b43b-59913349ddb4" + "x-ms-request-id": "20d73931-991a-4290-b3c1-5c9ec98024a1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215520Z:20d73931-991a-4290-b3c1-5c9ec98024a1" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-d982c2650e8a0a94-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-ba6de1362dae6623-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c79c90507a2b2201321f75739d0d6ff4", + "x-ms-client-request-id": "6616eb4fa657f4210374f63489948cdd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18485,29 +18716,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:32:46 GMT", + "Date": "Thu, 20 Apr 2023 21:55:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25397b96-e4f0-4e99-ae8c-cf683846fec3", + "x-ms-correlation-request-id": "53bb28eb-0b5b-4169-9f56-0236c4ed50b4", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "25397b96-e4f0-4e99-ae8c-cf683846fec3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173247Z:25397b96-e4f0-4e99-ae8c-cf683846fec3" + "x-ms-request-id": "53bb28eb-0b5b-4169-9f56-0236c4ed50b4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215553Z:53bb28eb-0b5b-4169-9f56-0236c4ed50b4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-cca732bc5325dbec-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-c3447e498067ccd3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5616acb5ddb1db1119f1e7c54a13ae85", + "x-ms-client-request-id": "1dfb4d85921edcbf73beb9b11a04066d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18516,29 +18747,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:33:19 GMT", + "Date": "Thu, 20 Apr 2023 21:56:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebdf053c-e43e-4140-bdac-651278aecd8d", + "x-ms-correlation-request-id": "0bd7a6c2-cdff-4944-8d03-d2d7151fd9b5", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "ebdf053c-e43e-4140-bdac-651278aecd8d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173319Z:ebdf053c-e43e-4140-bdac-651278aecd8d" + "x-ms-request-id": "0bd7a6c2-cdff-4944-8d03-d2d7151fd9b5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215625Z:0bd7a6c2-cdff-4944-8d03-d2d7151fd9b5" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-e9c9a10c2d267d28-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-799c883870f882c1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "75e55e57574d242788e096c51df89779", + "x-ms-client-request-id": "f095dba2f6eba1b791dd0d5d40217058", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18547,29 +18778,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:33:51 GMT", + "Date": "Thu, 20 Apr 2023 21:56:56 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41da63e8-5553-49fe-aee2-672a1949bc90", + "x-ms-correlation-request-id": "5b73a56e-b025-441f-bbfb-c3235374aeaf", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "41da63e8-5553-49fe-aee2-672a1949bc90", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173351Z:41da63e8-5553-49fe-aee2-672a1949bc90" + "x-ms-request-id": "5b73a56e-b025-441f-bbfb-c3235374aeaf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215657Z:5b73a56e-b025-441f-bbfb-c3235374aeaf" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-5bc9b1adeec25f97-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-444227c8e8cd0149-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0299f01f8d8a72c47ec0ae3a923cd71e", + "x-ms-client-request-id": "4e74e6ad8a58bcf12b39f299ed70d9fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18578,29 +18809,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:34:23 GMT", + "Date": "Thu, 20 Apr 2023 21:57:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0", + "x-ms-correlation-request-id": "5de445d8-4501-435a-aa43-c6a2c83a8601", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173423Z:7b02c72c-29c5-47c6-bdda-ab4af9f0a5e0" + "x-ms-request-id": "5de445d8-4501-435a-aa43-c6a2c83a8601", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215729Z:5de445d8-4501-435a-aa43-c6a2c83a8601" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-bfe292b9d7764819-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-d99a99bf4e707526-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3f1cef71fa275ea784f2ced1474bbd20", + "x-ms-client-request-id": "ad91896e9cff8ef2955a8b4085619c52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18609,29 +18840,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:34:55 GMT", + "Date": "Thu, 20 Apr 2023 21:58:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a688c850-6818-405d-a743-5ad207e57061", + "x-ms-correlation-request-id": "a2594b4e-93de-4ee7-9829-4f45746e8433", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "a688c850-6818-405d-a743-5ad207e57061", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173455Z:a688c850-6818-405d-a743-5ad207e57061" + "x-ms-request-id": "a2594b4e-93de-4ee7-9829-4f45746e8433", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215801Z:a2594b4e-93de-4ee7-9829-4f45746e8433" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-133eba839ed1db3d-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-d4c55872be7f0e23-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5aa66e5aab79c9fb9a73f68ca9ed924b", + "x-ms-client-request-id": "3304614db78f1815e9d9c5b2041db421", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18640,29 +18871,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:35:27 GMT", + "Date": "Thu, 20 Apr 2023 21:58:32 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a7f9df9-1894-4a77-87c9-0bc493921f40", + "x-ms-correlation-request-id": "0af50be7-06cb-49df-b43f-ac978bfec73f", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "5a7f9df9-1894-4a77-87c9-0bc493921f40", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173528Z:5a7f9df9-1894-4a77-87c9-0bc493921f40" + "x-ms-request-id": "0af50be7-06cb-49df-b43f-ac978bfec73f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215833Z:0af50be7-06cb-49df-b43f-ac978bfec73f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-df5e32805abd4761-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-86f4fdf3fc3462a6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2e54770857dc2552483b7e97bff32b32", + "x-ms-client-request-id": "b7ef0e04c28f1159f4e6b8fefeb037c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18671,29 +18902,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:35:59 GMT", + "Date": "Thu, 20 Apr 2023 21:59:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a", + "x-ms-correlation-request-id": "c91f0543-8a10-493e-88c5-8f1fe885e81b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173600Z:0e29cbfc-5c88-4ec7-b125-0dc2df9b3c1a" + "x-ms-request-id": "c91f0543-8a10-493e-88c5-8f1fe885e81b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215905Z:c91f0543-8a10-493e-88c5-8f1fe885e81b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/915ccf62-4f56-4617-a80a-8ded062d7d3b?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/595e9150-2691-45bf-8c31-bcc9734f60bd?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-749c2a4b6c6237b46cafd51f95d2dc16-586ff9a47177599a-00", + "traceparent": "00-4bfef3787de08d793e8e1b811131c39c-c6e94d2a7f8ef3f7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "24e08d027d96c6a4f352a5b4031ab596", + "x-ms-client-request-id": "8b4c9f9da56cb66f7478c325d63f8a78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18702,16 +18933,16 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 17:36:32 GMT", + "Date": "Thu, 20 Apr 2023 21:59:37 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3c93558-686b-44d8-8487-82f88b472e79", + "x-ms-correlation-request-id": "71197cfe-5d75-4452-8b4a-7fb0cb312bb3", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "a3c93558-686b-44d8-8487-82f88b472e79", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T173632Z:a3c93558-686b-44d8-8487-82f88b472e79" + "x-ms-request-id": "71197cfe-5d75-4452-8b4a-7fb0cb312bb3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T215937Z:71197cfe-5d75-4452-8b4a-7fb0cb312bb3" }, "ResponseBody": { "status": "Succeeded" @@ -18720,7 +18951,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1139936748", + "RandomSeed": "1369667074", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json index 532100a44e46..f67652a41ad7 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-1407?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-8108?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-be03c80133313c967986412fb715b923-60fcdb8a58d153b0-00", + "traceparent": "00-5abbd42387363b7da662cf8f7d39c85a-2d811b33041dc0f6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7d1dd9ddef7042f52c94287cd59b4b97", + "x-ms-client-request-id": "1e171352f057280c2860f7e60bcab128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:02:12 GMT", + "Date": "Thu, 20 Apr 2023 19:59:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "726ea1e6-c99e-487a-b5ee-3f5d3fe37b30", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "726ea1e6-c99e-487a-b5ee-3f5d3fe37b30", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000213Z:726ea1e6-c99e-487a-b5ee-3f5d3fe37b30" + "x-ms-correlation-request-id": "6def1f3e-a382-44dd-a13e-dd6558a9016a", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "6def1f3e-a382-44dd-a13e-dd6558a9016a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195944Z:6def1f3e-a382-44dd-a13e-dd6558a9016a" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407", - "name": "dbaccount-1407", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108", + "name": "dbaccount-8108", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-c1ddbde7387bbe7b-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-da4561e9f6d1904b-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ed5ac4bfb839adc9ea94c0e4653e3194", + "x-ms-client-request-id": "41b461fcac65d525d5de91dd165fd56f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2404", + "Content-Length": "2398", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:21 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605/operationResults/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 19:59:50 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59/operationResults/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fce4c1f6-3891-49ad-aff0-283827643b6e", + "x-ms-correlation-request-id": "b31d398e-a901-4c13-9796-10c2557f72ea", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "7b1a106a-fa3a-4aef-85ee-d02f784601bd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000222Z:fce4c1f6-3891-49ad-aff0-283827643b6e" + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "8f9da6fc-b466-4ec1-849d-49401e1c1491", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195951Z:b31d398e-a901-4c13-9796-10c2557f72ea" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605", - "name": "r-database-account-605", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59", + "name": "r-database-account-59", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T00:02:20.0705365Z" + "createdAt": "2023-04-20T19:59:49.2745973Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "instanceId": "cc0d3c92-ea53-4cde-851b-a323299d9838", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T00:02:20.0705365Z" + "generationTime": "2023-04-20T19:59:49.2745973Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T00:02:20.0705365Z" + "generationTime": "2023-04-20T19:59:49.2745973Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:02:20.0705365Z" + "generationTime": "2023-04-20T19:59:49.2745973Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:02:20.0705365Z" + "generationTime": "2023-04-20T19:59:49.2745973Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-288969ea4841de5a-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-7dda23f4604f2417-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6b1f6c5d5f4f21a353d0855a355ec755", + "x-ms-client-request-id": "d9916a8cfb2166edf24982127a4b1100", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:21 GMT", + "Date": "Thu, 20 Apr 2023 19:59:50 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dea8de80-6139-4617-9f2a-fb788cdfe0b6", + "x-ms-correlation-request-id": "b88baa8a-ed4a-467d-90e2-e859c94dbda9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "dea8de80-6139-4617-9f2a-fb788cdfe0b6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000222Z:dea8de80-6139-4617-9f2a-fb788cdfe0b6" + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "b88baa8a-ed4a-467d-90e2-e859c94dbda9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195951Z:b88baa8a-ed4a-467d-90e2-e859c94dbda9" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-796f851da7a60920-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-8e4d56621e086843-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ef1de8f775f51173430cf8579ab43db5", + "x-ms-client-request-id": "3ec676229d30f0907d399b18d777ec42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:23 GMT", + "Date": "Thu, 20 Apr 2023 19:59:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5910d81-3759-4829-b517-e8dcea505f89", + "x-ms-correlation-request-id": "41c5c855-1034-47f1-9df2-7cc199643273", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "b5910d81-3759-4829-b517-e8dcea505f89", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000223Z:b5910d81-3759-4829-b517-e8dcea505f89" + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "41c5c855-1034-47f1-9df2-7cc199643273", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195952Z:41c5c855-1034-47f1-9df2-7cc199643273" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-ba405191811860c4-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-fc7f8882c3f702db-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f987bfebc51f58440835cea027251897", + "x-ms-client-request-id": "ab50b1e6fbce484e9f1a99c789d1ff5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:24 GMT", + "Date": "Thu, 20 Apr 2023 19:59:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e7c2c35-d4ce-427d-af57-5166f90ae45d", + "x-ms-correlation-request-id": "0394d791-68ba-47d7-93b9-6f2d7ddac58d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "9e7c2c35-d4ce-427d-af57-5166f90ae45d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000224Z:9e7c2c35-d4ce-427d-af57-5166f90ae45d" + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "0394d791-68ba-47d7-93b9-6f2d7ddac58d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195953Z:0394d791-68ba-47d7-93b9-6f2d7ddac58d" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-a6457f2554d647af-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-ec3a36bece44a13a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "871dc71bb917e70bf80d2742674c869f", + "x-ms-client-request-id": "728bd53ab8cbeeaedaa05be760d48f7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:25 GMT", + "Date": "Thu, 20 Apr 2023 19:59:53 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95b53e5f-ce6f-459a-9425-df27f285797d", + "x-ms-correlation-request-id": "e2111dd5-4a02-4b23-b740-a9946e4eb417", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "95b53e5f-ce6f-459a-9425-df27f285797d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000225Z:95b53e5f-ce6f-459a-9425-df27f285797d" + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "e2111dd5-4a02-4b23-b740-a9946e4eb417", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195954Z:e2111dd5-4a02-4b23-b740-a9946e4eb417" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-d6b1ac28e2e8b431-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-9f2bb454834c8a12-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "756fcf92ced63136a3c5e6bfa6d3e91e", + "x-ms-client-request-id": "c92b3f5d65fa2631277e9f1504c966ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:27 GMT", + "Date": "Thu, 20 Apr 2023 19:59:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5997f9b7-7ba7-4445-9dad-41fcebc30c1a", + "x-ms-correlation-request-id": "6d52c742-3d1f-4d86-8280-bcd3f1315919", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5997f9b7-7ba7-4445-9dad-41fcebc30c1a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000227Z:5997f9b7-7ba7-4445-9dad-41fcebc30c1a" + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "6d52c742-3d1f-4d86-8280-bcd3f1315919", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195956Z:6d52c742-3d1f-4d86-8280-bcd3f1315919" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-fa5064a8c070ee24-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-684703d68c0f1cd7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d33c61f4b696319eb49f00119d01f0bc", + "x-ms-client-request-id": "01dd403a7aeb2d770361d12ea067e7ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:31 GMT", + "Date": "Thu, 20 Apr 2023 20:00:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27a3118d-5d58-4e25-9458-3960fc9f6810", + "x-ms-correlation-request-id": "fa5b160c-0693-46f5-8ce5-97565579835f", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "27a3118d-5d58-4e25-9458-3960fc9f6810", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000231Z:27a3118d-5d58-4e25-9458-3960fc9f6810" + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "fa5b160c-0693-46f5-8ce5-97565579835f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200000Z:fa5b160c-0693-46f5-8ce5-97565579835f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-e37530fc7dcae4f4-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-403806110ef7165b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "580e2faea2b64cc091ebe351d34b4124", + "x-ms-client-request-id": "4a6a1e8b36a6d460a3644a4d1999ea10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:39 GMT", + "Date": "Thu, 20 Apr 2023 20:00:08 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ce30ffa-dd9f-4ccd-9941-2e0a39e9cc24", + "x-ms-correlation-request-id": "23601346-9d71-4390-9f13-ee9b4a7cc0e4", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8ce30ffa-dd9f-4ccd-9941-2e0a39e9cc24", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000240Z:8ce30ffa-dd9f-4ccd-9941-2e0a39e9cc24" + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "23601346-9d71-4390-9f13-ee9b4a7cc0e4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200008Z:23601346-9d71-4390-9f13-ee9b4a7cc0e4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-fce1c341893987ce-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-05cb0c40368d02ff-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "064e0923b310db09303ec137cd2493a1", + "x-ms-client-request-id": "20adaf3a8df6e38fc8fdc598930385c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:02:55 GMT", + "Date": "Thu, 20 Apr 2023 20:00:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "693ac618-1f18-435d-9921-b2caa256e779", + "x-ms-correlation-request-id": "1ee18278-e16c-4bbe-8320-99f9a019f5c9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "693ac618-1f18-435d-9921-b2caa256e779", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000256Z:693ac618-1f18-435d-9921-b2caa256e779" + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "1ee18278-e16c-4bbe-8320-99f9a019f5c9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200024Z:1ee18278-e16c-4bbe-8320-99f9a019f5c9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-368dd2a7ddef891a-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-976e36f37d94763a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "77112ad491c55267a1ef41aad34c5d69", + "x-ms-client-request-id": "e68ad5961b5e0305df085e862f291469", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:03:27 GMT", + "Date": "Thu, 20 Apr 2023 20:00:56 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "896fbd01-d3b6-4b3d-bc58-31cbaffd0204", + "x-ms-correlation-request-id": "7383faf0-9ae9-4a8f-bca6-3d2f7cd57823", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "896fbd01-d3b6-4b3d-bc58-31cbaffd0204", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000328Z:896fbd01-d3b6-4b3d-bc58-31cbaffd0204" + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "7383faf0-9ae9-4a8f-bca6-3d2f7cd57823", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200057Z:7383faf0-9ae9-4a8f-bca6-3d2f7cd57823" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-3fa176d19cef7389-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-5b3307e4351a06f0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "94eedc5deab3faac26322777e1897f6c", + "x-ms-client-request-id": "f1f3c177c7bafdd38e8782a870c8409f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:04:00 GMT", + "Date": "Thu, 20 Apr 2023 20:01:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "972ce34e-2ce9-4fc7-a2a1-2c3beaae7198", + "x-ms-correlation-request-id": "fe8844cd-fc40-4fc4-9983-88e99372430e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "972ce34e-2ce9-4fc7-a2a1-2c3beaae7198", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000400Z:972ce34e-2ce9-4fc7-a2a1-2c3beaae7198" + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "fe8844cd-fc40-4fc4-9983-88e99372430e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200129Z:fe8844cd-fc40-4fc4-9983-88e99372430e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-a51ed042072edbe4-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-858cdae32c3267de-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a97d4257ca39925fa1fb6520715e08e4", + "x-ms-client-request-id": "44b68ade040e1eb1a9a941ed2f08b39e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,29 +539,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:04:32 GMT", + "Date": "Thu, 20 Apr 2023 20:02:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8262bdb8-fe43-499f-9aea-e405aa267a6c", + "x-ms-correlation-request-id": "c77a790d-1d6f-455e-8de5-1d681fe7a912", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "8262bdb8-fe43-499f-9aea-e405aa267a6c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000432Z:8262bdb8-fe43-499f-9aea-e405aa267a6c" + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "c77a790d-1d6f-455e-8de5-1d681fe7a912", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200201Z:c77a790d-1d6f-455e-8de5-1d681fe7a912" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b1a106a-fa3a-4aef-85ee-d02f784601bd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-dc8f59fa44428f26-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-763565e3c12a82f7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f1d957e0ff36eaed7e17509269f07117", + "x-ms-client-request-id": "d2205ce8940fcf05018d57d7995c9216", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,62 +570,62 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:03 GMT", + "Date": "Thu, 20 Apr 2023 20:02:32 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e176c521-c078-4c85-addd-5104b53a99fc", + "x-ms-correlation-request-id": "050275f5-64f4-4198-9d05-02caee6ed762", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "e176c521-c078-4c85-addd-5104b53a99fc", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000504Z:e176c521-c078-4c85-addd-5104b53a99fc" + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "050275f5-64f4-4198-9d05-02caee6ed762", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:050275f5-64f4-4198-9d05-02caee6ed762" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e940d05e777c7024347fcb5f094674fc-dcaf6973eb5faffe-00", + "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-c5d48fde57acda6d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9152d56fb4cf932f7c5bf2b7858b88c7", + "x-ms-client-request-id": "a4a8bec7d073725b0fd5481185e5cd86", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "2822", + "Content-Length": "2816", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:04 GMT", + "Date": "Thu, 20 Apr 2023 20:02:32 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f55c3fcc-f664-4bfc-ab19-f33db0a64808", + "x-ms-correlation-request-id": "bb724341-1648-49d1-bf53-b1c9fcda1c6b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "f55c3fcc-f664-4bfc-ab19-f33db0a64808", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000504Z:f55c3fcc-f664-4bfc-ab19-f33db0a64808" + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "bb724341-1648-49d1-bf53-b1c9fcda1c6b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:bb724341-1648-49d1-bf53-b1c9fcda1c6b" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605", - "name": "r-database-account-605", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59", + "name": "r-database-account-59", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T00:04:32.879271Z" + "createdAt": "2023-04-20T20:02:02.9271125Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-605.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-605.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-59.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-59.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +639,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "instanceId": "cc0d3c92-ea53-4cde-851b-a323299d9838", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +657,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-605-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +667,9 @@ ], "readLocations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-605-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +677,9 @@ ], "locations": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-605-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +687,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-605-westus", + "id": "r-database-account-59-westus", "locationName": "West US", "failoverPriority": 0 } @@ -711,16 +711,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T00:04:32.879271Z" + "generationTime": "2023-04-20T20:02:02.9271125Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T00:04:32.879271Z" + "generationTime": "2023-04-20T20:02:02.9271125Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:04:32.879271Z" + "generationTime": "2023-04-20T20:02:02.9271125Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:04:32.879271Z" + "generationTime": "2023-04-20T20:02:02.9271125Z" } } }, @@ -735,9 +735,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e0533cd62ccd5f52c0b574c746847a20-b4759917f97132d5-00", + "traceparent": "00-7a199b8c125fe409ed1718524ceb539a-bcac39c6530893b7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8996432a8eaf583554922b2279cd28b1", + "x-ms-client-request-id": "14bfe3d36ea74a9085e74280adda844c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +746,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:05:04 GMT", + "Date": "Thu, 20 Apr 2023 20:02:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96310081-4913-4f3f-9eca-b6619a9c975c", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "96310081-4913-4f3f-9eca-b6619a9c975c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000505Z:96310081-4913-4f3f-9eca-b6619a9c975c" + "x-ms-correlation-request-id": "704f0742-72a5-4a90-b0e7-ff094f763dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "704f0742-72a5-4a90-b0e7-ff094f763dbb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:704f0742-72a5-4a90-b0e7-ff094f763dbb" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -781,23 +781,23 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-322cf5eec86a341bfd8ca3cda74016c1-43651921f9825b80-00", + "traceparent": "00-604530767782544d62b82206e9148688-e378cc1c7cd7becb-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9cb14d8a760b2c14284674da0c3565f2", + "x-ms-client-request-id": "70252a160f60182b00aec3394bf4491b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "465927", + "Content-Length": "480391", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:05:09 GMT", + "Date": "Thu, 20 Apr 2023 20:02:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1175b8b8-79db-4628-a512-3c07e6edc61e", + "x-ms-correlation-request-id": "70ef58b6-9dd7-40a7-bdfb-1443c353a881", "x-ms-original-request-ids": [ "", "", @@ -838,9 +838,9 @@ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "1175b8b8-79db-4628-a512-3c07e6edc61e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000510Z:1175b8b8-79db-4628-a512-3c07e6edc61e" + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "70ef58b6-9dd7-40a7-bdfb-1443c353a881", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200238Z:70ef58b6-9dd7-40a7-bdfb-1443c353a881" }, "ResponseBody": { "value": [ @@ -853,7 +853,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -872,7 +872,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -891,7 +891,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -910,7 +910,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -929,7 +929,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -948,7 +948,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -967,7 +967,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -986,7 +986,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1005,7 +1005,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1024,7 +1024,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1043,7 +1043,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1062,7 +1062,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1081,7 +1081,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1105,7 +1105,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1153,6 +1153,25 @@ ] } }, + { + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "properties": { + "accountName": "r-database-account-8195", + "apiType": "Sql", + "creationTime": "2023-04-20T19:59:26Z", + "oldestRestorableTime": "2023-04-20T19:59:26Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z" + } + ] + } + }, { "name": "2217666b-a543-4788-adf9-f8059e864343", "location": "West Central US", @@ -1205,7 +1224,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1232,7 +1251,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1307,7 +1326,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1334,7 +1353,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1355,7 +1374,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1445,7 +1464,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1466,7 +1485,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1487,7 +1506,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1508,7 +1527,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1529,7 +1548,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1556,7 +1575,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1577,7 +1596,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1598,7 +1617,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1619,7 +1638,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1646,7 +1665,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1667,7 +1686,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1715,7 +1734,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1736,7 +1755,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1757,7 +1776,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1778,7 +1797,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1799,7 +1818,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1820,7 +1839,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1841,7 +1860,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1862,7 +1881,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1883,7 +1902,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1904,7 +1923,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1925,7 +1944,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1946,7 +1965,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1967,7 +1986,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1988,7 +2007,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2009,7 +2028,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2030,7 +2049,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2051,7 +2070,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2072,7 +2091,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2093,7 +2112,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2114,7 +2133,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2135,7 +2154,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2156,7 +2175,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2177,7 +2196,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2198,7 +2217,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2219,7 +2238,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2240,7 +2259,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2261,7 +2280,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2282,7 +2301,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2303,7 +2322,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2324,7 +2343,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2345,7 +2364,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2366,7 +2385,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2387,7 +2406,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2408,7 +2427,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2429,7 +2448,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2450,7 +2469,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2471,7 +2490,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2492,7 +2511,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2513,7 +2532,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2534,7 +2553,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2555,7 +2574,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2576,7 +2595,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2597,7 +2616,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2618,7 +2637,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2639,7 +2658,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2660,7 +2679,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2681,7 +2700,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2702,7 +2721,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2723,7 +2742,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2734,6 +2753,174 @@ ] } }, + { + "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "properties": { + "accountName": "r-database-account-5849", + "apiType": "Sql", + "creationTime": "2023-04-20T00:32:15Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", + "creationTime": "2023-04-20T00:32:16Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "e7a884a0-d941-44cf-a344-2dd1d8c91284", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7a884a0-d941-44cf-a344-2dd1d8c91284", + "properties": { + "accountName": "restoredaccount-6463", + "apiType": "Sql", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e242568-ac8e-4a84-8fae-a1dcd16744f4", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z" + } + ] + } + }, + { + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "properties": { + "accountName": "r-database-account-1146", + "apiType": "Sql", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" + } + ] + } + }, + { + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "properties": { + "accountName": "restoredaccount-2866", + "apiType": "Sql", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" + } + ] + } + }, + { + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "properties": { + "accountName": "r-database-account-2733", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" + } + ] + } + }, + { + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "properties": { + "accountName": "restoredaccount-3296", + "apiType": "Sql", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" + } + ] + } + }, + { + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "properties": { + "accountName": "r-database-account-1488", + "apiType": "Sql", + "creationTime": "2023-04-20T17:39:33Z", + "deletionTime": "2023-04-20T18:58:46Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z", + "deletionTime": "2023-04-20T18:58:46Z" + } + ] + } + }, + { + "name": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7eacbb40-8bdb-406d-8575-558cd9b354f9", + "properties": { + "accountName": "restoredaccount-2310", + "apiType": "Sql", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f9737a8e-afaf-4854-8c7b-f329e07f46f9", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z" + } + ] + } + }, { "name": "d88e6a3c-687d-4990-a516-da739070bf81", "location": "North Central US", @@ -2743,7 +2930,7 @@ "accountName": "kal-continuous7", "apiType": "Sql", "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2762,7 +2949,7 @@ "accountName": "kal-continuous7-restored1", "apiType": "Sql", "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2781,7 +2968,7 @@ "accountName": "kal-continuous7-demorestore", "apiType": "Sql", "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2800,7 +2987,7 @@ "accountName": "test-billing-continuous30", "apiType": "Sql", "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2829,7 +3016,7 @@ "accountName": "new-cosmsosdb-account", "apiType": "Sql", "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2849,7 +3036,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:22:22Z", "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2875,7 +3062,7 @@ "accountName": "vinh-periodic", "apiType": "Sql", "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2894,7 +3081,7 @@ "accountName": "databaseaccount9284", "apiType": "Sql", "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2913,7 +3100,7 @@ "accountName": "databaseaccount6234", "apiType": "Sql", "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2932,7 +3119,7 @@ "accountName": "databaseaccount8251", "apiType": "Sql", "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2951,7 +3138,7 @@ "accountName": "sql-portal-test", "apiType": "Sql", "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2970,7 +3157,7 @@ "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "Central US", @@ -2994,7 +3181,7 @@ "accountName": "databaseaccount2058", "apiType": "MongoDB", "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3013,7 +3200,7 @@ "accountName": "vinh-demo-periodic", "apiType": "Sql", "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3032,7 +3219,7 @@ "accountName": "vinh-demo-continous30", "apiType": "Sql", "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3051,7 +3238,7 @@ "accountName": "vinh-demo-continous7", "apiType": "Sql", "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3070,7 +3257,7 @@ "accountName": "vinh-demo-periodic2", "apiType": "Sql", "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3089,7 +3276,7 @@ "accountName": "vinh-demo-continous7-2", "apiType": "Sql", "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3109,7 +3296,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:56:09Z", "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3130,7 +3317,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:36:38Z", "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3151,7 +3338,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:41:14Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3172,7 +3359,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:22:17Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3193,7 +3380,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T13:41:40Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3214,7 +3401,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:01:14Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3235,7 +3422,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T14:50:51Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3256,7 +3443,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:09:14Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3296,7 +3483,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:18Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3317,7 +3504,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T15:42:44Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3338,7 +3525,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:04:54Z", "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3359,7 +3546,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:45:16Z", "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3380,7 +3567,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:01:08Z", "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3401,7 +3588,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:31Z", "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3572,7 +3759,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:46:48Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3593,7 +3780,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:25:06Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3614,7 +3801,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T16:05:21Z", "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3635,7 +3822,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T15:43:38Z", "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3740,7 +3927,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:52:17Z", "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3761,7 +3948,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:33:20Z", "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3782,7 +3969,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T19:26:23Z", "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3803,7 +3990,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:12:03Z", "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3824,7 +4011,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:25:32Z", "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3845,7 +4032,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:36:05Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3866,7 +4053,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:54:57Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3887,7 +4074,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:56:14Z", "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3908,7 +4095,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T22:04:54Z", "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3929,7 +4116,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:25:42Z", "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4013,7 +4200,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:26:49Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4034,7 +4221,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:07:29Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4055,7 +4242,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:32:21Z", "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4076,7 +4263,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:39:15Z", "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4097,7 +4284,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:57:50Z", "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4118,7 +4305,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T16:51:53Z", "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4139,7 +4326,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-14T16:59:34Z", "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4160,7 +4347,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T17:07:39Z", "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4181,7 +4368,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T17:16:06Z", "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4265,7 +4452,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:30:44Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4286,7 +4473,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:08:00Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4307,7 +4494,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T18:36:04Z", "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4327,7 +4514,7 @@ "accountName": "aholdtest", "apiType": "MongoDB", "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Europe", @@ -4346,7 +4533,7 @@ "accountName": "targetacct112", "apiType": "Sql", "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4365,7 +4552,7 @@ "accountName": "pitrmongotest", "apiType": "MongoDB", "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4384,7 +4571,7 @@ "accountName": "pitrmongowithsnapshots", "apiType": "MongoDB", "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4403,7 +4590,7 @@ "accountName": "test0319-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4427,7 +4614,7 @@ "accountName": "pitracctdemo2", "apiType": "Sql", "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4446,7 +4633,7 @@ "accountName": "ptr-target", "apiType": "Sql", "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4465,7 +4652,7 @@ "accountName": "pitrmongotest-restore", "apiType": "MongoDB", "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4484,7 +4671,7 @@ "accountName": "pitrdemo1015", "apiType": "Sql", "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4503,7 +4690,7 @@ "accountName": "pitrdemorestored1015", "apiType": "Sql", "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4522,7 +4709,7 @@ "accountName": "subbannageeta", "apiType": "Sql", "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4546,7 +4733,7 @@ "accountName": "scottkirill", "apiType": "Sql", "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4565,7 +4752,7 @@ "accountName": "test0319-pitr-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4584,7 +4771,7 @@ "accountName": "onboardingtestaccount0124", "apiType": "Sql", "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4603,7 +4790,7 @@ "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4622,7 +4809,7 @@ "accountName": "vinh-table2-restore", "apiType": "Table, Sql", "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4641,7 +4828,7 @@ "accountName": "vinhpitr30-cli", "apiType": "Sql", "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4660,7 +4847,7 @@ "accountName": "vinhperiodic3-cli", "apiType": "Sql", "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4679,7 +4866,7 @@ "accountName": "vinh-pitr7-portal", "apiType": "Sql", "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4698,7 +4885,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7", "apiType": "Sql", "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4717,7 +4904,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", "apiType": "Sql", "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4736,7 +4923,7 @@ "accountName": "vinh-periodic-again", "apiType": "Sql", "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4755,7 +4942,7 @@ "accountName": "vinh-periodic-again2", "apiType": "Sql", "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4774,7 +4961,7 @@ "accountName": "vinh-gremlin-again", "apiType": "Gremlin, Sql", "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4793,7 +4980,7 @@ "accountName": "vinh-table-tennis-cli-0190", "apiType": "Table, Sql", "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4812,7 +4999,7 @@ "accountName": "ddhamothsqlpitracc", "apiType": "Sql", "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4831,7 +5018,7 @@ "accountName": "ddhamothmongopitracc", "apiType": "MongoDB", "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4850,7 +5037,7 @@ "accountName": "dsapaligadbkeytest", "apiType": "Sql", "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4869,7 +5056,7 @@ "accountName": "ddhamothpitrsqlacc2", "apiType": "Sql", "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4888,7 +5075,7 @@ "accountName": "vinkumsql", "apiType": "Sql", "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4907,7 +5094,7 @@ "accountName": "dsapaliga-monitor-test2", "apiType": "Sql", "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4926,7 +5113,7 @@ "accountName": "nikhiltestmig", "apiType": "Sql", "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4950,7 +5137,7 @@ "accountName": "nikhil-multi-region-pitr", "apiType": "Sql", "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4969,7 +5156,7 @@ "accountName": "test-account23", "apiType": "Sql", "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -4993,7 +5180,7 @@ "accountName": "testpitr", "apiType": "Sql", "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5012,7 +5199,7 @@ "accountName": "readregionrestore-test", "apiType": "Sql", "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "North Central US", @@ -5031,7 +5218,7 @@ "accountName": "vinhpitr30-cli-arm-restore", "apiType": "Sql", "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T00:05:06Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5050,7 +5237,7 @@ "accountName": "grem-test", "apiType": "Gremlin, Sql", "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5069,7 +5256,7 @@ "accountName": "mongo-test-1", "apiType": "MongoDB", "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5088,7 +5275,7 @@ "accountName": "sql-test-1", "apiType": "Sql", "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5107,7 +5294,7 @@ "accountName": "tables-test-1", "apiType": "Table, Sql", "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5164,7 +5351,7 @@ "accountName": "dsapaliga-xrr-test", "apiType": "Sql", "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5183,7 +5370,7 @@ "accountName": "dsapaliga-xrr-cli2", "apiType": "Sql", "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T00:05:06Z", + "oldestRestorableTime": "2023-04-13T20:02:35Z", "restorableLocations": [ { "locationName": "West US", @@ -5750,20 +5937,115 @@ } }, { - "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", "properties": { - "accountName": "r-database-account-605", + "accountName": "r-database-account-7671", "apiType": "Sql", - "creationTime": "2023-04-20T00:04:33Z", - "oldestRestorableTime": "2023-04-20T00:04:33Z", + "creationTime": "2023-04-20T15:44:05Z", + "oldestRestorableTime": "2023-04-20T15:44:05Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", - "creationTime": "2023-04-20T00:04:34Z" + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "oldestRestorableTime": "2023-04-20T15:57:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z" + } + ] + } + }, + { + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "properties": { + "accountName": "mks-cli-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-20T16:21:22Z", + "oldestRestorableTime": "2023-04-20T16:21:22Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z" + } + ] + } + }, + { + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "properties": { + "accountName": "mks-ps-pna-disable", + "apiType": "Sql", + "creationTime": "2023-04-20T17:07:14Z", + "oldestRestorableTime": "2023-04-20T17:07:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "oldestRestorableTime": "2023-04-20T20:00:57Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z" + } + ] + } + }, + { + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", + "properties": { + "accountName": "r-database-account-59", + "apiType": "Sql", + "creationTime": "2023-04-20T20:02:03Z", + "oldestRestorableTime": "2023-04-20T20:02:03Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z" } ] } @@ -5778,7 +6060,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T10:54:16Z", "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5799,7 +6081,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:05:04Z", "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5820,7 +6102,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:16:07Z", "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5841,7 +6123,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:22:51Z", "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5862,7 +6144,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T18:28:48Z", "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5883,7 +6165,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T21:16:33Z", "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5904,7 +6186,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:08Z", "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5925,7 +6207,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:18:09Z", "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5946,7 +6228,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:00:54Z", "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5967,7 +6249,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:17:36Z", "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -5988,7 +6270,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T18:51:09Z", "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6009,7 +6291,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:00:50Z", "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6030,7 +6312,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:09Z", "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6051,7 +6333,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:34:54Z", "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6072,7 +6354,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:49:54Z", "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6093,7 +6375,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T20:32:49Z", "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6114,7 +6396,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:11:27Z", "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6135,7 +6417,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:42:51Z", "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6156,7 +6438,7 @@ "apiType": "Sql", "creationTime": "2023-03-26T16:03:42Z", "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6177,7 +6459,7 @@ "apiType": "Sql", "creationTime": "2023-03-27T03:23:23Z", "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6198,7 +6480,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-17T18:46:10Z", "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6219,7 +6501,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T02:19:03Z", "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6240,7 +6522,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T03:39:15Z", "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6261,7 +6543,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T13:58:50Z", "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6282,7 +6564,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:10:51Z", "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6303,7 +6585,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:25:17Z", "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6324,7 +6606,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:35:15Z", "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6345,7 +6627,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:54:34Z", "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6366,7 +6648,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:09:04Z", "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6387,7 +6669,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:25:43Z", "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6408,7 +6690,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:32:25Z", "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "Central US", @@ -6435,7 +6717,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T22:16:00Z", "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6456,7 +6738,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T01:52:39Z", "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6477,7 +6759,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:21:49Z", "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6498,7 +6780,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:33:02Z", "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6519,7 +6801,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:47:00Z", "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6540,7 +6822,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:26:20Z", "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6561,7 +6843,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:40:43Z", "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6582,7 +6864,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:04:48Z", "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6603,7 +6885,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:32:28Z", "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6624,7 +6906,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:59:34Z", "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6645,7 +6927,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:27:44Z", "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6666,7 +6948,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:51:55Z", "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6687,7 +6969,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:07:55Z", "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6708,7 +6990,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:41:45Z", "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6729,7 +7011,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:22:12Z", "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6750,7 +7032,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T08:19:11Z", "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6771,7 +7053,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:33:51Z", "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6792,7 +7074,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T09:01:29Z", "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6813,7 +7095,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:28:36Z", "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6834,7 +7116,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T10:01:55Z", "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6855,7 +7137,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T10:20:03Z", "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6876,7 +7158,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:43:27Z", "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6897,7 +7179,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:16:22Z", "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6918,7 +7200,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:28:35Z", "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6939,7 +7221,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T16:22:41Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6960,7 +7242,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:43:40Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -6981,7 +7263,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:14:16Z", "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7002,7 +7284,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T17:32:14Z", "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7023,7 +7305,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:41:56Z", "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7044,7 +7326,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:51:17Z", "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7065,7 +7347,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:21:12Z", "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7086,7 +7368,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:45:36Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7107,7 +7389,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:07:01Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7128,7 +7410,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:36:52Z", "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7149,7 +7431,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:55:11Z", "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7170,7 +7452,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:11:47Z", "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7191,7 +7473,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T19:27:17Z", "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7212,7 +7494,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:41:10Z", "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7233,7 +7515,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T19:57:31Z", "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7254,7 +7536,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:12:42Z", "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7275,7 +7557,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T20:42:13Z", "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7296,7 +7578,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:00:04Z", "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7317,7 +7599,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:32:51Z", "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7338,7 +7620,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:15:51Z", "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7359,7 +7641,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:27:59Z", "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7380,7 +7662,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T21:50:14Z", "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7401,7 +7683,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T22:05:54Z", "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7422,7 +7704,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:19:29Z", "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7443,7 +7725,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T22:36:33Z", "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7554,7 +7836,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:51:34Z", "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7575,7 +7857,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:21:19Z", "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7596,7 +7878,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T23:52:19Z", "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7617,7 +7899,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T00:45:13Z", "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7638,7 +7920,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T01:04:05Z", "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7659,7 +7941,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T01:23:37Z", "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7680,7 +7962,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T01:44:49Z", "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7701,7 +7983,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:14:47Z", "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7722,7 +8004,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:41:09Z", "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7743,7 +8025,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T03:16:29Z", "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "Central US", @@ -7770,7 +8052,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:22:44Z", "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7791,7 +8073,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:40:25Z", "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7833,7 +8115,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T03:55:54Z", "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -7998,7 +8280,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:14:52Z", "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8019,7 +8301,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T04:49:23Z", "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8040,7 +8322,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:21:59Z", "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8061,7 +8343,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:04:25Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8082,7 +8364,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:32:28Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8103,7 +8385,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:44:40Z", "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8124,7 +8406,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:29:10Z", "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8145,7 +8427,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:46:31Z", "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8166,7 +8448,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:23:46Z", "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8187,7 +8469,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:00:42Z", "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8208,7 +8490,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T08:15:53Z", "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8229,7 +8511,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:29:55Z", "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8250,7 +8532,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T08:45:00Z", "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8271,7 +8553,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:00:35Z", "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8292,7 +8574,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:32:58Z", "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8313,7 +8595,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:05:27Z", "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8334,7 +8616,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:37:02Z", "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8355,7 +8637,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:11:57Z", "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8376,7 +8658,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:41:56Z", "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8397,7 +8679,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:50:47Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8418,7 +8700,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:54:29Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8439,7 +8721,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:21:00Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8460,7 +8742,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:16:05Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8481,7 +8763,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:00:07Z", "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8502,7 +8784,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T12:15:11Z", "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8523,7 +8805,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:29:18Z", "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8544,7 +8826,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T12:44:53Z", "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8565,7 +8847,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:00:40Z", "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8586,7 +8868,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:33:35Z", "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8607,7 +8889,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:05:48Z", "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8628,7 +8910,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:35:58Z", "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8649,7 +8931,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:10:49Z", "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8670,7 +8952,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:40:22Z", "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8691,7 +8973,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:51:29Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8712,7 +8994,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:20:50Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8733,7 +9015,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:16:48Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8754,7 +9036,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:53:50Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8775,7 +9057,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:31:27Z", "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8796,7 +9078,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:47:28Z", "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8817,7 +9099,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:04:32Z", "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8838,7 +9120,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:24:28Z", "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8859,7 +9141,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:39:25Z", "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8880,7 +9162,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:08:24Z", "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8901,7 +9183,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:30:14Z", "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8922,7 +9204,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:46:10Z", "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8943,7 +9225,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:23:16Z", "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8964,7 +9246,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:41:08Z", "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -8985,7 +9267,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T21:50:24Z", "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9006,7 +9288,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T22:06:33Z", "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9027,7 +9309,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:20:34Z", "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9048,7 +9330,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T22:35:57Z", "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9069,7 +9351,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:51:37Z", "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9090,7 +9372,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:22:07Z", "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9111,7 +9393,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:40:03Z", "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9132,7 +9414,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:05:32Z", "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9153,7 +9435,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:21:09Z", "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9174,7 +9456,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T00:47:34Z", "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9195,7 +9477,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:04:48Z", "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9216,7 +9498,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:32:56Z", "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9237,7 +9519,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:48:31Z", "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9258,7 +9540,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T02:17:45Z", "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9279,7 +9561,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T02:35:45Z", "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9300,7 +9582,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T02:51:04Z", "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9321,7 +9603,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:04:37Z", "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9342,7 +9624,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T03:21:54Z", "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9363,7 +9645,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:37:32Z", "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9384,7 +9666,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:07:50Z", "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9405,7 +9687,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:25:40Z", "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9426,7 +9708,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T04:51:37Z", "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9447,7 +9729,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T05:07:24Z", "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9468,7 +9750,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:33:47Z", "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9489,7 +9771,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:51:09Z", "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9510,7 +9792,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:20:37Z", "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9531,7 +9813,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:35:59Z", "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9552,7 +9834,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:10:08Z", "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9573,7 +9855,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:26:06Z", "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9594,7 +9876,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:56:33Z", "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9615,7 +9897,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:15:55Z", "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9636,7 +9918,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:32:15Z", "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9657,7 +9939,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T09:00:28Z", "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9678,7 +9960,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:04:29Z", "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9699,7 +9981,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:22:06Z", "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9720,7 +10002,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:34:52Z", "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9741,7 +10023,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:56:08Z", "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9762,7 +10044,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:15:44Z", "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9783,7 +10065,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:49:37Z", "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9804,7 +10086,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T18:05:44Z", "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9825,7 +10107,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:48:32Z", "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9846,7 +10128,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:16:39Z", "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9867,7 +10149,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:32:03Z", "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9888,7 +10170,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:46:39Z", "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9909,7 +10191,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T20:02:17Z", "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9930,7 +10212,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:17:28Z", "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9951,7 +10233,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:33:26Z", "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9972,7 +10254,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:02:22Z", "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -9993,7 +10275,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:44:41Z", "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10014,7 +10296,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:09:17Z", "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10035,7 +10317,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T22:24:45Z", "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10056,7 +10338,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:38:37Z", "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10077,7 +10359,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T22:54:10Z", "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10098,7 +10380,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:09:10Z", "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10119,7 +10401,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:25:23Z", "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10140,7 +10422,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:53:57Z", "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10161,7 +10443,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T00:12:03Z", "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10182,7 +10464,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:38:08Z", "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10203,7 +10485,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:54:34Z", "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10224,7 +10506,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:20:43Z", "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10245,7 +10527,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:38:51Z", "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10266,7 +10548,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:07:38Z", "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10287,7 +10569,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:23:53Z", "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10308,7 +10590,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:52:15Z", "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10329,7 +10611,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:09:42Z", "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10350,7 +10632,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T03:25:14Z", "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10371,7 +10653,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:39:46Z", "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10392,7 +10674,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T03:56:41Z", "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10413,7 +10695,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:11:45Z", "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10434,7 +10716,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:30:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10455,7 +10737,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T05:56:56Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10476,7 +10758,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:13:31Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10497,7 +10779,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T06:08:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10518,7 +10800,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:53:04Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10539,7 +10821,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:02:37Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10560,7 +10842,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:35:19Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10581,7 +10863,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:53:31Z", "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10602,7 +10884,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:13:48Z", "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10623,7 +10905,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:44:23Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10644,7 +10926,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:33:57Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10665,7 +10947,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:49:17Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10686,7 +10968,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:47:00Z", "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10707,7 +10989,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:26:01Z", "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10728,7 +11010,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:55:06Z", "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10749,7 +11031,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:08:41Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10770,7 +11052,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:05:13Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10791,7 +11073,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:09:38Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10812,7 +11094,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:24:10Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10833,7 +11115,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T00:10:43Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10854,7 +11136,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:19:29Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10875,7 +11157,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:25:03Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10896,7 +11178,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:53:26Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10917,7 +11199,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:13:48Z", "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10938,7 +11220,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:20:58Z", "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10959,7 +11241,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:15:48Z", "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -10980,7 +11262,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:59:59Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11001,7 +11283,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:11:25Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11022,7 +11304,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:36:48Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11043,7 +11325,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T23:07:06Z", "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11064,7 +11346,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:12:03Z", "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11085,7 +11367,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T16:17:14Z", "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11106,7 +11388,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:22:51Z", "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11127,7 +11409,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T16:28:41Z", "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11148,7 +11430,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:34:14Z", "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11169,7 +11451,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:51:31Z", "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11190,7 +11472,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T17:14:52Z", "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11211,7 +11493,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:56:31Z", "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11232,7 +11514,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:17:47Z", "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11253,7 +11535,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:34:16Z", "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11274,7 +11556,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:39:47Z", "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11295,7 +11577,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:57:46Z", "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11316,7 +11598,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:20:21Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11337,7 +11619,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:03:36Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11358,7 +11640,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:25:45Z", "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11379,7 +11661,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:38:04Z", "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11400,7 +11682,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:15:20Z", "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11421,7 +11703,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:32:53Z", "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11442,7 +11724,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:47:56Z", "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11463,7 +11745,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:03:59Z", "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11484,7 +11766,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:32:03Z", "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11505,7 +11787,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:52:26Z", "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11526,7 +11808,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:20:40Z", "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11547,7 +11829,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:38:27Z", "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11568,7 +11850,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:53:12Z", "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11589,7 +11871,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:09:33Z", "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11610,7 +11892,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:37:57Z", "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11631,7 +11913,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:56:24Z", "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11652,7 +11934,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:25:55Z", "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11673,7 +11955,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:41:00Z", "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11694,7 +11976,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:58:12Z", "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11715,7 +11997,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:26:22Z", "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11736,7 +12018,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:42:49Z", "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11757,7 +12039,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:10:50Z", "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11778,7 +12060,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:30:03Z", "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11799,7 +12081,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:16:51Z", "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11820,7 +12102,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:27:53Z", "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11841,7 +12123,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:43:55Z", "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11862,7 +12144,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:09:16Z", "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11883,7 +12165,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:20:49Z", "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11904,7 +12186,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:36:32Z", "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11925,7 +12207,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:02:47Z", "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11946,7 +12228,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:18:01Z", "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11967,7 +12249,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:35:28Z", "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -11988,7 +12270,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:05:15Z", "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12009,7 +12291,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:22:06Z", "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12030,7 +12312,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:50:20Z", "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12051,7 +12333,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T06:08:10Z", "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12072,7 +12354,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:39:44Z", "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12093,7 +12375,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:58:36Z", "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12114,7 +12396,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:15:43Z", "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12135,7 +12417,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:32:21Z", "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12156,7 +12438,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:00:25Z", "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12177,7 +12459,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:18:51Z", "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12198,7 +12480,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:48:00Z", "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12219,7 +12501,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:05:50Z", "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12240,7 +12522,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:21:06Z", "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12261,7 +12543,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:37:24Z", "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12282,7 +12564,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:06:04Z", "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12303,7 +12585,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:24:32Z", "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12324,7 +12606,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T10:53:20Z", "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12345,7 +12627,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:08:49Z", "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12366,7 +12648,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:26:24Z", "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12387,7 +12669,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:54:50Z", "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12408,7 +12690,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:11:15Z", "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12429,7 +12711,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:39:46Z", "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12450,7 +12732,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:48:58Z", "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12471,7 +12753,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:23Z", "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12492,7 +12774,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:16Z", "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12513,7 +12795,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:25Z", "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12534,7 +12816,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:53:13Z", "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12555,7 +12837,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:56:23Z", "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12576,7 +12858,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:56:45Z", "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12597,7 +12879,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:57:03Z", "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12618,7 +12900,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:06Z", "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12639,7 +12921,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:20Z", "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12660,7 +12942,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:26Z", "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12681,7 +12963,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:49:07Z", "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12702,7 +12984,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:11:17Z", "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12723,7 +13005,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:54:33Z", "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12744,7 +13026,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:35:39Z", "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12765,7 +13047,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:51:56Z", "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12786,7 +13068,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:23:52Z", "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12807,7 +13089,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:40:27Z", "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12828,7 +13110,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:07:56Z", "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12849,7 +13131,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:19:51Z", "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12870,7 +13152,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:35:29Z", "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12891,7 +13173,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:00:14Z", "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12912,7 +13194,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:43Z", "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12933,7 +13215,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:28:23Z", "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12954,7 +13236,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T21:54:18Z", "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12975,7 +13257,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:13:06Z", "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -12996,7 +13278,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:28:25Z", "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13017,7 +13299,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:45:26Z", "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13038,7 +13320,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:13:12Z", "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13059,7 +13341,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:32:37Z", "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13080,7 +13362,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:01:21Z", "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13101,7 +13383,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:19:33Z", "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13122,7 +13404,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:35:00Z", "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13143,7 +13425,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:51:03Z", "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13164,7 +13446,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:20:59Z", "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13185,7 +13467,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:39:12Z", "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13206,7 +13488,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:08:08Z", "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13227,7 +13509,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:23:44Z", "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13248,7 +13530,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:41:51Z", "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13269,7 +13551,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:09:53Z", "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13290,7 +13572,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:26:04Z", "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13311,7 +13593,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:54:19Z", "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13332,7 +13614,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:11:45Z", "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13353,7 +13635,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:26:38Z", "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13374,7 +13656,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:44:29Z", "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13395,7 +13677,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:13:59Z", "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13416,7 +13698,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:30:07Z", "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13437,7 +13719,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:58:40Z", "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13458,7 +13740,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:02:28Z", "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13479,7 +13761,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:16:23Z", "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13500,7 +13782,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:23:09Z", "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13521,7 +13803,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:54:49Z", "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13542,7 +13824,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:22:56Z", "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13563,7 +13845,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T14:54:41Z", "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13584,7 +13866,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:18:01Z", "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13605,7 +13887,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:52:34Z", "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13626,7 +13908,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T16:23:16Z", "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13647,7 +13929,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:18:16Z", "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13668,7 +13950,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:53:22Z", "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13689,7 +13971,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T21:10:14Z", "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13710,7 +13992,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T20:25:24Z", "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13731,7 +14013,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T19:51:34Z", "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13752,7 +14034,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T13:44:29Z", "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13773,7 +14055,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T17:30:02Z", "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13794,7 +14076,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T18:12:05Z", "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13815,7 +14097,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:44:01Z", "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13836,7 +14118,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T14:06:05Z", "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13857,7 +14139,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:21:09Z", "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13878,7 +14160,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:42:47Z", "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13899,7 +14181,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:58:17Z", "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13920,7 +14202,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T21:20:39Z", "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13941,7 +14223,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:54:02Z", "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13962,7 +14244,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:16:14Z", "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -13983,7 +14265,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:32:19Z", "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14004,7 +14286,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:54:08Z", "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14025,7 +14307,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:31:56Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14046,7 +14328,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:04Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14067,7 +14349,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:11:39Z", "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14088,7 +14370,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T18:31:49Z", "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14109,7 +14391,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:23:17Z", "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14130,7 +14412,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:07:24Z", "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T00:05:08Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { "locationName": "West US", @@ -14142,89 +14424,236 @@ } }, { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", + "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", "properties": { - "accountName": "drop-continuous7", + "accountName": "r-database-account-605", "apiType": "Sql", - "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "creationTime": "2023-04-20T00:04:33Z", + "deletionTime": "2023-04-20T00:05:28Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", - "creationTime": "2022-05-26T18:49:52Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", + "creationTime": "2023-04-20T00:04:34Z", + "deletionTime": "2023-04-20T00:05:28Z" } ] } }, { - "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "location": "East US", + "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", "properties": { - "accountName": "periodicacctdrop", + "accountName": "r-database-account-1077", "apiType": "Sql", - "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T00:05:05Z", + "creationTime": "2023-04-20T00:07:31Z", + "deletionTime": "2023-04-20T00:30:02Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", - "creationTime": "2022-08-24T22:57:51Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", + "creationTime": "2023-04-20T00:07:32Z", + "deletionTime": "2023-04-20T00:30:02Z" } ] } }, { - "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", - "location": "East US", + "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", "properties": { - "accountName": "periodicacctdrop2", + "accountName": "restoredaccount-5322", "apiType": "Sql", - "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", - "creationTime": "2022-05-26T20:16:50Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z" } ] } }, { - "name": "b169ba58-4696-4196-99a4-51995d99f004", - "location": "East US", + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", "properties": { - "accountName": "readregionrestore-1", + "accountName": "r-database-account-5132", "apiType": "Sql", - "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", "restorableLocations": [ { - "locationName": "Southeast Asia", - "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", - "creationTime": "2023-03-02T00:15:37Z" - }, - { - "locationName": "Central India", - "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", - "creationTime": "2023-03-02T00:38:10Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" } ] } }, { - "name": "83301fff-71b5-4cb0-a399-3c6331b78411", - "location": "East US", + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" + } + ] + } + }, + { + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", + "properties": { + "accountName": "restoredaccount-1053", + "apiType": "Sql", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-21T20:02:36Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "properties": { + "accountName": "drop-continuous7", + "apiType": "Sql", + "creationTime": "2022-05-26T18:49:51Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", + "creationTime": "2022-05-26T18:49:52Z" + } + ] + } + }, + { + "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "properties": { + "accountName": "periodicacctdrop", + "apiType": "Sql", + "creationTime": "2022-08-24T22:57:51Z", + "oldestRestorableTime": "2023-04-13T20:02:34Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", + "creationTime": "2022-08-24T22:57:51Z" + } + ] + } + }, + { + "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "properties": { + "accountName": "periodicacctdrop2", + "apiType": "Sql", + "creationTime": "2022-05-26T20:16:50Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", + "creationTime": "2022-05-26T20:16:50Z" + } + ] + } + }, + { + "name": "b169ba58-4696-4196-99a4-51995d99f004", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "properties": { + "accountName": "readregionrestore-1", + "apiType": "Sql", + "creationTime": "2023-03-02T00:15:37Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", + "restorableLocations": [ + { + "locationName": "Southeast Asia", + "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", + "creationTime": "2023-03-02T00:15:37Z" + }, + { + "locationName": "Central India", + "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", + "creationTime": "2023-03-02T00:38:10Z" + } + ] + } + }, + { + "name": "83301fff-71b5-4cb0-a399-3c6331b78411", + "location": "East US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", "properties": { @@ -14232,7 +14661,7 @@ "apiType": "MongoDB", "creationTime": "2023-03-27T17:28:08Z", "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "East US", @@ -14253,7 +14682,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:24:07Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14280,7 +14709,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:06:45Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14655,7 +15084,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:45:59Z", "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "North Central US", @@ -14676,7 +15105,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T20:15:03Z", "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:34Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14696,7 +15125,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", "apiType": "Sql", "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14715,7 +15144,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", "apiType": "Sql", "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T00:05:05Z", + "oldestRestorableTime": "2023-03-21T20:02:35Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14729,42 +15158,755 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-605?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3437b78b246e6fea4a0b789f4d7eb263-8aa472b164964851-00", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-0704a5a1985a597d-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2667898ee759e167a0fa3d3c890d19ae", + "x-ms-client-request-id": "b603d0bf7e9c596f2e5d1f8c8ddac534", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/70861343-cf3d-4752-bdfe-c4d0ebed3912?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:11 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/70861343-cf3d-4752-bdfe-c4d0ebed3912?api-version=2022-11-15-preview", + "Date": "Thu, 20 Apr 2023 20:02:38 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bfb9eea-fd53-4800-ae06-265dea27d3dd", + "x-ms-correlation-request-id": "3c1fc270-8517-465b-bd03-cde9fbb8f1f9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "70861343-cf3d-4752-bdfe-c4d0ebed3912", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000512Z:0bfb9eea-fd53-4800-ae06-265dea27d3dd" + "x-ms-request-id": "916400b8-a43c-4c9b-8510-4e378d048fe4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200239Z:3c1fc270-8517-465b-bd03-cde9fbb8f1f9" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-c693dbfc3ebc0608-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dcc1279dced798afbbcc4102ef9f8a26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3de01d62-2726-4269-a965-4f8399f3b065", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "3de01d62-2726-4269-a965-4f8399f3b065", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200239Z:3de01d62-2726-4269-a965-4f8399f3b065" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-df0f6b4cf7cb1643-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "50e88ee8eefa625baa3efdf56a75aed8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34098985-8064-40ac-8528-8c354b371014", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "34098985-8064-40ac-8528-8c354b371014", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200240Z:34098985-8064-40ac-8528-8c354b371014" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-b38dff9b1c09d41c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "66ee8e5ee819825d4b619ff31b23d519", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af43d1e3-96e0-4b63-883d-bb3e7db18702", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "af43d1e3-96e0-4b63-883d-bb3e7db18702", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200241Z:af43d1e3-96e0-4b63-883d-bb3e7db18702" }, "ResponseBody": { "status": "Enqueued" } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-fec6713732875903-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1b10ed1cae6dae96cb5e3298d0ba2e45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6533a31b-4cb6-4ec9-8015-8fa02e72199d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "6533a31b-4cb6-4ec9-8015-8fa02e72199d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200243Z:6533a31b-4cb6-4ec9-8015-8fa02e72199d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-91686fc93990ce14-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "60a4681d24b0000c316504984f684687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e2f276d6-0898-4133-871d-28fcc69d72de", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "e2f276d6-0898-4133-871d-28fcc69d72de", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200245Z:e2f276d6-0898-4133-871d-28fcc69d72de" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-7a7e1e702de14b6a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7cd8e4699265b06bf8409bbab6c4b190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba24270b-b77c-40a8-9bc1-44198514e019", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ba24270b-b77c-40a8-9bc1-44198514e019", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200249Z:ba24270b-b77c-40a8-9bc1-44198514e019" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6ead7360b141e6ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b2d65932747ff868e010ea07a9fd5f63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:02:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "01a3bf12-7bfb-4d97-a27c-8c253be90ce6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "01a3bf12-7bfb-4d97-a27c-8c253be90ce6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200257Z:01a3bf12-7bfb-4d97-a27c-8c253be90ce6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6c41a2c6a57970d2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ec2fab18b1e28ae0fdf4687089524a6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:03:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d157bef-f783-492c-93fb-83e41bcb4bf4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "1d157bef-f783-492c-93fb-83e41bcb4bf4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200313Z:1d157bef-f783-492c-93fb-83e41bcb4bf4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-292d8c2cf8fcf692-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f56573b39391f5087bdf9b55a86306fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:03:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "336e72d7-a2fd-481c-9367-31c67754e0e1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "336e72d7-a2fd-481c-9367-31c67754e0e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200345Z:336e72d7-a2fd-481c-9367-31c67754e0e1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-4d6eff099317d22b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0ba137e0c59581ae794bb58a0bf86f8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:04:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "767c438c-7c03-4ae1-badf-0786d8e407a5", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "767c438c-7c03-4ae1-badf-0786d8e407a5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200417Z:767c438c-7c03-4ae1-badf-0786d8e407a5" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-cc8f1966f2fcffed-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "36547cc66a9784d1a23a7102168be19a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:04:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8eb18b9b-e9c2-4790-8538-af4d9a92e10e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "8eb18b9b-e9c2-4790-8538-af4d9a92e10e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200449Z:8eb18b9b-e9c2-4790-8538-af4d9a92e10e" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-d87020820c9d819b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "518f6eee3eb0eed8c5e47b46de7de982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:05:21 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6ed1f417-70fb-46b7-bf2a-fd22fc2effad", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6ed1f417-70fb-46b7-bf2a-fd22fc2effad", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200522Z:6ed1f417-70fb-46b7-bf2a-fd22fc2effad" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-be740095d76b72e8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2c8f0d70cf0e7662651d685a53ac6bee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:05:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b49bb06a-1338-4702-a441-ce61f16af85c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "b49bb06a-1338-4702-a441-ce61f16af85c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200554Z:b49bb06a-1338-4702-a441-ce61f16af85c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-80080fdc4612b085-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9d9c1a6a1d6987dea46571b3ee8ba625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:06:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bdbd055b-5398-463d-ac98-def4fce665ef", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "bdbd055b-5398-463d-ac98-def4fce665ef", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200626Z:bdbd055b-5398-463d-ac98-def4fce665ef" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-a610822c16d4b683-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0891ee50b5fc1e8b0b18eb93d67d9a19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:06:58 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "170734c5-c792-4b48-906e-b8e7fcaca788", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "170734c5-c792-4b48-906e-b8e7fcaca788", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200658Z:170734c5-c792-4b48-906e-b8e7fcaca788" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-3fb1607192405569-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c4db8d794be052192f0787a85eaf88da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:07:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e80459ae-5d16-4aa8-a480-ae2be8cfdb32", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "e80459ae-5d16-4aa8-a480-ae2be8cfdb32", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200730Z:e80459ae-5d16-4aa8-a480-ae2be8cfdb32" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-c11617aa3c2af82f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64094376621ab4f18e7e9251314ab027", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:08:02 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c8554708-2b93-4d83-b63a-3ec7be6fa666", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "c8554708-2b93-4d83-b63a-3ec7be6fa666", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200802Z:c8554708-2b93-4d83-b63a-3ec7be6fa666" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6c7191b1923238e3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "603957cbe2af0544d53ed9f42de2bf5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:08:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d1292b5-d5ac-4784-865c-2f6c35923ce6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "9d1292b5-d5ac-4784-865c-2f6c35923ce6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200834Z:9d1292b5-d5ac-4784-865c-2f6c35923ce6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-1a440c493764d72a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "931c118f357317fe9c263562b9c821e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:09:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aede5a24-d762-468c-858f-44e3f64d04e1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "aede5a24-d762-468c-858f-44e3f64d04e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200907Z:aede5a24-d762-468c-858f-44e3f64d04e1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-dd229a381adb7e76-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "06dd60572875942afe048fdb88fd87ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:09:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6dac60dd-dd34-4e9f-8928-bfe8c53c51d0", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "6dac60dd-dd34-4e9f-8928-bfe8c53c51d0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200939Z:6dac60dd-dd34-4e9f-8928-bfe8c53c51d0" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-898f224fb18bdf63-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "20c136be1d2e95b35922c488ace24b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:10:10 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e3878882-d291-494d-8195-10e1c6330c6f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e3878882-d291-494d-8195-10e1c6330c6f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201011Z:e3878882-d291-494d-8195-10e1c6330c6f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-52ef7a86e959cb7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cd9df51db80567e6e788946fa6238e9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:10:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c3d35c17-ed19-43be-99ef-32d5ad68c189", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "c3d35c17-ed19-43be-99ef-32d5ad68c189", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201043Z:c3d35c17-ed19-43be-99ef-32d5ad68c189" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-425fa380531b5172-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "83a3899f000639b6ad48ad5364a1e71c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Thu, 20 Apr 2023 20:11:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1a4f0079-986d-4e64-9c86-c948d55dbf6e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "1a4f0079-986d-4e64-9c86-c948d55dbf6e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201115Z:1a4f0079-986d-4e64-9c86-c948d55dbf6e" + }, + "ResponseBody": { + "status": "Succeeded" + } } ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1017439198", + "RandomSeed": "750368943", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json index bddb9d7e8ad3..764eb8adb373 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json @@ -6,9 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c174c5425f75a593e729d38cbdbce0ec-f7cf6f5ed3aced35-00", + "traceparent": "00-1fbcd620a8c885dedb9111c4f9b50e05-a4ea9ad044932877-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fac359f487901ff194b7029c43afa428", + "x-ms-client-request-id": "65957a39cb04b309ae899ead8eacfc8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:02:10 GMT", + "Date": "Thu, 20 Apr 2023 19:58:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eeb2b449-cae3-407b-b9d7-4fddbf2c7e53", + "x-ms-correlation-request-id": "0bde83d5-e35e-4c69-86fb-e326cb853fea", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "eeb2b449-cae3-407b-b9d7-4fddbf2c7e53", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000210Z:eeb2b449-cae3-407b-b9d7-4fddbf2c7e53" + "x-ms-request-id": "0bde83d5-e35e-4c69-86fb-e326cb853fea", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195842Z:0bde83d5-e35e-4c69-86fb-e326cb853fea" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -47,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-1407?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-8108?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-a529296cf41c7c9c65b0a8d58f1aa519-5dc593f5dd6fc1e5-00", + "traceparent": "00-737255ab3ff0d6a1bc8c7adfc0ca0ec4-5db95023b70d4cf6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5cc77ec0a9de42d92058b65d4ca631d5", + "x-ms-client-request-id": "c645cc0263c4a19893145c8d66a8fccb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:02:12 GMT", + "Date": "Thu, 20 Apr 2023 19:58:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12c30b2d-6298-4379-85cf-f621b06cbf49", + "x-ms-correlation-request-id": "aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "12c30b2d-6298-4379-85cf-f621b06cbf49", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000212Z:12c30b2d-6298-4379-85cf-f621b06cbf49" + "x-ms-request-id": "aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195844Z:aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407", - "name": "dbaccount-1407", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108", + "name": "dbaccount-8108", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -90,7 +90,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1716847392", + "RandomSeed": "2015046093", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } From 3260899d802b16c28365fc19d41beb6d3ab586d0 Mon Sep 17 00:00:00 2001 From: dsapaliga Date: Fri, 21 Apr 2023 12:10:46 -0500 Subject: [PATCH 3/3] updated RestorabledatabaseAccountTests groupo --- .../RestorableDatabaseAccountList.json | 2427 ++- .../RestorableDatabaseAccountListAsync.json | 3022 ++- ...RestorableDatabaseAccountTests(False).json | 37 +- ...orableDatabaseAccountTests(True)Async.json | 36 +- .../RestoreSqlDatabaseAccount.json | 16162 ++++++++------- .../RestoreSqlDatabaseAccountAsync.json | 16118 ++++++++------- .../TestCrossRegionRestore.json | 16864 --------------- .../TestCrossRegionRestoreAsync.json | 17061 ---------------- 8 files changed, 22137 insertions(+), 49590 deletions(-) delete mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestore.json delete mode 100644 sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestoreAsync.json diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json index f67652a41ad7..6e721f009d36 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountList.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-8108?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-3324?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5abbd42387363b7da662cf8f7d39c85a-2d811b33041dc0f6-00", + "traceparent": "00-32fb5b7433c92bd225946974f19afc72-b3f650f5f7a19c99-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1e171352f057280c2860f7e60bcab128", + "x-ms-client-request-id": "7eae584f40900aaabaeaf7171580a8bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 19:59:43 GMT", + "Date": "Fri, 21 Apr 2023 09:22:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6def1f3e-a382-44dd-a13e-dd6558a9016a", + "x-ms-correlation-request-id": "c6ed9f6a-820e-47fd-841d-876773886206", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "6def1f3e-a382-44dd-a13e-dd6558a9016a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195944Z:6def1f3e-a382-44dd-a13e-dd6558a9016a" + "x-ms-request-id": "c6ed9f6a-820e-47fd-841d-876773886206", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092210Z:c6ed9f6a-820e-47fd-841d-876773886206" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108", - "name": "dbaccount-8108", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324", + "name": "dbaccount-3324", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-da4561e9f6d1904b-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-eb2a3853cf68ac71-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "41b461fcac65d525d5de91dd165fd56f", + "x-ms-client-request-id": "c15bb5f00418f7d73f2e0daea8c685f8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2398", + "Content-Length": "2405", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:50 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59/operationResults/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 09:22:17 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595/operationResults/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b31d398e-a901-4c13-9796-10c2557f72ea", + "x-ms-correlation-request-id": "2e462abe-aecf-479e-bcd5-216f847e28b3", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "8f9da6fc-b466-4ec1-849d-49401e1c1491", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195951Z:b31d398e-a901-4c13-9796-10c2557f72ea" + "x-ms-request-id": "e738bd28-48da-4e49-92b3-95ba233ce195", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092218Z:2e462abe-aecf-479e-bcd5-216f847e28b3" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59", - "name": "r-database-account-59", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595", + "name": "r-database-account-5595", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T19:59:49.2745973Z" + "createdAt": "2023-04-21T09:22:16.159472Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "instanceId": "9189867f-ed3f-449a-a9ad-79a2d72fef11", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T19:59:49.2745973Z" + "generationTime": "2023-04-21T09:22:16.159472Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T19:59:49.2745973Z" + "generationTime": "2023-04-21T09:22:16.159472Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T19:59:49.2745973Z" + "generationTime": "2023-04-21T09:22:16.159472Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T19:59:49.2745973Z" + "generationTime": "2023-04-21T09:22:16.159472Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-7dda23f4604f2417-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-1986d3a770ce9312-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d9916a8cfb2166edf24982127a4b1100", + "x-ms-client-request-id": "0cac45867f8c5436d68751119d5c1223", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:50 GMT", + "Date": "Fri, 21 Apr 2023 09:22:17 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b88baa8a-ed4a-467d-90e2-e859c94dbda9", + "x-ms-correlation-request-id": "8c1ccc2f-03f8-4e36-b4be-1a04ab7be3e8", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "b88baa8a-ed4a-467d-90e2-e859c94dbda9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195951Z:b88baa8a-ed4a-467d-90e2-e859c94dbda9" + "x-ms-request-id": "8c1ccc2f-03f8-4e36-b4be-1a04ab7be3e8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092218Z:8c1ccc2f-03f8-4e36-b4be-1a04ab7be3e8" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-8e4d56621e086843-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-fe0676f95fe07ec6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3ec676229d30f0907d399b18d777ec42", + "x-ms-client-request-id": "68741f72eb593e22862579803632f93b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:51 GMT", + "Date": "Fri, 21 Apr 2023 09:22:18 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41c5c855-1034-47f1-9df2-7cc199643273", + "x-ms-correlation-request-id": "fcd16c46-bfcf-4b97-90a8-e4b638cee9dd", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "41c5c855-1034-47f1-9df2-7cc199643273", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195952Z:41c5c855-1034-47f1-9df2-7cc199643273" + "x-ms-request-id": "fcd16c46-bfcf-4b97-90a8-e4b638cee9dd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092219Z:fcd16c46-bfcf-4b97-90a8-e4b638cee9dd" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-fc7f8882c3f702db-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-881d36781bedc2a0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ab50b1e6fbce484e9f1a99c789d1ff5a", + "x-ms-client-request-id": "6228dd627819216be1fafa09611d98ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:52 GMT", + "Date": "Fri, 21 Apr 2023 09:22:19 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0394d791-68ba-47d7-93b9-6f2d7ddac58d", + "x-ms-correlation-request-id": "18c4bc0c-633b-4df5-ab30-3f69e5a9f17b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "0394d791-68ba-47d7-93b9-6f2d7ddac58d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195953Z:0394d791-68ba-47d7-93b9-6f2d7ddac58d" + "x-ms-request-id": "18c4bc0c-633b-4df5-ab30-3f69e5a9f17b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092220Z:18c4bc0c-633b-4df5-ab30-3f69e5a9f17b" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-ec3a36bece44a13a-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-133dd0df8a610854-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "728bd53ab8cbeeaedaa05be760d48f7a", + "x-ms-client-request-id": "de33a985638f9bd6236e856706b61da4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:53 GMT", + "Date": "Fri, 21 Apr 2023 09:22:21 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2111dd5-4a02-4b23-b740-a9946e4eb417", + "x-ms-correlation-request-id": "dc7dbdce-0b15-4d91-845b-7b4c06ef6423", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "e2111dd5-4a02-4b23-b740-a9946e4eb417", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195954Z:e2111dd5-4a02-4b23-b740-a9946e4eb417" + "x-ms-request-id": "dc7dbdce-0b15-4d91-845b-7b4c06ef6423", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092221Z:dc7dbdce-0b15-4d91-845b-7b4c06ef6423" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-9f2bb454834c8a12-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-2fbfed41ee515f43-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c92b3f5d65fa2631277e9f1504c966ac", + "x-ms-client-request-id": "c0af158db034f909b353865ff019dd69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 19:59:55 GMT", + "Date": "Fri, 21 Apr 2023 09:22:23 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d52c742-3d1f-4d86-8280-bcd3f1315919", + "x-ms-correlation-request-id": "ed561bde-4c8f-4cb9-b39b-7107e85e63e7", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "6d52c742-3d1f-4d86-8280-bcd3f1315919", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195956Z:6d52c742-3d1f-4d86-8280-bcd3f1315919" + "x-ms-request-id": "ed561bde-4c8f-4cb9-b39b-7107e85e63e7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092223Z:ed561bde-4c8f-4cb9-b39b-7107e85e63e7" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-684703d68c0f1cd7-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-d0184c9b15284158-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "01dd403a7aeb2d770361d12ea067e7ca", + "x-ms-client-request-id": "8dfa8c8d1bfefeab068c3eabf3041b2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:00:00 GMT", + "Date": "Fri, 21 Apr 2023 09:22:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa5b160c-0693-46f5-8ce5-97565579835f", + "x-ms-correlation-request-id": "4ce480dc-7d2a-411a-8ab6-971290deb935", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "fa5b160c-0693-46f5-8ce5-97565579835f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200000Z:fa5b160c-0693-46f5-8ce5-97565579835f" + "x-ms-request-id": "4ce480dc-7d2a-411a-8ab6-971290deb935", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092227Z:4ce480dc-7d2a-411a-8ab6-971290deb935" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-403806110ef7165b-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-2c9a63691b9c0690-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4a6a1e8b36a6d460a3644a4d1999ea10", + "x-ms-client-request-id": "4b7b55ddd86dd5b89f3a2a3cdd76aa0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:00:08 GMT", + "Date": "Fri, 21 Apr 2023 09:22:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23601346-9d71-4390-9f13-ee9b4a7cc0e4", + "x-ms-correlation-request-id": "298a76da-7ca4-4f6c-bb2e-46dd46de28d6", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "23601346-9d71-4390-9f13-ee9b4a7cc0e4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200008Z:23601346-9d71-4390-9f13-ee9b4a7cc0e4" + "x-ms-request-id": "298a76da-7ca4-4f6c-bb2e-46dd46de28d6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092235Z:298a76da-7ca4-4f6c-bb2e-46dd46de28d6" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-05cb0c40368d02ff-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-0baaf4f843abd83a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "20adaf3a8df6e38fc8fdc598930385c0", + "x-ms-client-request-id": "79da1c908fbc72a66ab1b9a7715e05ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:00:24 GMT", + "Date": "Fri, 21 Apr 2023 09:22:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ee18278-e16c-4bbe-8320-99f9a019f5c9", + "x-ms-correlation-request-id": "fa659b96-84f3-4039-955a-baf19f650b5f", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1ee18278-e16c-4bbe-8320-99f9a019f5c9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200024Z:1ee18278-e16c-4bbe-8320-99f9a019f5c9" + "x-ms-request-id": "fa659b96-84f3-4039-955a-baf19f650b5f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092251Z:fa659b96-84f3-4039-955a-baf19f650b5f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-976e36f37d94763a-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-58d4175e2b27d89e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e68ad5961b5e0305df085e862f291469", + "x-ms-client-request-id": "9b825b38929db4fbd424edc3f06f2090", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:00:56 GMT", + "Date": "Fri, 21 Apr 2023 09:23:23 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7383faf0-9ae9-4a8f-bca6-3d2f7cd57823", + "x-ms-correlation-request-id": "d7884eb5-c8fa-432d-baef-c5d5c4544168", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "7383faf0-9ae9-4a8f-bca6-3d2f7cd57823", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200057Z:7383faf0-9ae9-4a8f-bca6-3d2f7cd57823" + "x-ms-request-id": "d7884eb5-c8fa-432d-baef-c5d5c4544168", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092324Z:d7884eb5-c8fa-432d-baef-c5d5c4544168" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-5b3307e4351a06f0-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-e78a634040210f1a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f1f3c177c7bafdd38e8782a870c8409f", + "x-ms-client-request-id": "d71a34e2a12a4d6eae08e0bc1e116441", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:01:29 GMT", + "Date": "Fri, 21 Apr 2023 09:23:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe8844cd-fc40-4fc4-9983-88e99372430e", + "x-ms-correlation-request-id": "4e772d19-96e8-4638-9852-dc579ec2512b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "fe8844cd-fc40-4fc4-9983-88e99372430e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200129Z:fe8844cd-fc40-4fc4-9983-88e99372430e" + "x-ms-request-id": "4e772d19-96e8-4638-9852-dc579ec2512b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092356Z:4e772d19-96e8-4638-9852-dc579ec2512b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-858cdae32c3267de-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-abeab50e2e7f6b1d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "44b68ade040e1eb1a9a941ed2f08b39e", + "x-ms-client-request-id": "81047b340ff4fe6c2025a598a2e281fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,29 +539,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:00 GMT", + "Date": "Fri, 21 Apr 2023 09:24:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c77a790d-1d6f-455e-8de5-1d681fe7a912", + "x-ms-correlation-request-id": "94cd7c83-0954-47fa-bb0b-2cb80505eacf", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "c77a790d-1d6f-455e-8de5-1d681fe7a912", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200201Z:c77a790d-1d6f-455e-8de5-1d681fe7a912" + "x-ms-request-id": "94cd7c83-0954-47fa-bb0b-2cb80505eacf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092428Z:94cd7c83-0954-47fa-bb0b-2cb80505eacf" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8f9da6fc-b466-4ec1-849d-49401e1c1491?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e738bd28-48da-4e49-92b3-95ba233ce195?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-763565e3c12a82f7-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-fa51420ddabd5249-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d2205ce8940fcf05018d57d7995c9216", + "x-ms-client-request-id": "3cc429902e439684ed34ec94b13f95c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,62 +570,62 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:32 GMT", + "Date": "Fri, 21 Apr 2023 09:24:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "050275f5-64f4-4198-9d05-02caee6ed762", + "x-ms-correlation-request-id": "9f17338a-1e26-40a4-8dbe-928032c6a0a6", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "050275f5-64f4-4198-9d05-02caee6ed762", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:050275f5-64f4-4198-9d05-02caee6ed762" + "x-ms-request-id": "9f17338a-1e26-40a4-8dbe-928032c6a0a6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092500Z:9f17338a-1e26-40a4-8dbe-928032c6a0a6" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1da7bae26898113cb17bad6fd0a6766f-c5d48fde57acda6d-00", + "traceparent": "00-a48c96447fd7fbc7789eda32cf040011-f5034b5a5f52fe5f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a4a8bec7d073725b0fd5481185e5cd86", + "x-ms-client-request-id": "758fabc09f6bd39bc81bb605fcd5abcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "2816", + "Content-Length": "2833", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:32 GMT", + "Date": "Fri, 21 Apr 2023 09:24:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb724341-1648-49d1-bf53-b1c9fcda1c6b", + "x-ms-correlation-request-id": "1028e29e-6148-459a-8c16-304d5d879041", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "bb724341-1648-49d1-bf53-b1c9fcda1c6b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:bb724341-1648-49d1-bf53-b1c9fcda1c6b" + "x-ms-request-id": "1028e29e-6148-459a-8c16-304d5d879041", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092500Z:1028e29e-6148-459a-8c16-304d5d879041" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59", - "name": "r-database-account-59", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595", + "name": "r-database-account-5595", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T20:02:02.9271125Z" + "createdAt": "2023-04-21T09:24:30.683523Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-59.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-59.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-5595.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-5595.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +639,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "instanceId": "9189867f-ed3f-449a-a9ad-79a2d72fef11", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +657,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-5595-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +667,9 @@ ], "readLocations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-5595-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +677,9 @@ ], "locations": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-59-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-5595-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +687,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-59-westus", + "id": "r-database-account-5595-westus", "locationName": "West US", "failoverPriority": 0 } @@ -711,16 +711,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T20:02:02.9271125Z" + "generationTime": "2023-04-21T09:24:30.683523Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T20:02:02.9271125Z" + "generationTime": "2023-04-21T09:24:30.683523Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T20:02:02.9271125Z" + "generationTime": "2023-04-21T09:24:30.683523Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T20:02:02.9271125Z" + "generationTime": "2023-04-21T09:24:30.683523Z" } } }, @@ -735,9 +735,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7a199b8c125fe409ed1718524ceb539a-bcac39c6530893b7-00", + "traceparent": "00-ca0957858e520c538f5dbe5f683bffe5-4a55fab716ebf6c3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "14bfe3d36ea74a9085e74280adda844c", + "x-ms-client-request-id": "f52be687274c05fef76d93bf22d74de1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +746,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 20:02:33 GMT", + "Date": "Fri, 21 Apr 2023 09:24:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "704f0742-72a5-4a90-b0e7-ff094f763dbb", + "x-ms-correlation-request-id": "e5e68ead-0742-483b-a490-ca766806edc0", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "704f0742-72a5-4a90-b0e7-ff094f763dbb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200233Z:704f0742-72a5-4a90-b0e7-ff094f763dbb" + "x-ms-request-id": "e5e68ead-0742-483b-a490-ca766806edc0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092500Z:e5e68ead-0742-483b-a490-ca766806edc0" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -781,23 +781,23 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-604530767782544d62b82206e9148688-e378cc1c7cd7becb-00", + "traceparent": "00-c84bc4c96a63830e7d65c3d90dc629ec-0605c89dbf9f9830-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "70252a160f60182b00aec3394bf4491b", + "x-ms-client-request-id": "f6d8e18f0c53f18f8df17427787e9917", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "480391", + "Content-Length": "490803", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 20:02:37 GMT", + "Date": "Fri, 21 Apr 2023 09:25:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70ef58b6-9dd7-40a7-bdfb-1443c353a881", + "x-ms-correlation-request-id": "f8f6595d-28f7-42f9-a4d4-4020dcb15938", "x-ms-original-request-ids": [ "", "", @@ -839,8 +839,8 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "70ef58b6-9dd7-40a7-bdfb-1443c353a881", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200238Z:70ef58b6-9dd7-40a7-bdfb-1443c353a881" + "x-ms-request-id": "f8f6595d-28f7-42f9-a4d4-4020dcb15938", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092505Z:f8f6595d-28f7-42f9-a4d4-4020dcb15938" }, "ResponseBody": { "value": [ @@ -853,7 +853,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -872,7 +872,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -891,7 +891,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -910,7 +910,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -929,7 +929,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -948,7 +948,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -967,7 +967,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -986,7 +986,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1005,7 +1005,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1024,7 +1024,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1043,7 +1043,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1062,7 +1062,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1081,7 +1081,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1105,7 +1105,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1115,63 +1115,6 @@ ] } }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, - { - "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", - "properties": { - "accountName": "r-database-account-8195", - "apiType": "Sql", - "creationTime": "2023-04-20T19:59:26Z", - "oldestRestorableTime": "2023-04-20T19:59:26Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", - "creationTime": "2023-04-20T19:59:27Z" - } - ] - } - }, { "name": "2217666b-a543-4788-adf9-f8059e864343", "location": "West Central US", @@ -1224,7 +1167,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1251,7 +1194,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1326,7 +1269,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1353,7 +1296,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1374,7 +1317,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1464,7 +1407,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1485,7 +1428,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1506,7 +1449,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1527,7 +1470,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1548,7 +1491,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1575,7 +1518,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1596,7 +1539,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1617,7 +1560,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1638,7 +1581,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1665,7 +1608,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1686,7 +1629,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1734,7 +1677,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1755,7 +1698,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1776,7 +1719,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1797,7 +1740,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1818,7 +1761,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1839,7 +1782,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1860,7 +1803,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1881,7 +1824,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1902,7 +1845,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1923,7 +1866,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1944,7 +1887,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1965,7 +1908,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1986,7 +1929,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2007,7 +1950,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2028,7 +1971,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2049,7 +1992,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2070,7 +2013,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2091,7 +2034,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2112,7 +2055,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2133,7 +2076,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2154,7 +2097,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2175,7 +2118,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2196,7 +2139,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2217,7 +2160,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2238,7 +2181,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2259,7 +2202,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2280,7 +2223,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2301,7 +2244,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2322,7 +2265,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2343,7 +2286,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2364,7 +2307,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2385,7 +2328,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2406,7 +2349,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2427,7 +2370,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2448,7 +2391,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2469,7 +2412,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2490,7 +2433,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2511,7 +2454,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2532,7 +2475,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2553,7 +2496,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2574,7 +2517,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2595,7 +2538,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2616,7 +2559,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2637,7 +2580,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2658,7 +2601,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2679,7 +2622,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2700,7 +2643,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2721,7 +2664,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2742,7 +2685,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2763,7 +2706,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:32:15Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2784,7 +2727,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T01:47:59Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2805,7 +2748,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:27:39Z", "deletionTime": "2023-04-20T04:45:45Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2826,7 +2769,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T04:44:54Z", "deletionTime": "2023-04-20T04:45:46Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2847,7 +2790,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T15:57:02Z", "deletionTime": "2023-04-20T17:15:49Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2868,7 +2811,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T17:15:18Z", "deletionTime": "2023-04-20T17:26:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2889,7 +2832,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T17:39:33Z", "deletionTime": "2023-04-20T18:58:46Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2910,7 +2853,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T18:58:17Z", "deletionTime": "2023-04-20T19:08:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2921,6 +2864,195 @@ ] } }, + { + "name": "f591e4b2-9c04-469d-afe6-a2b193a58e47", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "properties": { + "accountName": "r-database-account-4943", + "apiType": "Sql", + "creationTime": "2023-04-20T20:19:57Z", + "deletionTime": "2023-04-20T21:39:27Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "92e8f4e6-8eda-4927-b6ac-c1c04818becd", + "creationTime": "2023-04-20T20:19:58Z", + "deletionTime": "2023-04-20T21:39:27Z" + } + ] + } + }, + { + "name": "fe240915-dab9-40fb-8e13-34442caac7ad", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fe240915-dab9-40fb-8e13-34442caac7ad", + "properties": { + "accountName": "restoredaccount-5177", + "apiType": "Sql", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "27017eec-528f-405d-bf07-b58a96de8c58", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z" + } + ] + } + }, + { + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "properties": { + "accountName": "r-database-account-8195", + "apiType": "Sql", + "creationTime": "2023-04-20T19:59:26Z", + "deletionTime": "2023-04-21T01:12:17Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z", + "deletionTime": "2023-04-21T01:12:17Z" + } + ] + } + }, + { + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "properties": { + "accountName": "r-database-account-7066", + "apiType": "Sql", + "creationTime": "2023-04-19T23:41:57Z", + "deletionTime": "2023-04-21T01:12:23Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z", + "deletionTime": "2023-04-21T01:12:23Z" + } + ] + } + }, + { + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", + "properties": { + "accountName": "r-database-account-6809", + "apiType": "Sql", + "creationTime": "2023-04-17T19:29:22Z", + "deletionTime": "2023-04-21T01:12:28Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z", + "deletionTime": "2023-04-21T01:12:28Z" + } + ] + } + }, + { + "name": "144aa61f-d16f-4aae-a275-11ef72fb1190", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/144aa61f-d16f-4aae-a275-11ef72fb1190", + "properties": { + "accountName": "r-database-account-4142", + "apiType": "Sql", + "creationTime": "2023-04-21T06:00:50Z", + "deletionTime": "2023-04-21T07:19:35Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8db86752-ff62-4c0e-9333-bdefa734e812", + "creationTime": "2023-04-21T06:00:51Z", + "deletionTime": "2023-04-21T07:19:35Z" + } + ] + } + }, + { + "name": "c687e62c-ec09-4efc-9342-23ae350e7740", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c687e62c-ec09-4efc-9342-23ae350e7740", + "properties": { + "accountName": "restoredaccount-1645", + "apiType": "Sql", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e66835c-deac-47de-95da-b865c7b0a129", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z" + } + ] + } + }, + { + "name": "fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "properties": { + "accountName": "r-database-account-2653", + "apiType": "Sql", + "creationTime": "2023-04-21T07:42:52Z", + "deletionTime": "2023-04-21T09:02:00Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "49d49eef-34f6-4e5e-8adf-82c0fbbf381b", + "creationTime": "2023-04-21T07:42:53Z", + "deletionTime": "2023-04-21T09:02:00Z" + } + ] + } + }, + { + "name": "59716638-e531-4fc3-b214-f841cd6c1a32", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/59716638-e531-4fc3-b214-f841cd6c1a32", + "properties": { + "accountName": "restoredaccount-4970", + "apiType": "Sql", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "7f2297ad-a930-4a38-aedc-cbe192ccb9eb", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z" + } + ] + } + }, { "name": "d88e6a3c-687d-4990-a516-da739070bf81", "location": "North Central US", @@ -2930,7 +3062,7 @@ "accountName": "kal-continuous7", "apiType": "Sql", "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2949,7 +3081,7 @@ "accountName": "kal-continuous7-restored1", "apiType": "Sql", "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2968,7 +3100,7 @@ "accountName": "kal-continuous7-demorestore", "apiType": "Sql", "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2987,7 +3119,7 @@ "accountName": "test-billing-continuous30", "apiType": "Sql", "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -3016,7 +3148,7 @@ "accountName": "new-cosmsosdb-account", "apiType": "Sql", "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -3036,7 +3168,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:22:22Z", "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "North Central US", @@ -3062,7 +3194,7 @@ "accountName": "vinh-periodic", "apiType": "Sql", "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3081,7 +3213,7 @@ "accountName": "databaseaccount9284", "apiType": "Sql", "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3100,7 +3232,7 @@ "accountName": "databaseaccount6234", "apiType": "Sql", "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3119,7 +3251,7 @@ "accountName": "databaseaccount8251", "apiType": "Sql", "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3138,7 +3270,7 @@ "accountName": "sql-portal-test", "apiType": "Sql", "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3157,7 +3289,7 @@ "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "Central US", @@ -3181,7 +3313,7 @@ "accountName": "databaseaccount2058", "apiType": "MongoDB", "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3200,7 +3332,7 @@ "accountName": "vinh-demo-periodic", "apiType": "Sql", "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3219,7 +3351,7 @@ "accountName": "vinh-demo-continous30", "apiType": "Sql", "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3238,7 +3370,7 @@ "accountName": "vinh-demo-continous7", "apiType": "Sql", "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3257,7 +3389,7 @@ "accountName": "vinh-demo-periodic2", "apiType": "Sql", "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3276,7 +3408,7 @@ "accountName": "vinh-demo-continous7-2", "apiType": "Sql", "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3296,7 +3428,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:56:09Z", "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3317,7 +3449,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:36:38Z", "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3338,7 +3470,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:41:14Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3359,7 +3491,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:22:17Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3380,7 +3512,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T13:41:40Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3401,7 +3533,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:01:14Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3422,7 +3554,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T14:50:51Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3443,7 +3575,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:09:14Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3483,7 +3615,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:18Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3504,7 +3636,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T15:42:44Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3525,7 +3657,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:04:54Z", "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3546,7 +3678,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:45:16Z", "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3567,7 +3699,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:01:08Z", "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3588,7 +3720,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:31Z", "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3759,7 +3891,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:46:48Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3780,7 +3912,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:25:06Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3801,7 +3933,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T16:05:21Z", "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3822,7 +3954,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T15:43:38Z", "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3927,7 +4059,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:52:17Z", "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3948,7 +4080,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:33:20Z", "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3969,7 +4101,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T19:26:23Z", "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3990,7 +4122,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:12:03Z", "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4011,7 +4143,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:25:32Z", "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4032,7 +4164,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:36:05Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4053,7 +4185,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:54:57Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4074,7 +4206,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:56:14Z", "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4095,7 +4227,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T22:04:54Z", "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4116,7 +4248,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:25:42Z", "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4200,7 +4332,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:26:49Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4221,7 +4353,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:07:29Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4242,7 +4374,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:32:21Z", "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4263,7 +4395,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:39:15Z", "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4284,7 +4416,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:57:50Z", "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4305,7 +4437,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T16:51:53Z", "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4326,7 +4458,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-14T16:59:34Z", "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4347,7 +4479,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T17:07:39Z", "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4368,7 +4500,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T17:16:06Z", "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4452,7 +4584,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:30:44Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4473,7 +4605,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:08:00Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4494,7 +4626,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T18:36:04Z", "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4514,7 +4646,7 @@ "accountName": "aholdtest", "apiType": "MongoDB", "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Europe", @@ -4533,7 +4665,7 @@ "accountName": "targetacct112", "apiType": "Sql", "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4552,7 +4684,7 @@ "accountName": "pitrmongotest", "apiType": "MongoDB", "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4571,7 +4703,7 @@ "accountName": "pitrmongowithsnapshots", "apiType": "MongoDB", "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4590,7 +4722,7 @@ "accountName": "test0319-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4614,7 +4746,7 @@ "accountName": "pitracctdemo2", "apiType": "Sql", "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4633,7 +4765,7 @@ "accountName": "ptr-target", "apiType": "Sql", "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4652,7 +4784,7 @@ "accountName": "pitrmongotest-restore", "apiType": "MongoDB", "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4671,7 +4803,7 @@ "accountName": "pitrdemo1015", "apiType": "Sql", "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4690,7 +4822,7 @@ "accountName": "pitrdemorestored1015", "apiType": "Sql", "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4709,7 +4841,7 @@ "accountName": "subbannageeta", "apiType": "Sql", "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4733,7 +4865,7 @@ "accountName": "scottkirill", "apiType": "Sql", "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4752,7 +4884,7 @@ "accountName": "test0319-pitr-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4771,7 +4903,7 @@ "accountName": "onboardingtestaccount0124", "apiType": "Sql", "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4790,7 +4922,7 @@ "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4809,7 +4941,7 @@ "accountName": "vinh-table2-restore", "apiType": "Table, Sql", "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4828,7 +4960,7 @@ "accountName": "vinhpitr30-cli", "apiType": "Sql", "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4847,7 +4979,7 @@ "accountName": "vinhperiodic3-cli", "apiType": "Sql", "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4866,7 +4998,7 @@ "accountName": "vinh-pitr7-portal", "apiType": "Sql", "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4885,7 +5017,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7", "apiType": "Sql", "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4904,7 +5036,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", "apiType": "Sql", "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4923,7 +5055,7 @@ "accountName": "vinh-periodic-again", "apiType": "Sql", "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4942,7 +5074,7 @@ "accountName": "vinh-periodic-again2", "apiType": "Sql", "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4961,7 +5093,7 @@ "accountName": "vinh-gremlin-again", "apiType": "Gremlin, Sql", "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4980,7 +5112,7 @@ "accountName": "vinh-table-tennis-cli-0190", "apiType": "Table, Sql", "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -4999,7 +5131,7 @@ "accountName": "ddhamothsqlpitracc", "apiType": "Sql", "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5018,7 +5150,7 @@ "accountName": "ddhamothmongopitracc", "apiType": "MongoDB", "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5037,7 +5169,7 @@ "accountName": "dsapaligadbkeytest", "apiType": "Sql", "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5056,7 +5188,7 @@ "accountName": "ddhamothpitrsqlacc2", "apiType": "Sql", "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5075,7 +5207,7 @@ "accountName": "vinkumsql", "apiType": "Sql", "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5094,7 +5226,7 @@ "accountName": "dsapaliga-monitor-test2", "apiType": "Sql", "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5113,7 +5245,7 @@ "accountName": "nikhiltestmig", "apiType": "Sql", "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5137,7 +5269,7 @@ "accountName": "nikhil-multi-region-pitr", "apiType": "Sql", "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5156,7 +5288,7 @@ "accountName": "test-account23", "apiType": "Sql", "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5180,7 +5312,7 @@ "accountName": "testpitr", "apiType": "Sql", "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5199,7 +5331,7 @@ "accountName": "readregionrestore-test", "apiType": "Sql", "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "North Central US", @@ -5218,7 +5350,7 @@ "accountName": "vinhpitr30-cli-arm-restore", "apiType": "Sql", "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5237,7 +5369,7 @@ "accountName": "grem-test", "apiType": "Gremlin, Sql", "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5256,7 +5388,7 @@ "accountName": "mongo-test-1", "apiType": "MongoDB", "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5275,7 +5407,7 @@ "accountName": "sql-test-1", "apiType": "Sql", "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5294,7 +5426,7 @@ "accountName": "tables-test-1", "apiType": "Table, Sql", "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5351,7 +5483,7 @@ "accountName": "dsapaliga-xrr-test", "apiType": "Sql", "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5370,7 +5502,7 @@ "accountName": "dsapaliga-xrr-cli2", "apiType": "Sql", "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T20:02:35Z", + "oldestRestorableTime": "2023-04-14T09:25:02Z", "restorableLocations": [ { "locationName": "West US", @@ -5937,115 +6069,58 @@ } }, { - "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "name": "e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "properties": { - "accountName": "r-database-account-7671", + "accountName": "r-database-account-848", "apiType": "Sql", - "creationTime": "2023-04-20T15:44:05Z", - "oldestRestorableTime": "2023-04-20T15:44:05Z", + "creationTime": "2023-04-21T01:16:43Z", + "oldestRestorableTime": "2023-04-21T01:16:43Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", - "creationTime": "2023-04-20T15:44:06Z" + "regionalDatabaseAccountInstanceId": "65cc97fd-c609-4c1f-b1b3-f4aa18afb791", + "creationTime": "2023-04-21T01:16:44Z" } ] } }, { - "name": "95a2733f-a4b0-4602-917f-958259541b70", + "name": "47575ff7-4efb-4430-a90c-e9bce7766753", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753", "properties": { - "accountName": "mayank-test-source", + "accountName": "r-database-account-5886", "apiType": "Sql", - "creationTime": "2023-04-20T15:57:14Z", - "oldestRestorableTime": "2023-04-20T15:57:14Z", + "creationTime": "2023-04-21T05:49:21Z", + "oldestRestorableTime": "2023-04-21T05:49:21Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", - "creationTime": "2023-04-20T15:57:15Z" + "regionalDatabaseAccountInstanceId": "0c58830e-7439-43f5-90a0-29eef674e0b8", + "creationTime": "2023-04-21T05:49:22Z" } ] } }, { - "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "name": "9189867f-ed3f-449a-a9ad-79a2d72fef11", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9189867f-ed3f-449a-a9ad-79a2d72fef11", "properties": { - "accountName": "mks-cli-pna-disabled", + "accountName": "r-database-account-5595", "apiType": "Sql", - "creationTime": "2023-04-20T16:21:22Z", - "oldestRestorableTime": "2023-04-20T16:21:22Z", + "creationTime": "2023-04-21T09:24:31Z", + "oldestRestorableTime": "2023-04-21T09:24:31Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", - "creationTime": "2023-04-20T16:21:22Z" - } - ] - } - }, - { - "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", - "properties": { - "accountName": "mks-ps-pna-disable", - "apiType": "Sql", - "creationTime": "2023-04-20T17:07:14Z", - "oldestRestorableTime": "2023-04-20T17:07:14Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", - "creationTime": "2023-04-20T17:07:14Z" - } - ] - } - }, - { - "name": "474160ba-27e5-4a35-b875-ef5340da8776", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", - "properties": { - "accountName": "r-database-account-3501", - "apiType": "Sql", - "creationTime": "2023-04-20T20:00:57Z", - "oldestRestorableTime": "2023-04-20T20:00:57Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", - "creationTime": "2023-04-20T20:00:58Z" - } - ] - } - }, - { - "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", - "properties": { - "accountName": "r-database-account-59", - "apiType": "Sql", - "creationTime": "2023-04-20T20:02:03Z", - "oldestRestorableTime": "2023-04-20T20:02:03Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", - "creationTime": "2023-04-20T20:02:04Z" + "regionalDatabaseAccountInstanceId": "158154f2-ba43-42d9-b432-506f23f61772", + "creationTime": "2023-04-21T09:24:32Z" } ] } @@ -6060,7 +6135,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T10:54:16Z", "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6081,7 +6156,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:05:04Z", "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6102,7 +6177,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:16:07Z", "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6123,7 +6198,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:22:51Z", "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6144,7 +6219,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T18:28:48Z", "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6165,7 +6240,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T21:16:33Z", "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6186,7 +6261,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:08Z", "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6207,7 +6282,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:18:09Z", "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6228,7 +6303,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:00:54Z", "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6249,7 +6324,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:17:36Z", "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6270,7 +6345,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T18:51:09Z", "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6291,7 +6366,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:00:50Z", "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6312,7 +6387,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:09Z", "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6333,7 +6408,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:34:54Z", "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6354,7 +6429,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:49:54Z", "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6375,7 +6450,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T20:32:49Z", "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6396,7 +6471,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:11:27Z", "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6417,7 +6492,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:42:51Z", "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6438,7 +6513,7 @@ "apiType": "Sql", "creationTime": "2023-03-26T16:03:42Z", "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6459,7 +6534,7 @@ "apiType": "Sql", "creationTime": "2023-03-27T03:23:23Z", "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6480,7 +6555,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-17T18:46:10Z", "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6501,7 +6576,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T02:19:03Z", "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6522,7 +6597,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T03:39:15Z", "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6543,7 +6618,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T13:58:50Z", "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6564,7 +6639,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:10:51Z", "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6585,7 +6660,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:25:17Z", "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6606,7 +6681,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:35:15Z", "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6627,7 +6702,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:54:34Z", "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6648,7 +6723,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:09:04Z", "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6669,7 +6744,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:25:43Z", "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6690,7 +6765,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:32:25Z", "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "Central US", @@ -6717,7 +6792,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T22:16:00Z", "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6738,7 +6813,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T01:52:39Z", "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6759,7 +6834,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:21:49Z", "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6780,7 +6855,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:33:02Z", "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6801,7 +6876,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:47:00Z", "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6822,7 +6897,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:26:20Z", "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6843,7 +6918,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:40:43Z", "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6864,7 +6939,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:04:48Z", "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6885,7 +6960,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:32:28Z", "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6906,7 +6981,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:59:34Z", "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6927,7 +7002,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:27:44Z", "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6948,7 +7023,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:51:55Z", "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6969,7 +7044,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:07:55Z", "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -6990,7 +7065,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:41:45Z", "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7011,7 +7086,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:22:12Z", "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7032,7 +7107,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T08:19:11Z", "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7053,7 +7128,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:33:51Z", "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7074,7 +7149,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T09:01:29Z", "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7095,7 +7170,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:28:36Z", "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7116,7 +7191,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T10:01:55Z", "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7137,7 +7212,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T10:20:03Z", "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7158,7 +7233,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:43:27Z", "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7179,7 +7254,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:16:22Z", "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7200,7 +7275,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:28:35Z", "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7221,7 +7296,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T16:22:41Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7242,7 +7317,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:43:40Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7263,7 +7338,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:14:16Z", "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7284,7 +7359,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T17:32:14Z", "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7305,7 +7380,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:41:56Z", "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7326,7 +7401,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:51:17Z", "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7347,7 +7422,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:21:12Z", "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7368,7 +7443,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:45:36Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7389,7 +7464,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:07:01Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7410,7 +7485,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:36:52Z", "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7431,7 +7506,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:55:11Z", "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7452,7 +7527,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:11:47Z", "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7473,7 +7548,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T19:27:17Z", "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7494,7 +7569,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:41:10Z", "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7515,7 +7590,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T19:57:31Z", "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7536,7 +7611,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:12:42Z", "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7557,7 +7632,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T20:42:13Z", "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7578,7 +7653,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:00:04Z", "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7599,7 +7674,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:32:51Z", "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7620,7 +7695,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:15:51Z", "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7641,7 +7716,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:27:59Z", "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7662,7 +7737,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T21:50:14Z", "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7683,7 +7758,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T22:05:54Z", "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7704,7 +7779,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:19:29Z", "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7725,7 +7800,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T22:36:33Z", "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7836,7 +7911,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:51:34Z", "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7857,7 +7932,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:21:19Z", "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7878,7 +7953,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T23:52:19Z", "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7899,7 +7974,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T00:45:13Z", "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7920,7 +7995,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T01:04:05Z", "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7941,7 +8016,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T01:23:37Z", "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7962,7 +8037,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T01:44:49Z", "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -7983,7 +8058,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:14:47Z", "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8004,7 +8079,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:41:09Z", "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8025,7 +8100,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T03:16:29Z", "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "Central US", @@ -8052,7 +8127,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:22:44Z", "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8073,7 +8148,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:40:25Z", "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8115,7 +8190,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T03:55:54Z", "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8280,7 +8355,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:14:52Z", "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8301,7 +8376,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T04:49:23Z", "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8322,7 +8397,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:21:59Z", "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8343,7 +8418,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:04:25Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8364,7 +8439,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:32:28Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8385,7 +8460,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:44:40Z", "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8406,7 +8481,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:29:10Z", "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8427,7 +8502,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:46:31Z", "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8448,7 +8523,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:23:46Z", "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8469,7 +8544,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:00:42Z", "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8490,7 +8565,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T08:15:53Z", "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8511,7 +8586,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:29:55Z", "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8532,7 +8607,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T08:45:00Z", "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8553,7 +8628,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:00:35Z", "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8574,7 +8649,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:32:58Z", "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8595,7 +8670,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:05:27Z", "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8616,7 +8691,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:37:02Z", "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8637,7 +8712,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:11:57Z", "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8658,7 +8733,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:41:56Z", "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8679,7 +8754,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:50:47Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8700,7 +8775,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:54:29Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8721,7 +8796,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:21:00Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8742,7 +8817,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:16:05Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8763,7 +8838,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:00:07Z", "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8784,7 +8859,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T12:15:11Z", "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8805,7 +8880,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:29:18Z", "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8826,7 +8901,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T12:44:53Z", "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8847,7 +8922,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:00:40Z", "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8868,7 +8943,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:33:35Z", "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8889,7 +8964,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:05:48Z", "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8910,7 +8985,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:35:58Z", "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8931,7 +9006,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:10:49Z", "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8952,7 +9027,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:40:22Z", "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8973,7 +9048,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:51:29Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -8994,7 +9069,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:20:50Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9015,7 +9090,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:16:48Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9036,7 +9111,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:53:50Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9057,7 +9132,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:31:27Z", "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9078,7 +9153,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:47:28Z", "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9099,7 +9174,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:04:32Z", "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9120,7 +9195,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:24:28Z", "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9141,7 +9216,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:39:25Z", "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9162,7 +9237,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:08:24Z", "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9183,7 +9258,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:30:14Z", "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9204,7 +9279,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:46:10Z", "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9225,7 +9300,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:23:16Z", "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9246,7 +9321,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:41:08Z", "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9267,7 +9342,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T21:50:24Z", "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9288,7 +9363,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T22:06:33Z", "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9309,7 +9384,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:20:34Z", "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9330,7 +9405,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T22:35:57Z", "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9351,7 +9426,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:51:37Z", "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9372,7 +9447,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:22:07Z", "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9393,7 +9468,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:40:03Z", "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9414,7 +9489,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:05:32Z", "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9435,7 +9510,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:21:09Z", "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9456,7 +9531,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T00:47:34Z", "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9477,7 +9552,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:04:48Z", "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9498,7 +9573,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:32:56Z", "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9519,7 +9594,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:48:31Z", "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9540,7 +9615,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T02:17:45Z", "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9561,7 +9636,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T02:35:45Z", "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9582,7 +9657,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T02:51:04Z", "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9603,7 +9678,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:04:37Z", "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9624,7 +9699,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T03:21:54Z", "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9645,7 +9720,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:37:32Z", "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9666,7 +9741,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:07:50Z", "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9687,7 +9762,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:25:40Z", "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9708,7 +9783,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T04:51:37Z", "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9729,7 +9804,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T05:07:24Z", "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9750,7 +9825,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:33:47Z", "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9771,7 +9846,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:51:09Z", "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9792,7 +9867,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:20:37Z", "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9813,7 +9888,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:35:59Z", "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9834,7 +9909,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:10:08Z", "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9855,7 +9930,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:26:06Z", "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9876,7 +9951,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:56:33Z", "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9897,7 +9972,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:15:55Z", "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9918,7 +9993,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:32:15Z", "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9939,7 +10014,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T09:00:28Z", "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9960,7 +10035,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:04:29Z", "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -9981,7 +10056,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:22:06Z", "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10002,7 +10077,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:34:52Z", "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10023,7 +10098,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:56:08Z", "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10044,7 +10119,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:15:44Z", "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10065,7 +10140,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:49:37Z", "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10086,7 +10161,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T18:05:44Z", "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10107,7 +10182,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:48:32Z", "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10128,7 +10203,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:16:39Z", "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10149,7 +10224,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:32:03Z", "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10170,7 +10245,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:46:39Z", "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10191,7 +10266,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T20:02:17Z", "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10212,7 +10287,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:17:28Z", "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10233,7 +10308,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:33:26Z", "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10254,7 +10329,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:02:22Z", "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10275,7 +10350,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:44:41Z", "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10296,7 +10371,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:09:17Z", "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10317,7 +10392,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T22:24:45Z", "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10338,7 +10413,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:38:37Z", "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10359,7 +10434,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T22:54:10Z", "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10380,7 +10455,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:09:10Z", "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10401,7 +10476,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:25:23Z", "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10422,7 +10497,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:53:57Z", "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10443,7 +10518,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T00:12:03Z", "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10464,7 +10539,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:38:08Z", "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10485,7 +10560,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:54:34Z", "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10506,7 +10581,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:20:43Z", "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10527,7 +10602,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:38:51Z", "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10548,7 +10623,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:07:38Z", "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10569,7 +10644,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:23:53Z", "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10590,7 +10665,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:52:15Z", "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10611,7 +10686,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:09:42Z", "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10632,7 +10707,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T03:25:14Z", "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10653,7 +10728,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:39:46Z", "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10674,7 +10749,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T03:56:41Z", "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10695,7 +10770,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:11:45Z", "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10716,7 +10791,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:30:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10737,7 +10812,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T05:56:56Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10758,7 +10833,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:13:31Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10779,7 +10854,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T06:08:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10800,7 +10875,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:53:04Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10821,7 +10896,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:02:37Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10842,7 +10917,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:35:19Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10863,7 +10938,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:53:31Z", "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10884,7 +10959,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:13:48Z", "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10905,7 +10980,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:44:23Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10926,7 +11001,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:33:57Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10947,7 +11022,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:49:17Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10968,7 +11043,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:47:00Z", "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -10989,7 +11064,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:26:01Z", "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11010,7 +11085,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:55:06Z", "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11031,7 +11106,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:08:41Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11052,7 +11127,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:05:13Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11073,7 +11148,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:09:38Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11094,7 +11169,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:24:10Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11115,7 +11190,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T00:10:43Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11136,7 +11211,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:19:29Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11157,7 +11232,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:25:03Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11178,7 +11253,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:53:26Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11199,7 +11274,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:13:48Z", "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11220,7 +11295,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:20:58Z", "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11241,7 +11316,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:15:48Z", "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11262,7 +11337,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:59:59Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11283,7 +11358,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:11:25Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11304,7 +11379,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:36:48Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11325,7 +11400,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T23:07:06Z", "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11346,7 +11421,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:12:03Z", "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11367,7 +11442,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T16:17:14Z", "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11388,7 +11463,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:22:51Z", "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11409,7 +11484,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T16:28:41Z", "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11430,7 +11505,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:34:14Z", "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11451,7 +11526,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:51:31Z", "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11472,7 +11547,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T17:14:52Z", "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11493,7 +11568,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:56:31Z", "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11514,7 +11589,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:17:47Z", "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11535,7 +11610,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:34:16Z", "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11556,7 +11631,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:39:47Z", "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:03Z", "restorableLocations": [ { "locationName": "West US", @@ -11577,7 +11652,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:57:46Z", "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11598,7 +11673,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:20:21Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11619,7 +11694,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:03:36Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11640,7 +11715,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:25:45Z", "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11661,7 +11736,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:38:04Z", "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11682,7 +11757,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:15:20Z", "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11703,7 +11778,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:32:53Z", "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11724,7 +11799,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:47:56Z", "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11745,7 +11820,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:03:59Z", "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11766,7 +11841,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:32:03Z", "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11787,7 +11862,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:52:26Z", "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11808,7 +11883,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:20:40Z", "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11829,7 +11904,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:38:27Z", "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11850,7 +11925,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:53:12Z", "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11871,7 +11946,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:09:33Z", "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11892,7 +11967,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:37:57Z", "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11913,7 +11988,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:56:24Z", "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11934,7 +12009,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:25:55Z", "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11955,7 +12030,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:41:00Z", "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11976,7 +12051,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:58:12Z", "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -11997,7 +12072,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:26:22Z", "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12018,7 +12093,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:42:49Z", "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12039,7 +12114,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:10:50Z", "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12060,7 +12135,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:30:03Z", "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12081,7 +12156,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:16:51Z", "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12102,7 +12177,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:27:53Z", "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12123,7 +12198,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:43:55Z", "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12144,7 +12219,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:09:16Z", "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12165,7 +12240,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:20:49Z", "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12186,7 +12261,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:36:32Z", "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12207,7 +12282,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:02:47Z", "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12228,7 +12303,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:18:01Z", "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12249,7 +12324,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:35:28Z", "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12270,7 +12345,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:05:15Z", "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12291,7 +12366,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:22:06Z", "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12312,7 +12387,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:50:20Z", "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12333,7 +12408,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T06:08:10Z", "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12354,7 +12429,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:39:44Z", "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12375,7 +12450,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:58:36Z", "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12396,7 +12471,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:15:43Z", "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12417,7 +12492,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:32:21Z", "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12438,7 +12513,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:00:25Z", "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12459,7 +12534,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:18:51Z", "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12480,7 +12555,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:48:00Z", "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12501,7 +12576,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:05:50Z", "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12522,7 +12597,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:21:06Z", "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12543,7 +12618,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:37:24Z", "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12564,7 +12639,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:06:04Z", "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12585,7 +12660,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:24:32Z", "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12606,7 +12681,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T10:53:20Z", "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12627,7 +12702,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:08:49Z", "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12648,7 +12723,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:26:24Z", "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12669,7 +12744,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:54:50Z", "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12690,7 +12765,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:11:15Z", "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12711,7 +12786,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:39:46Z", "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12732,7 +12807,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:48:58Z", "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12753,7 +12828,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:23Z", "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12774,7 +12849,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:16Z", "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12795,7 +12870,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:25Z", "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12816,7 +12891,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:53:13Z", "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12837,7 +12912,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:56:23Z", "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12858,7 +12933,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:56:45Z", "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12879,7 +12954,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:57:03Z", "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12900,7 +12975,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:06Z", "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12921,7 +12996,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:20Z", "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12942,7 +13017,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:26Z", "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12963,7 +13038,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:49:07Z", "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -12984,7 +13059,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:11:17Z", "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13005,7 +13080,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:54:33Z", "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13026,7 +13101,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:35:39Z", "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13047,7 +13122,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:51:56Z", "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13068,7 +13143,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:23:52Z", "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13089,7 +13164,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:40:27Z", "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13110,7 +13185,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:07:56Z", "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13131,7 +13206,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:19:51Z", "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13152,7 +13227,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:35:29Z", "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13173,7 +13248,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:00:14Z", "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13194,7 +13269,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:43Z", "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13215,7 +13290,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:28:23Z", "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13236,7 +13311,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T21:54:18Z", "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13257,7 +13332,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:13:06Z", "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13278,7 +13353,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:28:25Z", "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13299,7 +13374,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:45:26Z", "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13320,7 +13395,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:13:12Z", "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13341,7 +13416,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:32:37Z", "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13362,7 +13437,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:01:21Z", "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13383,7 +13458,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:19:33Z", "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13404,7 +13479,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:35:00Z", "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13425,7 +13500,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:51:03Z", "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13446,7 +13521,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:20:59Z", "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13467,7 +13542,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:39:12Z", "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13488,7 +13563,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:08:08Z", "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13509,7 +13584,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:23:44Z", "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13530,7 +13605,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:41:51Z", "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13551,7 +13626,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:09:53Z", "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13572,7 +13647,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:26:04Z", "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13593,7 +13668,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:54:19Z", "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13614,7 +13689,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:11:45Z", "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13635,7 +13710,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:26:38Z", "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13656,7 +13731,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:44:29Z", "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13677,7 +13752,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:13:59Z", "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13698,7 +13773,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:30:07Z", "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13719,7 +13794,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:58:40Z", "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13740,7 +13815,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:02:28Z", "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13761,7 +13836,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:16:23Z", "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13782,7 +13857,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:23:09Z", "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13803,7 +13878,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:54:49Z", "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13824,7 +13899,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:22:56Z", "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13845,7 +13920,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T14:54:41Z", "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13866,7 +13941,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:18:01Z", "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13887,7 +13962,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:52:34Z", "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13908,7 +13983,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T16:23:16Z", "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13929,7 +14004,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:18:16Z", "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13950,7 +14025,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:53:22Z", "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13971,7 +14046,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T21:10:14Z", "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -13992,7 +14067,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T20:25:24Z", "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14013,7 +14088,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T19:51:34Z", "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14034,7 +14109,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T13:44:29Z", "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14055,7 +14130,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T17:30:02Z", "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14076,7 +14151,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T18:12:05Z", "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14097,7 +14172,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:44:01Z", "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14118,7 +14193,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T14:06:05Z", "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14139,7 +14214,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:21:09Z", "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14160,7 +14235,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:42:47Z", "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14181,7 +14256,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:58:17Z", "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14202,7 +14277,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T21:20:39Z", "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14223,7 +14298,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:54:02Z", "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14244,7 +14319,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:16:14Z", "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14265,7 +14340,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:32:19Z", "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14286,7 +14361,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:54:08Z", "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14307,7 +14382,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:31:56Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14328,7 +14403,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:04Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14349,7 +14424,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:11:39Z", "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14370,7 +14445,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T18:31:49Z", "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14391,7 +14466,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:23:17Z", "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14412,7 +14487,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:07:24Z", "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14433,7 +14508,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:04:33Z", "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14454,7 +14529,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:07:31Z", "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14475,7 +14550,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:29:33Z", "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14496,7 +14571,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T02:59:33Z", "deletionTime": "2023-04-20T03:00:22Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14517,7 +14592,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:02:48Z", "deletionTime": "2023-04-20T03:25:34Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14538,7 +14613,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T03:24:53Z", "deletionTime": "2023-04-20T03:25:36Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14559,7 +14634,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T15:46:42Z", "deletionTime": "2023-04-20T15:47:35Z", - "oldestRestorableTime": "2023-03-21T20:02:36Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", "restorableLocations": [ { "locationName": "West US", @@ -14570,6 +14645,237 @@ ] } }, + { + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", + "properties": { + "accountName": "r-database-account-59", + "apiType": "Sql", + "creationTime": "2023-04-20T20:02:03Z", + "deletionTime": "2023-04-20T20:02:53Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z", + "deletionTime": "2023-04-20T20:02:53Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "deletionTime": "2023-04-20T20:28:56Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z", + "deletionTime": "2023-04-20T20:28:56Z" + } + ] + } + }, + { + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "properties": { + "accountName": "mks-ps-pna-disable", + "apiType": "Sql", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z" + } + ] + } + }, + { + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "properties": { + "accountName": "mks-cli-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z" + } + ] + } + }, + { + "name": "73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "properties": { + "accountName": "r-database-account-8662", + "apiType": "Sql", + "creationTime": "2023-04-21T01:11:02Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40ae612c-e5a5-4567-a7b3-d8cf456914e8", + "creationTime": "2023-04-21T01:11:03Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "4aaae931-db25-42d9-bd13-139f4758eded", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aaae931-db25-42d9-bd13-139f4758eded", + "properties": { + "accountName": "r-database-account-1680", + "apiType": "Sql", + "creationTime": "2023-04-20T20:13:32Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e356dbef-401c-495f-8395-51811a45809b", + "creationTime": "2023-04-20T20:13:33Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "deletionTime": "2023-04-21T01:12:01Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z", + "deletionTime": "2023-04-21T01:12:01Z" + } + ] + } + }, + { + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "properties": { + "accountName": "r-database-account-7671", + "apiType": "Sql", + "creationTime": "2023-04-20T15:44:05Z", + "deletionTime": "2023-04-21T01:12:12Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z", + "deletionTime": "2023-04-21T01:12:12Z" + } + ] + } + }, + { + "name": "b2935e20-0e04-4401-95bb-ca4d1256fb91", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b2935e20-0e04-4401-95bb-ca4d1256fb91", + "properties": { + "accountName": "r-database-account-6490", + "apiType": "Sql", + "creationTime": "2023-04-21T01:24:42Z", + "deletionTime": "2023-04-21T01:25:42Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4edd06be-b84f-43ea-9e41-e5987414c359", + "creationTime": "2023-04-21T01:24:43Z", + "deletionTime": "2023-04-21T01:25:42Z" + } + ] + } + }, + { + "name": "b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "properties": { + "accountName": "r-database-account-6025", + "apiType": "Sql", + "creationTime": "2023-04-21T01:36:17Z", + "deletionTime": "2023-04-21T01:59:57Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b210a4f2-0986-4cc5-a19a-9d2ff1376993", + "creationTime": "2023-04-21T01:36:18Z", + "deletionTime": "2023-04-21T01:59:57Z" + } + ] + } + }, + { + "name": "4e75098e-0b3e-4837-8426-7db845b314f8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e75098e-0b3e-4837-8426-7db845b314f8", + "properties": { + "accountName": "restoredaccount-6934", + "apiType": "Sql", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z", + "oldestRestorableTime": "2023-03-22T09:25:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6d90e3e7-84e4-4ea4-95a1-db32358e16b9", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z" + } + ] + } + }, { "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", "location": "East US", @@ -14579,7 +14885,7 @@ "accountName": "drop-continuous7", "apiType": "Sql", "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "East US", @@ -14598,7 +14904,7 @@ "accountName": "periodicacctdrop", "apiType": "Sql", "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T20:02:34Z", + "oldestRestorableTime": "2023-04-14T09:25:00Z", "restorableLocations": [ { "locationName": "East US", @@ -14617,7 +14923,7 @@ "accountName": "periodicacctdrop2", "apiType": "Sql", "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "East US", @@ -14636,7 +14942,7 @@ "accountName": "readregionrestore-1", "apiType": "Sql", "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:00Z", "restorableLocations": [ { "locationName": "Southeast Asia", @@ -14661,7 +14967,7 @@ "apiType": "MongoDB", "creationTime": "2023-03-27T17:28:08Z", "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "East US", @@ -14682,7 +14988,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:24:07Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14709,7 +15015,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:06:45Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -15084,7 +15390,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:45:59Z", "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -15105,7 +15411,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T20:15:03Z", "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T20:02:34Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -15125,7 +15431,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", "apiType": "Sql", "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -15144,7 +15450,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", "apiType": "Sql", "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T20:02:35Z", + "oldestRestorableTime": "2023-03-22T09:25:01Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -15158,46 +15464,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-59?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5595?api-version=2022-11-15-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-0704a5a1985a597d-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-fe4616345b7427e8-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b603d0bf7e9c596f2e5d1f8c8ddac534", + "x-ms-client-request-id": "ca0d2089a0149876ad897dfd0cdcb0f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:38 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 09:25:06 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c1fc270-8517-465b-bd03-cde9fbb8f1f9", + "x-ms-correlation-request-id": "f543ca3f-1716-4f86-a576-b1eb2fc64ad9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "916400b8-a43c-4c9b-8510-4e378d048fe4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200239Z:3c1fc270-8517-465b-bd03-cde9fbb8f1f9" + "x-ms-request-id": "1bbb26bf-549b-4472-a374-e4bf28dfbc83", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092507Z:f543ca3f-1716-4f86-a576-b1eb2fc64ad9" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-c693dbfc3ebc0608-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-beb16a4c48d7f48c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dcc1279dced798afbbcc4102ef9f8a26", + "x-ms-client-request-id": "02367bd482caeecc6a3f48c98e92e4b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15206,29 +15512,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:38 GMT", + "Date": "Fri, 21 Apr 2023 09:25:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3de01d62-2726-4269-a965-4f8399f3b065", + "x-ms-correlation-request-id": "e3c19676-69aa-4700-b695-943631f61e74", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "3de01d62-2726-4269-a965-4f8399f3b065", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200239Z:3de01d62-2726-4269-a965-4f8399f3b065" + "x-ms-request-id": "e3c19676-69aa-4700-b695-943631f61e74", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092507Z:e3c19676-69aa-4700-b695-943631f61e74" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-df0f6b4cf7cb1643-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-4d292a2750b1acae-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "50e88ee8eefa625baa3efdf56a75aed8", + "x-ms-client-request-id": "a35984407e08d419a79274d9371be5d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15237,29 +15543,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:39 GMT", + "Date": "Fri, 21 Apr 2023 09:25:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34098985-8064-40ac-8528-8c354b371014", + "x-ms-correlation-request-id": "be9f8a11-f125-4045-a297-3c81fb698a22", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "34098985-8064-40ac-8528-8c354b371014", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200240Z:34098985-8064-40ac-8528-8c354b371014" + "x-ms-request-id": "be9f8a11-f125-4045-a297-3c81fb698a22", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092508Z:be9f8a11-f125-4045-a297-3c81fb698a22" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-b38dff9b1c09d41c-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-b8fccf139701b0bb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "66ee8e5ee819825d4b619ff31b23d519", + "x-ms-client-request-id": "902905fcaea64b260887afbe6cafecc4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15268,29 +15574,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:41 GMT", + "Date": "Fri, 21 Apr 2023 09:25:08 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af43d1e3-96e0-4b63-883d-bb3e7db18702", + "x-ms-correlation-request-id": "f0d3498d-4dd5-424e-8a61-ef8a399ea653", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "af43d1e3-96e0-4b63-883d-bb3e7db18702", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200241Z:af43d1e3-96e0-4b63-883d-bb3e7db18702" + "x-ms-request-id": "f0d3498d-4dd5-424e-8a61-ef8a399ea653", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092509Z:f0d3498d-4dd5-424e-8a61-ef8a399ea653" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-fec6713732875903-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-a8f10121bfaa2412-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1b10ed1cae6dae96cb5e3298d0ba2e45", + "x-ms-client-request-id": "2e1ab755e97e557061615b370ef3b74f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15299,29 +15605,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:42 GMT", + "Date": "Fri, 21 Apr 2023 09:25:10 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6533a31b-4cb6-4ec9-8015-8fa02e72199d", + "x-ms-correlation-request-id": "570802bf-ba70-41b0-8bae-9fafb9a27b87", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "6533a31b-4cb6-4ec9-8015-8fa02e72199d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200243Z:6533a31b-4cb6-4ec9-8015-8fa02e72199d" + "x-ms-request-id": "570802bf-ba70-41b0-8bae-9fafb9a27b87", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092510Z:570802bf-ba70-41b0-8bae-9fafb9a27b87" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-91686fc93990ce14-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-e610a8a8163c2972-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "60a4681d24b0000c316504984f684687", + "x-ms-client-request-id": "89cc725a5468920b5d0d9a80ce5b68f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15330,29 +15636,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:44 GMT", + "Date": "Fri, 21 Apr 2023 09:25:12 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2f276d6-0898-4133-871d-28fcc69d72de", + "x-ms-correlation-request-id": "4d789ef8-9581-469d-916d-ce0fc6958d81", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "e2f276d6-0898-4133-871d-28fcc69d72de", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200245Z:e2f276d6-0898-4133-871d-28fcc69d72de" + "x-ms-request-id": "4d789ef8-9581-469d-916d-ce0fc6958d81", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092512Z:4d789ef8-9581-469d-916d-ce0fc6958d81" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-7a7e1e702de14b6a-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-35b9b747614ee1c2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7cd8e4699265b06bf8409bbab6c4b190", + "x-ms-client-request-id": "8084afa6b600125794d32e4452ee3c15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15361,29 +15667,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:48 GMT", + "Date": "Fri, 21 Apr 2023 09:25:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba24270b-b77c-40a8-9bc1-44198514e019", + "x-ms-correlation-request-id": "086fecf2-dd7a-4726-8481-270ec04d40cc", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "ba24270b-b77c-40a8-9bc1-44198514e019", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200249Z:ba24270b-b77c-40a8-9bc1-44198514e019" + "x-ms-request-id": "086fecf2-dd7a-4726-8481-270ec04d40cc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092516Z:086fecf2-dd7a-4726-8481-270ec04d40cc" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6ead7360b141e6ab-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-4fde85128be16c28-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b2d65932747ff868e010ea07a9fd5f63", + "x-ms-client-request-id": "f96460d062e2015bac88d1704fef8606", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15392,29 +15698,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:02:56 GMT", + "Date": "Fri, 21 Apr 2023 09:25:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01a3bf12-7bfb-4d97-a27c-8c253be90ce6", + "x-ms-correlation-request-id": "84d16371-669b-4cf5-8678-04254bfaca73", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "01a3bf12-7bfb-4d97-a27c-8c253be90ce6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200257Z:01a3bf12-7bfb-4d97-a27c-8c253be90ce6" + "x-ms-request-id": "84d16371-669b-4cf5-8678-04254bfaca73", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092524Z:84d16371-669b-4cf5-8678-04254bfaca73" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6c41a2c6a57970d2-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-3730117c51fb434f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ec2fab18b1e28ae0fdf4687089524a6d", + "x-ms-client-request-id": "5e9064f9366ea34e1bbaf59425c6406f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15423,29 +15729,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:03:13 GMT", + "Date": "Fri, 21 Apr 2023 09:25:40 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d157bef-f783-492c-93fb-83e41bcb4bf4", + "x-ms-correlation-request-id": "26eafdc8-f792-4ecc-bec7-95bb58d084be", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "1d157bef-f783-492c-93fb-83e41bcb4bf4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200313Z:1d157bef-f783-492c-93fb-83e41bcb4bf4" + "x-ms-request-id": "26eafdc8-f792-4ecc-bec7-95bb58d084be", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092541Z:26eafdc8-f792-4ecc-bec7-95bb58d084be" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-292d8c2cf8fcf692-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-932d82d6b485866b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f56573b39391f5087bdf9b55a86306fa", + "x-ms-client-request-id": "6eb085d06ff744145383d478e5e7c3a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15454,29 +15760,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:03:44 GMT", + "Date": "Fri, 21 Apr 2023 09:26:13 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "336e72d7-a2fd-481c-9367-31c67754e0e1", + "x-ms-correlation-request-id": "904c0a25-0a18-4f82-9973-b607c434c558", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "336e72d7-a2fd-481c-9367-31c67754e0e1", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200345Z:336e72d7-a2fd-481c-9367-31c67754e0e1" + "x-ms-request-id": "904c0a25-0a18-4f82-9973-b607c434c558", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092613Z:904c0a25-0a18-4f82-9973-b607c434c558" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-4d6eff099317d22b-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-85c1cadda3e2966e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0ba137e0c59581ae794bb58a0bf86f8e", + "x-ms-client-request-id": "ee4b284ddd5e99a612c0de286dc7dbe5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15485,29 +15791,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:04:17 GMT", + "Date": "Fri, 21 Apr 2023 09:26:45 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "767c438c-7c03-4ae1-badf-0786d8e407a5", + "x-ms-correlation-request-id": "4b87e4d3-fffc-44a7-bc34-da195ba7f586", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "767c438c-7c03-4ae1-badf-0786d8e407a5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200417Z:767c438c-7c03-4ae1-badf-0786d8e407a5" + "x-ms-request-id": "4b87e4d3-fffc-44a7-bc34-da195ba7f586", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092645Z:4b87e4d3-fffc-44a7-bc34-da195ba7f586" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-cc8f1966f2fcffed-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-8d417e817610fbde-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "36547cc66a9784d1a23a7102168be19a", + "x-ms-client-request-id": "ca9f6148173f890f4f4c0beb62d5be33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15516,29 +15822,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:04:49 GMT", + "Date": "Fri, 21 Apr 2023 09:27:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eb18b9b-e9c2-4790-8538-af4d9a92e10e", + "x-ms-correlation-request-id": "1803cdc3-7544-4812-bc98-bee45927688d", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "8eb18b9b-e9c2-4790-8538-af4d9a92e10e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200449Z:8eb18b9b-e9c2-4790-8538-af4d9a92e10e" + "x-ms-request-id": "1803cdc3-7544-4812-bc98-bee45927688d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092717Z:1803cdc3-7544-4812-bc98-bee45927688d" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-d87020820c9d819b-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-3c14966bc9809ea5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "518f6eee3eb0eed8c5e47b46de7de982", + "x-ms-client-request-id": "fc4750f6517bf311de175c3691ebd68c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15547,29 +15853,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:05:21 GMT", + "Date": "Fri, 21 Apr 2023 09:27:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ed1f417-70fb-46b7-bf2a-fd22fc2effad", + "x-ms-correlation-request-id": "ee3df2d4-aad9-483b-8095-d4c2711a0a17", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "6ed1f417-70fb-46b7-bf2a-fd22fc2effad", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200522Z:6ed1f417-70fb-46b7-bf2a-fd22fc2effad" + "x-ms-request-id": "ee3df2d4-aad9-483b-8095-d4c2711a0a17", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092749Z:ee3df2d4-aad9-483b-8095-d4c2711a0a17" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-be740095d76b72e8-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-835038c740cadb3e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2c8f0d70cf0e7662651d685a53ac6bee", + "x-ms-client-request-id": "8330efa7f948356519c19e11d2bb363c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15578,29 +15884,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:05:53 GMT", + "Date": "Fri, 21 Apr 2023 09:28:21 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b49bb06a-1338-4702-a441-ce61f16af85c", + "x-ms-correlation-request-id": "01555ced-344d-4a50-9dac-2f06a894ab5b", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "b49bb06a-1338-4702-a441-ce61f16af85c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200554Z:b49bb06a-1338-4702-a441-ce61f16af85c" + "x-ms-request-id": "01555ced-344d-4a50-9dac-2f06a894ab5b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092821Z:01555ced-344d-4a50-9dac-2f06a894ab5b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-80080fdc4612b085-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-e2c30fb9719694ad-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9d9c1a6a1d6987dea46571b3ee8ba625", + "x-ms-client-request-id": "1c32aa02df7ff66a50aceb28bbd8f863", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15609,29 +15915,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:06:25 GMT", + "Date": "Fri, 21 Apr 2023 09:28:53 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdbd055b-5398-463d-ac98-def4fce665ef", + "x-ms-correlation-request-id": "c51331b2-80c8-4905-8f01-c3a0ccfdc495", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "bdbd055b-5398-463d-ac98-def4fce665ef", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200626Z:bdbd055b-5398-463d-ac98-def4fce665ef" + "x-ms-request-id": "c51331b2-80c8-4905-8f01-c3a0ccfdc495", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092853Z:c51331b2-80c8-4905-8f01-c3a0ccfdc495" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-a610822c16d4b683-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-846855e14e4e7ab3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0891ee50b5fc1e8b0b18eb93d67d9a19", + "x-ms-client-request-id": "73447e753aa5fdebeb11e2b9b3ff2023", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15640,29 +15946,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:06:58 GMT", + "Date": "Fri, 21 Apr 2023 09:29:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "170734c5-c792-4b48-906e-b8e7fcaca788", + "x-ms-correlation-request-id": "58f1bfe9-ecf8-4b31-86ea-81fb975b20f9", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "170734c5-c792-4b48-906e-b8e7fcaca788", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200658Z:170734c5-c792-4b48-906e-b8e7fcaca788" + "x-ms-request-id": "58f1bfe9-ecf8-4b31-86ea-81fb975b20f9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092926Z:58f1bfe9-ecf8-4b31-86ea-81fb975b20f9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-3fb1607192405569-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-5253d264045ea3b6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c4db8d794be052192f0787a85eaf88da", + "x-ms-client-request-id": "e63320e0b9b9c70c843a329b0d3c7a41", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15671,29 +15977,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:07:30 GMT", + "Date": "Fri, 21 Apr 2023 09:29:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e80459ae-5d16-4aa8-a480-ae2be8cfdb32", + "x-ms-correlation-request-id": "58ecad5d-c56d-4eb2-a80e-476197d0810e", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "e80459ae-5d16-4aa8-a480-ae2be8cfdb32", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200730Z:e80459ae-5d16-4aa8-a480-ae2be8cfdb32" + "x-ms-request-id": "58ecad5d-c56d-4eb2-a80e-476197d0810e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092958Z:58ecad5d-c56d-4eb2-a80e-476197d0810e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-c11617aa3c2af82f-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-2bf0e0ed08f25e0a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "64094376621ab4f18e7e9251314ab027", + "x-ms-client-request-id": "539c3ac9c376c796bf34316efcb04251", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15702,29 +16008,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:08:02 GMT", + "Date": "Fri, 21 Apr 2023 09:30:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8554708-2b93-4d83-b63a-3ec7be6fa666", + "x-ms-correlation-request-id": "7b51357b-e0cf-453e-8d09-73e7e5468803", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "c8554708-2b93-4d83-b63a-3ec7be6fa666", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200802Z:c8554708-2b93-4d83-b63a-3ec7be6fa666" + "x-ms-request-id": "7b51357b-e0cf-453e-8d09-73e7e5468803", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093030Z:7b51357b-e0cf-453e-8d09-73e7e5468803" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-6c7191b1923238e3-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-8b8c3e92668f3ebf-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "603957cbe2af0544d53ed9f42de2bf5b", + "x-ms-client-request-id": "9b48c88b11a4bbaa727cee6b084fefae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15733,29 +16039,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:08:34 GMT", + "Date": "Fri, 21 Apr 2023 09:31:01 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d1292b5-d5ac-4784-865c-2f6c35923ce6", + "x-ms-correlation-request-id": "72074908-1a70-4fbe-ae63-6bed970304d4", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "9d1292b5-d5ac-4784-865c-2f6c35923ce6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200834Z:9d1292b5-d5ac-4784-865c-2f6c35923ce6" + "x-ms-request-id": "72074908-1a70-4fbe-ae63-6bed970304d4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093102Z:72074908-1a70-4fbe-ae63-6bed970304d4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-1a440c493764d72a-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-209e29c72698f2e9-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "931c118f357317fe9c263562b9c821e4", + "x-ms-client-request-id": "78efa197cc621cac896c2785889ecad4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15764,29 +16070,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:09:06 GMT", + "Date": "Fri, 21 Apr 2023 09:31:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aede5a24-d762-468c-858f-44e3f64d04e1", + "x-ms-correlation-request-id": "a245d8e6-789f-4b40-b03c-70bd77836631", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "aede5a24-d762-468c-858f-44e3f64d04e1", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200907Z:aede5a24-d762-468c-858f-44e3f64d04e1" + "x-ms-request-id": "a245d8e6-789f-4b40-b03c-70bd77836631", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093134Z:a245d8e6-789f-4b40-b03c-70bd77836631" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-dd229a381adb7e76-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-e5050d7afd4fbef6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "06dd60572875942afe048fdb88fd87ab", + "x-ms-client-request-id": "450fe0f7dff4b79c90e0e1f9d52bbf6f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15795,29 +16101,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:09:38 GMT", + "Date": "Fri, 21 Apr 2023 09:32:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dac60dd-dd34-4e9f-8928-bfe8c53c51d0", + "x-ms-correlation-request-id": "a10e2867-a3db-49b7-b7bc-2a264be095d8", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "6dac60dd-dd34-4e9f-8928-bfe8c53c51d0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T200939Z:6dac60dd-dd34-4e9f-8928-bfe8c53c51d0" + "x-ms-request-id": "a10e2867-a3db-49b7-b7bc-2a264be095d8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093206Z:a10e2867-a3db-49b7-b7bc-2a264be095d8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-898f224fb18bdf63-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-3fbd6a0027b838e6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "20c136be1d2e95b35922c488ace24b0d", + "x-ms-client-request-id": "5bd78344c9c1bfee1b2b1138ea2533d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15826,60 +16132,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:10:10 GMT", + "Date": "Fri, 21 Apr 2023 09:32:38 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3878882-d291-494d-8195-10e1c6330c6f", + "x-ms-correlation-request-id": "2ee4141f-3267-4689-88a7-4ae9996d882f", "x-ms-gatewayversion": "version=2.14.0", "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "e3878882-d291-494d-8195-10e1c6330c6f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201011Z:e3878882-d291-494d-8195-10e1c6330c6f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-52ef7a86e959cb7f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cd9df51db80567e6e788946fa6238e9e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:10:42 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3d35c17-ed19-43be-99ef-32d5ad68c189", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "c3d35c17-ed19-43be-99ef-32d5ad68c189", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201043Z:c3d35c17-ed19-43be-99ef-32d5ad68c189" + "x-ms-request-id": "2ee4141f-3267-4689-88a7-4ae9996d882f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093238Z:2ee4141f-3267-4689-88a7-4ae9996d882f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/916400b8-a43c-4c9b-8510-4e378d048fe4?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bbb26bf-549b-4472-a374-e4bf28dfbc83?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3ce9ed82e7fbd67b133a7affb7010221-425fa380531b5172-00", + "traceparent": "00-ca1e4c233983a13fafa8374277c35494-597bd3b7c801a983-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "83a3899f000639b6ad48ad5364a1e71c", + "x-ms-client-request-id": "27731ab2aa3fb8b90537e882ebb3465d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15888,16 +16163,16 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 20:11:15 GMT", + "Date": "Fri, 21 Apr 2023 09:33:10 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a4f0079-986d-4e64-9c86-c948d55dbf6e", + "x-ms-correlation-request-id": "4abf7a2b-79bf-458a-b242-bc5a00c5d0de", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "1a4f0079-986d-4e64-9c86-c948d55dbf6e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T201115Z:1a4f0079-986d-4e64-9c86-c948d55dbf6e" + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "4abf7a2b-79bf-458a-b242-bc5a00c5d0de", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093310Z:4abf7a2b-79bf-458a-b242-bc5a00c5d0de" }, "ResponseBody": { "status": "Succeeded" @@ -15906,7 +16181,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "750368943", + "RandomSeed": "2100585950", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountListAsync.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountListAsync.json index a9fa32de1555..8310b80fec16 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountListAsync.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountListAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6716?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6972?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-75ce26b6ea153580eef36e19807cc9cd-37c3ef4d3758f92d-00", + "traceparent": "00-5d0b75d24bb6e7c73b0f608698ed046a-553971b052c7d4e0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "48f7b880a25b7182a13e6542797e1ad6", + "x-ms-client-request-id": "badc315c723dd998f1cf1228c3aa82e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 02:57:11 GMT", + "Date": "Fri, 21 Apr 2023 10:19:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95c71ac0-dc8e-4ddc-931b-ca0fbc43ef08", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "95c71ac0-dc8e-4ddc-931b-ca0fbc43ef08", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025712Z:95c71ac0-dc8e-4ddc-931b-ca0fbc43ef08" + "x-ms-correlation-request-id": "61c7dddf-5469-495e-8f46-d26ddf4b2a48", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "61c7dddf-5469-495e-8f46-d26ddf4b2a48", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101918Z:61c7dddf-5469-495e-8f46-d26ddf4b2a48" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716", - "name": "dbaccount-6716", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972", + "name": "dbaccount-6972", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-0d5881c299f1c870-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-dbd94b38642ad204-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8a683b0ac2bd85a8e0a9a1578de1ffd3", + "x-ms-client-request-id": "c91231b03671d7c615b2ba844cf2c91c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "2410", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:19 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132/operationResults/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:19:25 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799/operationResults/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b98e71ce-4098-4fa5-881d-39841fa5d84c", + "x-ms-correlation-request-id": "bbeed78c-4f80-4030-a5d8-0d9893d12775", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a0e5839d-be2e-4e0a-a5ca-234960e4d6cd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025719Z:b98e71ce-4098-4fa5-881d-39841fa5d84c" + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101926Z:bbeed78c-4f80-4030-a5d8-0d9893d12775" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132", - "name": "r-database-account-5132", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799", + "name": "r-database-account-6799", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T02:57:17.2834254Z" + "createdAt": "2023-04-21T10:19:23.9304543Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "aeb8c455-4d77-45bd-a193-a84dded67185", + "instanceId": "b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T02:57:17.2834254Z" + "generationTime": "2023-04-21T10:19:23.9304543Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T02:57:17.2834254Z" + "generationTime": "2023-04-21T10:19:23.9304543Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T02:57:17.2834254Z" + "generationTime": "2023-04-21T10:19:23.9304543Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T02:57:17.2834254Z" + "generationTime": "2023-04-21T10:19:23.9304543Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-3a7523bcde9f908c-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-02b6501621e2c5d1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b3a7d636c6e7f5c34ec37bf8e11a145c", + "x-ms-client-request-id": "ffd7b0bf76d5fbeb16e227bfdd55a4dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:19 GMT", + "Date": "Fri, 21 Apr 2023 10:19:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abba6ad0-0588-420f-a8c2-ca5879a77555", + "x-ms-correlation-request-id": "6d94ce07-b674-4a17-a88f-611ef4a35ac1", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "abba6ad0-0588-420f-a8c2-ca5879a77555", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025719Z:abba6ad0-0588-420f-a8c2-ca5879a77555" + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "6d94ce07-b674-4a17-a88f-611ef4a35ac1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101926Z:6d94ce07-b674-4a17-a88f-611ef4a35ac1" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-d346a505cceb281a-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-f694ae8c6a9e6a9c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "32966e66dfb3076f199c6a512071ee3f", + "x-ms-client-request-id": "92b80b49694157ec215de7668c296e8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:20 GMT", + "Date": "Fri, 21 Apr 2023 10:19:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2d0888b-ba18-415f-8872-d9c7b2fba8cf", + "x-ms-correlation-request-id": "f6be04e9-f6f0-4c05-a476-02b73da7ad3a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "e2d0888b-ba18-415f-8872-d9c7b2fba8cf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025720Z:e2d0888b-ba18-415f-8872-d9c7b2fba8cf" + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "f6be04e9-f6f0-4c05-a476-02b73da7ad3a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101927Z:f6be04e9-f6f0-4c05-a476-02b73da7ad3a" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-b1a1b373560d530e-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-bb3fc909ff428d2f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b620b2514c3a1dec8871a7548828ea05", + "x-ms-client-request-id": "9cc487adc91b94472d4563213050d78c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:21 GMT", + "Date": "Fri, 21 Apr 2023 10:19:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd6d4e8a-10bf-457e-b001-923dbe1e45e4", + "x-ms-correlation-request-id": "c2e7873e-2765-45ea-a18f-d764dad80486", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "cd6d4e8a-10bf-457e-b001-923dbe1e45e4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025721Z:cd6d4e8a-10bf-457e-b001-923dbe1e45e4" + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "c2e7873e-2765-45ea-a18f-d764dad80486", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101928Z:c2e7873e-2765-45ea-a18f-d764dad80486" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-11c1cf7d1d4cfbfb-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-66bb39142dabcb58-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "27d045582509573a669f994a5b71d5dd", + "x-ms-client-request-id": "5d53cc6672ce55f1c37fde778e846eec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:22 GMT", + "Date": "Fri, 21 Apr 2023 10:19:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e91487f-31fc-4cec-8c31-f5a6343e1114", + "x-ms-correlation-request-id": "570cd00f-33f3-4d7b-9fe9-5a6323ff4bf8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "1e91487f-31fc-4cec-8c31-f5a6343e1114", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025723Z:1e91487f-31fc-4cec-8c31-f5a6343e1114" + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "570cd00f-33f3-4d7b-9fe9-5a6323ff4bf8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101929Z:570cd00f-33f3-4d7b-9fe9-5a6323ff4bf8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-e97b841431fd2e6d-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-3765a1900b38cefa-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2ea73bd45df91a218279a941371b7ef1", + "x-ms-client-request-id": "5511997408907fc1c42464fc05ca26d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:25 GMT", + "Date": "Fri, 21 Apr 2023 10:19:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bade908-c0af-44fa-8449-148d29a631b9", + "x-ms-correlation-request-id": "650d9758-712c-4ad5-b2f9-8ce29bd830e2", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "6bade908-c0af-44fa-8449-148d29a631b9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025725Z:6bade908-c0af-44fa-8449-148d29a631b9" + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "650d9758-712c-4ad5-b2f9-8ce29bd830e2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101931Z:650d9758-712c-4ad5-b2f9-8ce29bd830e2" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-5dceaa0d2b79d5c7-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-bd17a0390168aabd-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "daf965b1c6a12c3677c9509ab2a1c116", + "x-ms-client-request-id": "bfff5b8510d53bbf956fd89beacf06a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:29 GMT", + "Date": "Fri, 21 Apr 2023 10:19:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1246204-bb3a-40d7-8c3d-70a55549a0e8", + "x-ms-correlation-request-id": "8c536f2c-085b-4dcf-81d3-fa797e24bcbb", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c1246204-bb3a-40d7-8c3d-70a55549a0e8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025729Z:c1246204-bb3a-40d7-8c3d-70a55549a0e8" + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "8c536f2c-085b-4dcf-81d3-fa797e24bcbb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101936Z:8c536f2c-085b-4dcf-81d3-fa797e24bcbb" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-447218d15dc47432-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-a0f8f15942899941-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4d7fca9cbc81fa0c24b6a5907cf91f4a", + "x-ms-client-request-id": "97ad77d6813e5efc0bd399aa0df54ff9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:37 GMT", + "Date": "Fri, 21 Apr 2023 10:19:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94a75994-87fe-4b2f-bd62-164ebe2ca651", + "x-ms-correlation-request-id": "2317f92b-46cf-4bdd-b5f2-6d67f89264b1", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "94a75994-87fe-4b2f-bd62-164ebe2ca651", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025737Z:94a75994-87fe-4b2f-bd62-164ebe2ca651" + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "2317f92b-46cf-4bdd-b5f2-6d67f89264b1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101944Z:2317f92b-46cf-4bdd-b5f2-6d67f89264b1" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-68da656fd458dde5-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-7f58b5a55417b522-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f699a820fa780e3c057bb62f0c8667e1", + "x-ms-client-request-id": "33f10d58af856316dad6c0202f2594f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:57:53 GMT", + "Date": "Fri, 21 Apr 2023 10:19:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e905b7b-a3fd-4360-b803-3ad0d341977b", + "x-ms-correlation-request-id": "8bfef34f-9389-4819-b07e-98eec433a3f7", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "9e905b7b-a3fd-4360-b803-3ad0d341977b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025753Z:9e905b7b-a3fd-4360-b803-3ad0d341977b" + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "8bfef34f-9389-4819-b07e-98eec433a3f7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102000Z:8bfef34f-9389-4819-b07e-98eec433a3f7" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-b295c73c0ca1544f-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-2f8414f4b56dc7e5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6da592b7319bf56f58feb6ea21a5b07e", + "x-ms-client-request-id": "8e26bc1d8f1d04925ea0b30277142da0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:58:25 GMT", + "Date": "Fri, 21 Apr 2023 10:20:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24579a0c-28da-47cc-901d-31b850a6c810", + "x-ms-correlation-request-id": "859a7d27-79de-4c53-b717-fadfbf33144c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "24579a0c-28da-47cc-901d-31b850a6c810", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025825Z:24579a0c-28da-47cc-901d-31b850a6c810" + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "859a7d27-79de-4c53-b717-fadfbf33144c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102032Z:859a7d27-79de-4c53-b717-fadfbf33144c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-fb1c735bd81cadbb-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-41588911008046ca-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0a7906aacb08a19e8e71470605dcee9d", + "x-ms-client-request-id": "dc42de20d2dd2723604abc67c1db2ee6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:58:57 GMT", + "Date": "Fri, 21 Apr 2023 10:21:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c501ddcc-0a92-453b-bd93-fcff1d1923f2", + "x-ms-correlation-request-id": "b94157fd-ba66-4d75-a770-17cd1100e0ff", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "c501ddcc-0a92-453b-bd93-fcff1d1923f2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025857Z:c501ddcc-0a92-453b-bd93-fcff1d1923f2" + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "b94157fd-ba66-4d75-a770-17cd1100e0ff", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102104Z:b94157fd-ba66-4d75-a770-17cd1100e0ff" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-b7a37488e3648de9-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-f41fbb4fa10d39de-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e9d9c34eb253eeae38a39d7a4351ec5f", + "x-ms-client-request-id": "518ca33ec1cec8dc7bedd4e4fb14ebc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,29 +539,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 02:59:29 GMT", + "Date": "Fri, 21 Apr 2023 10:21:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e8b7834-cc17-4b5e-a0f1-b63918cad6a0", + "x-ms-correlation-request-id": "60f8a671-68aa-4157-8886-2edcc009d7c0", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "7e8b7834-cc17-4b5e-a0f1-b63918cad6a0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025929Z:7e8b7834-cc17-4b5e-a0f1-b63918cad6a0" + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "60f8a671-68aa-4157-8886-2edcc009d7c0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102136Z:60f8a671-68aa-4157-8886-2edcc009d7c0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0e5839d-be2e-4e0a-a5ca-234960e4d6cd?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed6dc4f0-1ae8-4291-af6a-4bb8b56ffc4d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-80bc7d7da01ed5cb-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-88a48ac27e0ed6a6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "058537cb5d0debd9f403de2aea69f07c", + "x-ms-client-request-id": "50001fa9b7e24b1898ff2dd2d22a4282", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,29 +570,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:01 GMT", + "Date": "Fri, 21 Apr 2023 10:22:08 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93e69a5f-e1b2-4e82-9921-b8806e0aa023", + "x-ms-correlation-request-id": "3afadc3f-0ce9-43f8-b90c-57e4e95f15fb", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "93e69a5f-e1b2-4e82-9921-b8806e0aa023", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030002Z:93e69a5f-e1b2-4e82-9921-b8806e0aa023" + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "3afadc3f-0ce9-43f8-b90c-57e4e95f15fb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102208Z:3afadc3f-0ce9-43f8-b90c-57e4e95f15fb" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-881524365118b5272c7c9dd15f26f059-6b32609cade29d68-00", + "traceparent": "00-82bfd170ab7697a7da6a46425b14e210-510fe54727501569-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5d9c190fc6ccf82b578ad1642d235d3d", + "x-ms-client-request-id": "d3c3cd72dc875fd1027961effd3f2b4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -601,31 +601,31 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "2838", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:02 GMT", + "Date": "Fri, 21 Apr 2023 10:22:08 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b66d61b8-efc4-4d0f-9b6c-94cbd08aef9a", + "x-ms-correlation-request-id": "fe48fbea-3d94-4cfc-bf49-f38123a2d02c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "b66d61b8-efc4-4d0f-9b6c-94cbd08aef9a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030002Z:b66d61b8-efc4-4d0f-9b6c-94cbd08aef9a" + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "fe48fbea-3d94-4cfc-bf49-f38123a2d02c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102209Z:fe48fbea-3d94-4cfc-bf49-f38123a2d02c" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132", - "name": "r-database-account-5132", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799", + "name": "r-database-account-6799", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T02:59:32.8440331Z" + "createdAt": "2023-04-21T10:21:32.5023247Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-5132.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-5132.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-6799.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-6799.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +639,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "aeb8c455-4d77-45bd-a193-a84dded67185", + "instanceId": "b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +657,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-5132-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-6799-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +667,9 @@ ], "readLocations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-5132-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-6799-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +677,9 @@ ], "locations": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-5132-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-6799-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +687,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-5132-westus", + "id": "r-database-account-6799-westus", "locationName": "West US", "failoverPriority": 0 } @@ -711,16 +711,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T02:59:32.8440331Z" + "generationTime": "2023-04-21T10:21:32.5023247Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T02:59:32.8440331Z" + "generationTime": "2023-04-21T10:21:32.5023247Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T02:59:32.8440331Z" + "generationTime": "2023-04-21T10:21:32.5023247Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T02:59:32.8440331Z" + "generationTime": "2023-04-21T10:21:32.5023247Z" } } }, @@ -735,9 +735,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d80e6d458185928ba0460be7ed338e7-3438b2e6cca04ff9-00", + "traceparent": "00-9a7f11bc881df79858042f55d14dffc3-380018446aae2bd6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cd3ae884e856f18feaedf44fd38404cf", + "x-ms-client-request-id": "a2bef65edddb86038b41b8cf9309f551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +746,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:00:02 GMT", + "Date": "Fri, 21 Apr 2023 10:22:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45da7734-d8b3-42c5-94b3-e36d1969edd0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "45da7734-d8b3-42c5-94b3-e36d1969edd0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030002Z:45da7734-d8b3-42c5-94b3-e36d1969edd0" + "x-ms-correlation-request-id": "1d0996f5-41b6-4e8b-928c-0ec877eed156", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "1d0996f5-41b6-4e8b-928c-0ec877eed156", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102209Z:1d0996f5-41b6-4e8b-928c-0ec877eed156" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -782,21 +782,21 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2a6b21b38fb504930c8dae828b74bed0", + "x-ms-client-request-id": "2d7251ab1851cd3e4da14e6856284d59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "469478", + "Content-Length": "492906", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:00:06 GMT", + "Date": "Fri, 21 Apr 2023 10:22:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5ac4952-7570-4c37-8ca1-256b29be1231", + "x-ms-correlation-request-id": "e1c33ca2-2ee6-4484-b936-3649d9016c73", "x-ms-original-request-ids": [ "", "", @@ -837,9 +837,9 @@ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e5ac4952-7570-4c37-8ca1-256b29be1231", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030006Z:e5ac4952-7570-4c37-8ca1-256b29be1231" + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "e1c33ca2-2ee6-4484-b936-3649d9016c73", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102213Z:e1c33ca2-2ee6-4484-b936-3649d9016c73" }, "ResponseBody": { "value": [ @@ -852,7 +852,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -871,7 +871,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -890,7 +890,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -909,7 +909,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -928,7 +928,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -947,7 +947,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -966,7 +966,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -985,7 +985,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1004,7 +1004,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1023,7 +1023,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1042,7 +1042,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1061,7 +1061,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1080,7 +1080,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1104,7 +1104,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1114,44 +1114,6 @@ ] } }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, { "name": "2217666b-a543-4788-adf9-f8059e864343", "location": "West Central US", @@ -1204,7 +1166,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1231,7 +1193,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1306,7 +1268,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1333,7 +1295,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1354,7 +1316,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1444,7 +1406,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1465,7 +1427,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1486,7 +1448,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1507,7 +1469,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1528,7 +1490,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1555,7 +1517,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1576,7 +1538,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1597,7 +1559,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1618,7 +1580,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1645,7 +1607,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1666,7 +1628,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1714,7 +1676,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1735,7 +1697,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1756,7 +1718,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1777,7 +1739,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1798,7 +1760,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1819,7 +1781,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1840,7 +1802,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1861,7 +1823,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1882,7 +1844,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1903,7 +1865,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1924,7 +1886,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1945,7 +1907,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1966,7 +1928,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1987,7 +1949,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2008,7 +1970,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2029,7 +1991,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2050,7 +2012,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2071,7 +2033,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2092,7 +2054,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2113,7 +2075,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2134,7 +2096,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2155,7 +2117,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2176,7 +2138,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2197,7 +2159,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2218,7 +2180,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2239,7 +2201,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2260,7 +2222,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2281,7 +2243,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2302,7 +2264,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2323,7 +2285,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2344,7 +2306,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2365,7 +2327,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2386,7 +2348,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2407,7 +2369,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2428,7 +2390,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2449,7 +2411,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2470,7 +2432,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2491,7 +2453,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2512,7 +2474,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2533,7 +2495,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2554,7 +2516,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2575,7 +2537,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2596,7 +2558,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2617,7 +2579,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2638,7 +2600,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2659,7 +2621,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2680,7 +2642,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2701,7 +2663,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2722,7 +2684,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2743,7 +2705,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:32:15Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2764,7 +2726,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T01:47:59Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2775,6 +2737,321 @@ ] } }, + { + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "properties": { + "accountName": "r-database-account-1146", + "apiType": "Sql", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" + } + ] + } + }, + { + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "properties": { + "accountName": "restoredaccount-2866", + "apiType": "Sql", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" + } + ] + } + }, + { + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "properties": { + "accountName": "r-database-account-2733", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" + } + ] + } + }, + { + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "properties": { + "accountName": "restoredaccount-3296", + "apiType": "Sql", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" + } + ] + } + }, + { + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", + "properties": { + "accountName": "r-database-account-1488", + "apiType": "Sql", + "creationTime": "2023-04-20T17:39:33Z", + "deletionTime": "2023-04-20T18:58:46Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z", + "deletionTime": "2023-04-20T18:58:46Z" + } + ] + } + }, + { + "name": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7eacbb40-8bdb-406d-8575-558cd9b354f9", + "properties": { + "accountName": "restoredaccount-2310", + "apiType": "Sql", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f9737a8e-afaf-4854-8c7b-f329e07f46f9", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z" + } + ] + } + }, + { + "name": "f591e4b2-9c04-469d-afe6-a2b193a58e47", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", + "properties": { + "accountName": "r-database-account-4943", + "apiType": "Sql", + "creationTime": "2023-04-20T20:19:57Z", + "deletionTime": "2023-04-20T21:39:27Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "92e8f4e6-8eda-4927-b6ac-c1c04818becd", + "creationTime": "2023-04-20T20:19:58Z", + "deletionTime": "2023-04-20T21:39:27Z" + } + ] + } + }, + { + "name": "fe240915-dab9-40fb-8e13-34442caac7ad", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fe240915-dab9-40fb-8e13-34442caac7ad", + "properties": { + "accountName": "restoredaccount-5177", + "apiType": "Sql", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "27017eec-528f-405d-bf07-b58a96de8c58", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z" + } + ] + } + }, + { + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "properties": { + "accountName": "r-database-account-8195", + "apiType": "Sql", + "creationTime": "2023-04-20T19:59:26Z", + "deletionTime": "2023-04-21T01:12:17Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z", + "deletionTime": "2023-04-21T01:12:17Z" + } + ] + } + }, + { + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "properties": { + "accountName": "r-database-account-7066", + "apiType": "Sql", + "creationTime": "2023-04-19T23:41:57Z", + "deletionTime": "2023-04-21T01:12:23Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z", + "deletionTime": "2023-04-21T01:12:23Z" + } + ] + } + }, + { + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", + "properties": { + "accountName": "r-database-account-6809", + "apiType": "Sql", + "creationTime": "2023-04-17T19:29:22Z", + "deletionTime": "2023-04-21T01:12:28Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z", + "deletionTime": "2023-04-21T01:12:28Z" + } + ] + } + }, + { + "name": "144aa61f-d16f-4aae-a275-11ef72fb1190", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/144aa61f-d16f-4aae-a275-11ef72fb1190", + "properties": { + "accountName": "r-database-account-4142", + "apiType": "Sql", + "creationTime": "2023-04-21T06:00:50Z", + "deletionTime": "2023-04-21T07:19:35Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8db86752-ff62-4c0e-9333-bdefa734e812", + "creationTime": "2023-04-21T06:00:51Z", + "deletionTime": "2023-04-21T07:19:35Z" + } + ] + } + }, + { + "name": "c687e62c-ec09-4efc-9342-23ae350e7740", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c687e62c-ec09-4efc-9342-23ae350e7740", + "properties": { + "accountName": "restoredaccount-1645", + "apiType": "Sql", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e66835c-deac-47de-95da-b865c7b0a129", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z" + } + ] + } + }, + { + "name": "fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "properties": { + "accountName": "r-database-account-2653", + "apiType": "Sql", + "creationTime": "2023-04-21T07:42:52Z", + "deletionTime": "2023-04-21T09:02:00Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "49d49eef-34f6-4e5e-8adf-82c0fbbf381b", + "creationTime": "2023-04-21T07:42:53Z", + "deletionTime": "2023-04-21T09:02:00Z" + } + ] + } + }, + { + "name": "59716638-e531-4fc3-b214-f841cd6c1a32", + "location": "West Central US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/59716638-e531-4fc3-b214-f841cd6c1a32", + "properties": { + "accountName": "restoredaccount-4970", + "apiType": "Sql", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "7f2297ad-a930-4a38-aedc-cbe192ccb9eb", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z" + } + ] + } + }, { "name": "d88e6a3c-687d-4990-a516-da739070bf81", "location": "North Central US", @@ -2784,7 +3061,7 @@ "accountName": "kal-continuous7", "apiType": "Sql", "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2803,7 +3080,7 @@ "accountName": "kal-continuous7-restored1", "apiType": "Sql", "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2822,7 +3099,7 @@ "accountName": "kal-continuous7-demorestore", "apiType": "Sql", "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2841,7 +3118,7 @@ "accountName": "test-billing-continuous30", "apiType": "Sql", "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2870,7 +3147,7 @@ "accountName": "new-cosmsosdb-account", "apiType": "Sql", "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2890,7 +3167,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:22:22Z", "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2916,7 +3193,7 @@ "accountName": "vinh-periodic", "apiType": "Sql", "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -2935,7 +3212,7 @@ "accountName": "databaseaccount9284", "apiType": "Sql", "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -2954,7 +3231,7 @@ "accountName": "databaseaccount6234", "apiType": "Sql", "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -2973,7 +3250,7 @@ "accountName": "databaseaccount8251", "apiType": "Sql", "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -2992,7 +3269,7 @@ "accountName": "sql-portal-test", "apiType": "Sql", "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -3011,7 +3288,7 @@ "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "Central US", @@ -3035,7 +3312,7 @@ "accountName": "databaseaccount2058", "apiType": "MongoDB", "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3054,7 +3331,7 @@ "accountName": "vinh-demo-periodic", "apiType": "Sql", "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T03:00:03Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3073,7 +3350,7 @@ "accountName": "vinh-demo-continous30", "apiType": "Sql", "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T03:00:03Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3092,7 +3369,7 @@ "accountName": "vinh-demo-continous7", "apiType": "Sql", "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T03:00:03Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3111,7 +3388,7 @@ "accountName": "vinh-demo-periodic2", "apiType": "Sql", "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T03:00:03Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3130,7 +3407,7 @@ "accountName": "vinh-demo-continous7-2", "apiType": "Sql", "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T03:00:03Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3150,7 +3427,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:56:09Z", "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3171,7 +3448,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T19:36:38Z", "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3192,7 +3469,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:41:14Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3213,7 +3490,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:22:17Z", "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3234,7 +3511,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T13:41:40Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3255,7 +3532,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:01:14Z", "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3276,7 +3553,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T14:50:51Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3297,7 +3574,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:09:14Z", "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West US 2", @@ -3337,7 +3614,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:18Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3358,7 +3635,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T15:42:44Z", "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3379,7 +3656,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:04:54Z", "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3400,7 +3677,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:45:16Z", "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3421,7 +3698,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:01:08Z", "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3442,7 +3719,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:31Z", "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3613,7 +3890,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:46:48Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3634,7 +3911,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T22:25:06Z", "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3655,7 +3932,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T16:05:21Z", "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3676,7 +3953,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T15:43:38Z", "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3781,7 +4058,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:52:17Z", "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3802,7 +4079,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T17:33:20Z", "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3823,7 +4100,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T19:26:23Z", "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3844,7 +4121,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:12:03Z", "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3865,7 +4142,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T20:25:32Z", "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3886,7 +4163,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:36:05Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3907,7 +4184,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T20:54:57Z", "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3928,7 +4205,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T21:56:14Z", "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3949,7 +4226,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T22:04:54Z", "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -3970,7 +4247,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:25:42Z", "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4054,7 +4331,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:26:49Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4075,7 +4352,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:07:29Z", "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4096,7 +4373,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T14:32:21Z", "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4117,7 +4394,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:39:15Z", "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4138,7 +4415,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T15:57:50Z", "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4159,7 +4436,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T16:51:53Z", "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4180,7 +4457,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-14T16:59:34Z", "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4201,7 +4478,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-14T17:07:39Z", "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4222,7 +4499,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T17:16:06Z", "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4306,7 +4583,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:30:44Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4327,7 +4604,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T18:08:00Z", "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4348,7 +4625,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-14T18:36:04Z", "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US 2", @@ -4368,7 +4645,7 @@ "accountName": "aholdtest", "apiType": "MongoDB", "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Europe", @@ -4387,7 +4664,7 @@ "accountName": "targetacct112", "apiType": "Sql", "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4406,7 +4683,7 @@ "accountName": "pitrmongotest", "apiType": "MongoDB", "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4425,7 +4702,7 @@ "accountName": "pitrmongowithsnapshots", "apiType": "MongoDB", "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4444,7 +4721,7 @@ "accountName": "test0319-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4468,7 +4745,7 @@ "accountName": "pitracctdemo2", "apiType": "Sql", "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4487,7 +4764,7 @@ "accountName": "ptr-target", "apiType": "Sql", "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4506,7 +4783,7 @@ "accountName": "pitrmongotest-restore", "apiType": "MongoDB", "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4525,7 +4802,7 @@ "accountName": "pitrdemo1015", "apiType": "Sql", "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4544,7 +4821,7 @@ "accountName": "pitrdemorestored1015", "apiType": "Sql", "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4563,7 +4840,7 @@ "accountName": "subbannageeta", "apiType": "Sql", "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4587,7 +4864,7 @@ "accountName": "scottkirill", "apiType": "Sql", "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4606,7 +4883,7 @@ "accountName": "test0319-pitr-r1", "apiType": "Sql", "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4625,7 +4902,7 @@ "accountName": "onboardingtestaccount0124", "apiType": "Sql", "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4644,7 +4921,7 @@ "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4663,7 +4940,7 @@ "accountName": "vinh-table2-restore", "apiType": "Table, Sql", "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4682,7 +4959,7 @@ "accountName": "vinhpitr30-cli", "apiType": "Sql", "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4701,7 +4978,7 @@ "accountName": "vinhperiodic3-cli", "apiType": "Sql", "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4720,7 +4997,7 @@ "accountName": "vinh-pitr7-portal", "apiType": "Sql", "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4739,7 +5016,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7", "apiType": "Sql", "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4758,7 +5035,7 @@ "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", "apiType": "Sql", "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4777,7 +5054,7 @@ "accountName": "vinh-periodic-again", "apiType": "Sql", "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4796,7 +5073,7 @@ "accountName": "vinh-periodic-again2", "apiType": "Sql", "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4815,7 +5092,7 @@ "accountName": "vinh-gremlin-again", "apiType": "Gremlin, Sql", "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4834,7 +5111,7 @@ "accountName": "vinh-table-tennis-cli-0190", "apiType": "Table, Sql", "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4853,7 +5130,7 @@ "accountName": "ddhamothsqlpitracc", "apiType": "Sql", "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4872,7 +5149,7 @@ "accountName": "ddhamothmongopitracc", "apiType": "MongoDB", "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4891,7 +5168,7 @@ "accountName": "dsapaligadbkeytest", "apiType": "Sql", "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4910,7 +5187,7 @@ "accountName": "ddhamothpitrsqlacc2", "apiType": "Sql", "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4929,7 +5206,7 @@ "accountName": "vinkumsql", "apiType": "Sql", "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4948,7 +5225,7 @@ "accountName": "dsapaliga-monitor-test2", "apiType": "Sql", "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4967,7 +5244,7 @@ "accountName": "nikhiltestmig", "apiType": "Sql", "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -4991,7 +5268,7 @@ "accountName": "nikhil-multi-region-pitr", "apiType": "Sql", "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5010,7 +5287,7 @@ "accountName": "test-account23", "apiType": "Sql", "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5034,7 +5311,7 @@ "accountName": "testpitr", "apiType": "Sql", "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5053,7 +5330,7 @@ "accountName": "readregionrestore-test", "apiType": "Sql", "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "North Central US", @@ -5072,7 +5349,7 @@ "accountName": "vinhpitr30-cli-arm-restore", "apiType": "Sql", "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T03:00:04Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5091,7 +5368,7 @@ "accountName": "grem-test", "apiType": "Gremlin, Sql", "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5110,7 +5387,7 @@ "accountName": "mongo-test-1", "apiType": "MongoDB", "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5129,7 +5406,7 @@ "accountName": "sql-test-1", "apiType": "Sql", "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5148,7 +5425,7 @@ "accountName": "tables-test-1", "apiType": "Table, Sql", "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5205,7 +5482,7 @@ "accountName": "dsapaliga-xrr-test", "apiType": "Sql", "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5224,7 +5501,7 @@ "accountName": "dsapaliga-xrr-cli2", "apiType": "Sql", "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T03:00:04Z", + "oldestRestorableTime": "2023-04-14T10:22:10Z", "restorableLocations": [ { "locationName": "West US", @@ -5791,20 +6068,58 @@ } }, { - "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "name": "e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "properties": { - "accountName": "r-database-account-5132", + "accountName": "r-database-account-848", "apiType": "Sql", - "creationTime": "2023-04-20T02:59:33Z", - "oldestRestorableTime": "2023-04-20T02:59:33Z", + "creationTime": "2023-04-21T01:16:43Z", + "oldestRestorableTime": "2023-04-21T01:16:43Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", - "creationTime": "2023-04-20T02:59:34Z" + "regionalDatabaseAccountInstanceId": "65cc97fd-c609-4c1f-b1b3-f4aa18afb791", + "creationTime": "2023-04-21T01:16:44Z" + } + ] + } + }, + { + "name": "47575ff7-4efb-4430-a90c-e9bce7766753", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753", + "properties": { + "accountName": "r-database-account-5886", + "apiType": "Sql", + "creationTime": "2023-04-21T05:49:21Z", + "oldestRestorableTime": "2023-04-21T05:49:21Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c58830e-7439-43f5-90a0-29eef674e0b8", + "creationTime": "2023-04-21T05:49:22Z" + } + ] + } + }, + { + "name": "b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", + "properties": { + "accountName": "r-database-account-6799", + "apiType": "Sql", + "creationTime": "2023-04-21T10:21:33Z", + "oldestRestorableTime": "2023-04-21T10:21:33Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f0255755-865d-40c4-8496-d20f264017e6", + "creationTime": "2023-04-21T10:21:34Z" } ] } @@ -5819,7 +6134,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T10:54:16Z", "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5840,7 +6155,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:05:04Z", "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5861,7 +6176,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:16:07Z", "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5882,7 +6197,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T11:22:51Z", "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5903,7 +6218,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T18:28:48Z", "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5924,7 +6239,7 @@ "apiType": "Sql", "creationTime": "2023-03-23T21:16:33Z", "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5945,7 +6260,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:01:08Z", "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5966,7 +6281,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T16:18:09Z", "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -5987,7 +6302,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:00:54Z", "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6008,7 +6323,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T17:17:36Z", "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6029,7 +6344,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T18:51:09Z", "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6050,7 +6365,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:00:50Z", "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6071,7 +6386,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:18:09Z", "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6092,7 +6407,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:34:54Z", "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6113,7 +6428,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T19:49:54Z", "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6134,7 +6449,7 @@ "apiType": "Sql", "creationTime": "2023-03-24T20:32:49Z", "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6155,7 +6470,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:11:27Z", "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6176,7 +6491,7 @@ "apiType": "Sql", "creationTime": "2023-03-25T16:42:51Z", "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6197,7 +6512,7 @@ "apiType": "Sql", "creationTime": "2023-03-26T16:03:42Z", "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6218,7 +6533,7 @@ "apiType": "Sql", "creationTime": "2023-03-27T03:23:23Z", "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6239,7 +6554,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-17T18:46:10Z", "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6260,7 +6575,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T02:19:03Z", "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6281,7 +6596,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T03:39:15Z", "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6302,7 +6617,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T13:58:50Z", "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6323,7 +6638,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:10:51Z", "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6344,7 +6659,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:25:17Z", "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6365,7 +6680,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:35:15Z", "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6386,7 +6701,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T14:54:34Z", "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6407,7 +6722,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:09:04Z", "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6428,7 +6743,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:25:43Z", "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6449,7 +6764,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T15:32:25Z", "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "Central US", @@ -6476,7 +6791,7 @@ "apiType": "Sql", "creationTime": "2023-03-28T22:16:00Z", "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6497,7 +6812,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T01:52:39Z", "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6518,7 +6833,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:21:49Z", "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6539,7 +6854,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:33:02Z", "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6560,7 +6875,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:47:00Z", "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6581,7 +6896,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:26:20Z", "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6602,7 +6917,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T03:40:43Z", "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6623,7 +6938,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:04:48Z", "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6644,7 +6959,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:32:28Z", "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6665,7 +6980,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:59:34Z", "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6686,7 +7001,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:27:44Z", "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6707,7 +7022,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T05:51:55Z", "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6728,7 +7043,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:07:55Z", "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6749,7 +7064,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T06:41:45Z", "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6770,7 +7085,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:22:12Z", "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6791,7 +7106,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T08:19:11Z", "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6812,7 +7127,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:33:51Z", "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6833,7 +7148,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T09:01:29Z", "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6854,7 +7169,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:28:36Z", "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6875,7 +7190,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T10:01:55Z", "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6896,7 +7211,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T10:20:03Z", "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6917,7 +7232,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T09:43:27Z", "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6938,7 +7253,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T08:16:22Z", "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6959,7 +7274,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:28:35Z", "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -6980,7 +7295,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T16:22:41Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7001,7 +7316,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T16:43:40Z", "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7022,7 +7337,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:14:16Z", "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7043,7 +7358,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T17:32:14Z", "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7064,7 +7379,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:41:56Z", "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7085,7 +7400,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:51:17Z", "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7106,7 +7421,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:21:12Z", "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7127,7 +7442,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:45:36Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7148,7 +7463,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:07:01Z", "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7169,7 +7484,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T18:36:52Z", "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7190,7 +7505,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T18:55:11Z", "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7211,7 +7526,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:11:47Z", "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7232,7 +7547,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T19:27:17Z", "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7253,7 +7568,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T19:41:10Z", "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7274,7 +7589,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T19:57:31Z", "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7295,7 +7610,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:12:42Z", "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7316,7 +7631,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T20:42:13Z", "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7337,7 +7652,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:00:04Z", "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7358,7 +7673,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:32:51Z", "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7379,7 +7694,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T21:15:51Z", "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7400,7 +7715,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T20:27:59Z", "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7421,7 +7736,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T21:50:14Z", "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7442,7 +7757,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T22:05:54Z", "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7463,7 +7778,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:19:29Z", "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7484,7 +7799,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T22:36:33Z", "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7595,7 +7910,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T22:51:34Z", "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7616,7 +7931,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:21:19Z", "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7637,7 +7952,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-29T23:52:19Z", "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7658,7 +7973,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T00:45:13Z", "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7679,7 +7994,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T01:04:05Z", "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7700,7 +8015,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T01:23:37Z", "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7721,7 +8036,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T01:44:49Z", "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7742,7 +8057,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:14:47Z", "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7763,7 +8078,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T02:41:09Z", "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7784,7 +8099,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T03:16:29Z", "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "Central US", @@ -7811,7 +8126,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:22:44Z", "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7832,7 +8147,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T03:40:25Z", "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -7874,7 +8189,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T03:55:54Z", "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8039,7 +8354,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:14:52Z", "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8060,7 +8375,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T04:49:23Z", "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8081,7 +8396,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:21:59Z", "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8102,7 +8417,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T05:04:25Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8123,7 +8438,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T04:32:28Z", "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8144,7 +8459,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:44:40Z", "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8165,7 +8480,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:29:10Z", "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8186,7 +8501,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T06:46:31Z", "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8207,7 +8522,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:23:46Z", "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8228,7 +8543,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:00:42Z", "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8249,7 +8564,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T08:15:53Z", "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8270,7 +8585,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T08:29:55Z", "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8291,7 +8606,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T08:45:00Z", "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8312,7 +8627,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:00:35Z", "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8333,7 +8648,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:32:58Z", "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8354,7 +8669,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:05:27Z", "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8375,7 +8690,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:37:02Z", "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8396,7 +8711,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:11:57Z", "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8417,7 +8732,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T11:41:56Z", "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8438,7 +8753,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:50:47Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8459,7 +8774,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T10:54:29Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8480,7 +8795,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T10:21:00Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8501,7 +8816,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T09:16:05Z", "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8522,7 +8837,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:00:07Z", "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8543,7 +8858,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T12:15:11Z", "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8564,7 +8879,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T12:29:18Z", "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8585,7 +8900,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T12:44:53Z", "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8606,7 +8921,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:00:40Z", "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8627,7 +8942,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:33:35Z", "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8648,7 +8963,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:05:48Z", "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8669,7 +8984,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:35:58Z", "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8690,7 +9005,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:10:49Z", "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8711,7 +9026,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T15:40:22Z", "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8732,7 +9047,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:51:29Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8753,7 +9068,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T14:20:50Z", "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8774,7 +9089,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T13:16:48Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8795,7 +9110,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T14:53:50Z", "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8816,7 +9131,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:31:27Z", "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8837,7 +9152,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:47:28Z", "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8858,7 +9173,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:04:32Z", "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8879,7 +9194,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:24:28Z", "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8900,7 +9215,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T17:39:25Z", "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8921,7 +9236,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:08:24Z", "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8942,7 +9257,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:30:14Z", "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8963,7 +9278,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T19:46:10Z", "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -8984,7 +9299,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:23:16Z", "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9005,7 +9320,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:41:08Z", "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9026,7 +9341,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T21:50:24Z", "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9047,7 +9362,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T22:06:33Z", "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9068,7 +9383,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:20:34Z", "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9089,7 +9404,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T22:35:57Z", "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9110,7 +9425,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T22:51:37Z", "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9131,7 +9446,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:22:07Z", "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9152,7 +9467,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T23:40:03Z", "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9173,7 +9488,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:05:32Z", "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9194,7 +9509,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T00:21:09Z", "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9215,7 +9530,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T00:47:34Z", "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9236,7 +9551,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:04:48Z", "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9257,7 +9572,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:32:56Z", "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9278,7 +9593,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T01:48:31Z", "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9299,7 +9614,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T02:17:45Z", "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9320,7 +9635,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T02:35:45Z", "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9341,7 +9656,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T02:51:04Z", "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9362,7 +9677,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:04:37Z", "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9383,7 +9698,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T03:21:54Z", "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9404,7 +9719,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T03:37:32Z", "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9425,7 +9740,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:07:50Z", "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9446,7 +9761,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T04:25:40Z", "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9467,7 +9782,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T04:51:37Z", "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9488,7 +9803,7 @@ "apiType": "Sql", "creationTime": "2023-03-31T05:07:24Z", "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9509,7 +9824,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:33:47Z", "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9530,7 +9845,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T05:51:09Z", "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9551,7 +9866,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:20:37Z", "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9572,7 +9887,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T06:35:59Z", "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9593,7 +9908,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:10:08Z", "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9614,7 +9929,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T07:26:06Z", "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9635,7 +9950,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:56:33Z", "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9656,7 +9971,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:15:55Z", "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9677,7 +9992,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-31T08:32:15Z", "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9698,7 +10013,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T09:00:28Z", "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9719,7 +10034,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:04:29Z", "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9740,7 +10055,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T15:22:06Z", "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9761,7 +10076,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:34:52Z", "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9782,7 +10097,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T16:56:08Z", "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9803,7 +10118,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:15:44Z", "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9824,7 +10139,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:49:37Z", "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9845,7 +10160,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T18:05:44Z", "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9866,7 +10181,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:48:32Z", "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9887,7 +10202,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:16:39Z", "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9908,7 +10223,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:32:03Z", "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9929,7 +10244,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T19:46:39Z", "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9950,7 +10265,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T20:02:17Z", "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9971,7 +10286,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:17:28Z", "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -9992,7 +10307,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T20:33:26Z", "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10013,7 +10328,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:02:22Z", "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10034,7 +10349,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:44:41Z", "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10055,7 +10370,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:09:17Z", "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10076,7 +10391,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T22:24:45Z", "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10097,7 +10412,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T22:38:37Z", "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10118,7 +10433,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-04T22:54:10Z", "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10139,7 +10454,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:09:10Z", "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10160,7 +10475,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:25:23Z", "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10181,7 +10496,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T23:53:57Z", "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10202,7 +10517,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T00:12:03Z", "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10223,7 +10538,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:38:08Z", "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10244,7 +10559,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T00:54:34Z", "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10265,7 +10580,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:20:43Z", "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10286,7 +10601,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T01:38:51Z", "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10307,7 +10622,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:07:38Z", "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10328,7 +10643,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:23:53Z", "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10349,7 +10664,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T02:52:15Z", "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10370,7 +10685,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:09:42Z", "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10391,7 +10706,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T03:25:14Z", "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10412,7 +10727,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T03:39:46Z", "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10433,7 +10748,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T03:56:41Z", "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10454,7 +10769,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:11:45Z", "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10475,7 +10790,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:30:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10496,7 +10811,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T05:56:56Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10517,7 +10832,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:13:31Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10538,7 +10853,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T06:08:08Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10559,7 +10874,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:53:04Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10580,7 +10895,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:02:37Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10601,7 +10916,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:35:19Z", "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10622,7 +10937,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T06:53:31Z", "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10643,7 +10958,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T17:13:48Z", "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10664,7 +10979,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T21:44:23Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10685,7 +11000,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:33:57Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10706,7 +11021,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T21:49:17Z", "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10727,7 +11042,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:47:00Z", "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10748,7 +11063,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:26:01Z", "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10769,7 +11084,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:55:06Z", "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10790,7 +11105,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T17:08:41Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10811,7 +11126,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-31T07:05:13Z", "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10832,7 +11147,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T07:09:38Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10853,7 +11168,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T04:24:10Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10874,7 +11189,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T00:10:43Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10895,7 +11210,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-04T18:19:29Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10916,7 +11231,7 @@ "apiType": "Table, Sql", "creationTime": "2023-03-30T16:25:03Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10937,7 +11252,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T04:53:26Z", "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10958,7 +11273,7 @@ "apiType": "Sql", "creationTime": "2023-04-04T19:13:48Z", "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -10979,7 +11294,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-30T20:20:58Z", "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11000,7 +11315,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T02:15:48Z", "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11021,7 +11336,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T05:59:59Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11042,7 +11357,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T05:11:25Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11063,7 +11378,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T23:36:48Z", "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11084,7 +11399,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-03-29T23:07:06Z", "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11105,7 +11420,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:12:03Z", "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11126,7 +11441,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T16:17:14Z", "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11147,7 +11462,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:22:51Z", "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11168,7 +11483,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T16:28:41Z", "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11189,7 +11504,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:34:14Z", "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11210,7 +11525,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:51:31Z", "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11231,7 +11546,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T17:14:52Z", "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11252,7 +11567,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T16:56:31Z", "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11273,7 +11588,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:17:47Z", "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11294,7 +11609,7 @@ "apiType": "Sql", "creationTime": "2023-04-05T17:34:16Z", "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11315,7 +11630,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:39:47Z", "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11336,7 +11651,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T17:57:46Z", "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11357,7 +11672,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:20:21Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11378,7 +11693,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:03:36Z", "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11399,7 +11714,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:25:45Z", "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11420,7 +11735,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T18:38:04Z", "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11441,7 +11756,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:15:20Z", "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11462,7 +11777,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:32:53Z", "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11483,7 +11798,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T19:47:56Z", "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11504,7 +11819,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:03:59Z", "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11525,7 +11840,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:32:03Z", "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11546,7 +11861,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T20:52:26Z", "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11567,7 +11882,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:20:40Z", "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11588,7 +11903,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:38:27Z", "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11609,7 +11924,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T21:53:12Z", "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11630,7 +11945,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:09:33Z", "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11651,7 +11966,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:37:57Z", "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11672,7 +11987,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T22:56:24Z", "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11693,7 +12008,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:25:55Z", "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11714,7 +12029,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:41:00Z", "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11735,7 +12050,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-05T23:58:12Z", "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11756,7 +12071,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:26:22Z", "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11777,7 +12092,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T00:42:49Z", "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11798,7 +12113,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:10:50Z", "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11819,7 +12134,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T01:30:03Z", "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11840,7 +12155,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:16:51Z", "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11861,7 +12176,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:27:53Z", "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11882,7 +12197,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:43:55Z", "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11903,7 +12218,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:09:16Z", "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11924,7 +12239,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:20:49Z", "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11945,7 +12260,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T03:36:32Z", "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11966,7 +12281,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:02:47Z", "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -11987,7 +12302,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:18:01Z", "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12008,7 +12323,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T04:35:28Z", "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12029,7 +12344,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:05:15Z", "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12050,7 +12365,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:22:06Z", "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12071,7 +12386,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T05:50:20Z", "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12092,7 +12407,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T06:08:10Z", "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12113,7 +12428,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:39:44Z", "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12134,7 +12449,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T06:58:36Z", "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12155,7 +12470,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:15:43Z", "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12176,7 +12491,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T07:32:21Z", "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12197,7 +12512,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:00:25Z", "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12218,7 +12533,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:18:51Z", "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12239,7 +12554,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T08:48:00Z", "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12260,7 +12575,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:05:50Z", "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12281,7 +12596,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:21:06Z", "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12302,7 +12617,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T09:37:24Z", "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12323,7 +12638,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:06:04Z", "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12344,7 +12659,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T10:24:32Z", "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12365,7 +12680,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T10:53:20Z", "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12386,7 +12701,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:08:49Z", "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12407,7 +12722,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:26:24Z", "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12428,7 +12743,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T11:54:50Z", "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12449,7 +12764,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:11:15Z", "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12470,7 +12785,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-06T12:39:46Z", "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12491,7 +12806,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:48:58Z", "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12512,7 +12827,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:23Z", "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12533,7 +12848,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:16Z", "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12554,7 +12869,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:50:25Z", "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12575,7 +12890,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:53:13Z", "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12596,7 +12911,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:56:23Z", "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12617,7 +12932,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:56:45Z", "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12638,7 +12953,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:57:03Z", "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12659,7 +12974,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:06Z", "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12680,7 +12995,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T18:02:20Z", "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12701,7 +13016,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-06T17:50:26Z", "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12722,7 +13037,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:49:07Z", "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12743,7 +13058,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:11:17Z", "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12764,7 +13079,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T17:54:33Z", "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12785,7 +13100,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:35:39Z", "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12806,7 +13121,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T18:51:56Z", "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12827,7 +13142,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:23:52Z", "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12848,7 +13163,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T19:40:27Z", "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12869,7 +13184,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:07:56Z", "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12890,7 +13205,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:19:51Z", "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12911,7 +13226,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T20:35:29Z", "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12932,7 +13247,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:00:14Z", "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12953,7 +13268,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:43Z", "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12974,7 +13289,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:28:23Z", "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -12995,7 +13310,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T21:54:18Z", "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13016,7 +13331,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:13:06Z", "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13037,7 +13352,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:28:25Z", "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13058,7 +13373,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T22:45:26Z", "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13079,7 +13394,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:13:12Z", "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13100,7 +13415,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-06T23:32:37Z", "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13121,7 +13436,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:01:21Z", "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13142,7 +13457,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:19:33Z", "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13163,7 +13478,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:35:00Z", "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13184,7 +13499,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T00:51:03Z", "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13205,7 +13520,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:20:59Z", "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13226,7 +13541,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-07T01:39:12Z", "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13247,7 +13562,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:08:08Z", "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13268,7 +13583,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:23:44Z", "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13289,7 +13604,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T02:41:51Z", "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13310,7 +13625,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:09:53Z", "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13331,7 +13646,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:26:04Z", "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13352,7 +13667,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T03:54:19Z", "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13373,7 +13688,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:11:45Z", "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13394,7 +13709,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:26:38Z", "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13415,7 +13730,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T04:44:29Z", "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13436,7 +13751,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:13:59Z", "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13457,7 +13772,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:30:07Z", "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13478,7 +13793,7 @@ "apiType": "Table, Sql", "creationTime": "2023-04-07T05:58:40Z", "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13499,7 +13814,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:02:28Z", "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13520,7 +13835,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:16:23Z", "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13541,7 +13856,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:23:09Z", "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13562,7 +13877,7 @@ "apiType": "MongoDB", "creationTime": "2023-04-07T18:54:49Z", "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13583,7 +13898,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:22:56Z", "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13604,7 +13919,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T14:54:41Z", "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13625,7 +13940,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:18:01Z", "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13646,7 +13961,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T15:52:34Z", "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13667,7 +13982,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T16:23:16Z", "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13688,7 +14003,7 @@ "apiType": "Sql", "creationTime": "2023-04-08T17:18:16Z", "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13709,7 +14024,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:53:22Z", "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13730,7 +14045,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T21:10:14Z", "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13751,7 +14066,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T20:25:24Z", "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13772,7 +14087,7 @@ "apiType": "Sql", "creationTime": "2023-04-12T19:51:34Z", "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13793,7 +14108,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T13:44:29Z", "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13814,7 +14129,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T17:30:02Z", "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13835,7 +14150,7 @@ "apiType": "Sql", "creationTime": "2023-04-13T18:12:05Z", "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13856,7 +14171,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:44:01Z", "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13877,7 +14192,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T14:06:05Z", "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13898,7 +14213,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:21:09Z", "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13919,7 +14234,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:42:47Z", "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13940,7 +14255,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:58:17Z", "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13961,7 +14276,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T21:20:39Z", "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -13982,7 +14297,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:54:02Z", "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14003,7 +14318,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:16:14Z", "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14024,7 +14339,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:32:19Z", "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14045,7 +14360,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:54:08Z", "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14066,7 +14381,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:31:56Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14087,7 +14402,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:04Z", "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14108,7 +14423,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:11:39Z", "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14129,7 +14444,7 @@ "apiType": "Gremlin, Sql", "creationTime": "2023-04-05T18:31:49Z", "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14150,7 +14465,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:23:17Z", "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14171,7 +14486,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T02:07:24Z", "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14192,7 +14507,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:04:33Z", "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14213,7 +14528,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:07:31Z", "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14234,7 +14549,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:29:33Z", "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T03:00:05Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", "restorableLocations": [ { "locationName": "West US", @@ -14246,15 +14561,393 @@ } }, { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", + "properties": { + "accountName": "r-database-account-5132", + "apiType": "Sql", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" + } + ] + } + }, + { + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" + } + ] + } + }, + { + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", + "properties": { + "accountName": "restoredaccount-1053", + "apiType": "Sql", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" + } + ] + } + }, + { + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", + "properties": { + "accountName": "r-database-account-59", + "apiType": "Sql", + "creationTime": "2023-04-20T20:02:03Z", + "deletionTime": "2023-04-20T20:02:53Z", + "oldestRestorableTime": "2023-03-22T10:22:11Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z", + "deletionTime": "2023-04-20T20:02:53Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "deletionTime": "2023-04-20T20:28:56Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z", + "deletionTime": "2023-04-20T20:28:56Z" + } + ] + } + }, + { + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "properties": { + "accountName": "mks-ps-pna-disable", + "apiType": "Sql", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z" + } + ] + } + }, + { + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "properties": { + "accountName": "mks-cli-pna-disabled", + "apiType": "Sql", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z" + } + ] + } + }, + { + "name": "73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "properties": { + "accountName": "r-database-account-8662", + "apiType": "Sql", + "creationTime": "2023-04-21T01:11:02Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40ae612c-e5a5-4567-a7b3-d8cf456914e8", + "creationTime": "2023-04-21T01:11:03Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "4aaae931-db25-42d9-bd13-139f4758eded", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aaae931-db25-42d9-bd13-139f4758eded", + "properties": { + "accountName": "r-database-account-1680", + "apiType": "Sql", + "creationTime": "2023-04-20T20:13:32Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e356dbef-401c-495f-8395-51811a45809b", + "creationTime": "2023-04-20T20:13:33Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "deletionTime": "2023-04-21T01:12:01Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z", + "deletionTime": "2023-04-21T01:12:01Z" + } + ] + } + }, + { + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "properties": { + "accountName": "r-database-account-7671", + "apiType": "Sql", + "creationTime": "2023-04-20T15:44:05Z", + "deletionTime": "2023-04-21T01:12:12Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z", + "deletionTime": "2023-04-21T01:12:12Z" + } + ] + } + }, + { + "name": "b2935e20-0e04-4401-95bb-ca4d1256fb91", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b2935e20-0e04-4401-95bb-ca4d1256fb91", + "properties": { + "accountName": "r-database-account-6490", + "apiType": "Sql", + "creationTime": "2023-04-21T01:24:42Z", + "deletionTime": "2023-04-21T01:25:42Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4edd06be-b84f-43ea-9e41-e5987414c359", + "creationTime": "2023-04-21T01:24:43Z", + "deletionTime": "2023-04-21T01:25:42Z" + } + ] + } + }, + { + "name": "b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "properties": { + "accountName": "r-database-account-6025", + "apiType": "Sql", + "creationTime": "2023-04-21T01:36:17Z", + "deletionTime": "2023-04-21T01:59:57Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b210a4f2-0986-4cc5-a19a-9d2ff1376993", + "creationTime": "2023-04-21T01:36:18Z", + "deletionTime": "2023-04-21T01:59:57Z" + } + ] + } + }, + { + "name": "4e75098e-0b3e-4837-8426-7db845b314f8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e75098e-0b3e-4837-8426-7db845b314f8", + "properties": { + "accountName": "restoredaccount-6934", + "apiType": "Sql", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6d90e3e7-84e4-4ea4-95a1-db32358e16b9", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z" + } + ] + } + }, + { + "name": "9189867f-ed3f-449a-a9ad-79a2d72fef11", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9189867f-ed3f-449a-a9ad-79a2d72fef11", + "properties": { + "accountName": "r-database-account-5595", + "apiType": "Sql", + "creationTime": "2023-04-21T09:24:31Z", + "deletionTime": "2023-04-21T09:25:21Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "158154f2-ba43-42d9-b432-506f23f61772", + "creationTime": "2023-04-21T09:24:32Z", + "deletionTime": "2023-04-21T09:25:21Z" + } + ] + } + }, + { + "name": "f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "properties": { + "accountName": "r-database-account-1525", + "apiType": "Sql", + "creationTime": "2023-04-21T09:35:25Z", + "deletionTime": "2023-04-21T09:59:04Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "be348493-ba83-4e93-b286-33c54f6a8792", + "creationTime": "2023-04-21T09:35:26Z", + "deletionTime": "2023-04-21T09:59:04Z" + } + ] + } + }, + { + "name": "ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "properties": { + "accountName": "restoredaccount-9007", + "apiType": "Sql", + "creationTime": "2023-04-21T09:58:13Z", + "deletionTime": "2023-04-21T10:09:15Z", + "oldestRestorableTime": "2023-03-22T10:22:12Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2d9499b8-4a72-48e3-a816-2b973ac7e268", + "creationTime": "2023-04-21T09:58:13Z", + "deletionTime": "2023-04-21T10:09:15Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", "properties": { "accountName": "drop-continuous7", "apiType": "Sql", "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "East US", @@ -14273,7 +14966,7 @@ "accountName": "periodicacctdrop", "apiType": "Sql", "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T03:00:02Z", + "oldestRestorableTime": "2023-04-14T10:22:09Z", "restorableLocations": [ { "locationName": "East US", @@ -14292,7 +14985,7 @@ "accountName": "periodicacctdrop2", "apiType": "Sql", "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US", @@ -14311,7 +15004,7 @@ "accountName": "readregionrestore-1", "apiType": "Sql", "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T03:00:02Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "Southeast Asia", @@ -14336,7 +15029,7 @@ "apiType": "MongoDB", "creationTime": "2023-03-27T17:28:08Z", "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "East US", @@ -14357,7 +15050,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:24:07Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14384,7 +15077,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:06:45Z", "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14759,7 +15452,7 @@ "apiType": "Sql", "creationTime": "2023-03-29T07:45:59Z", "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "North Central US", @@ -14780,7 +15473,7 @@ "apiType": "Sql", "creationTime": "2023-03-30T20:15:03Z", "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:09Z", "restorableLocations": [ { "locationName": "West Central US", @@ -14800,7 +15493,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", "apiType": "Sql", "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14819,7 +15512,7 @@ "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", "apiType": "Sql", "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T03:00:03Z", + "oldestRestorableTime": "2023-03-22T10:22:10Z", "restorableLocations": [ { "locationName": "Qatar Central", @@ -14833,42 +15526,755 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5132?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-6799?api-version=2022-11-15-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b1b3f51afbe43ee508efa9aa498b0d3e-f3cdbfbee382ff26-00", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-e8d2c8c5c8fe14a5-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "01a5a1a5222e262589aa73ded1db24d3", + "x-ms-client-request-id": "dc74e1d3a06b94a7ca3c48452301cbf9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f88f3c25-238e-4d7b-be4e-cbf205a49c53?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:08 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/f88f3c25-238e-4d7b-be4e-cbf205a49c53?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:22:14 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2825979f-9e58-4ede-baa5-76cad4351df1", + "x-ms-correlation-request-id": "085d4a42-8b56-4d73-a94f-390d59f3c938", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "f88f3c25-238e-4d7b-be4e-cbf205a49c53", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030009Z:2825979f-9e58-4ede-baa5-76cad4351df1" + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "1c135e0f-c114-4003-bccd-287c87f45878", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102215Z:085d4a42-8b56-4d73-a94f-390d59f3c938" }, "ResponseBody": { "status": "Enqueued" } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-153c0d2994ca4aad-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b2fc5ef419950ae6a9de6314d0f8a94b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23f8a240-8067-4475-af08-b4df23edb66a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "23f8a240-8067-4475-af08-b4df23edb66a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102215Z:23f8a240-8067-4475-af08-b4df23edb66a" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-31e8cd952603aa31-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "47e454d5a1e3d58ce52d23794a6e042f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:16 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4bc449e5-bc03-4b52-aea5-ca461ae77d7f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "4bc449e5-bc03-4b52-aea5-ca461ae77d7f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102216Z:4bc449e5-bc03-4b52-aea5-ca461ae77d7f" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-1d46a5b3f847eedb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c451e40c19056a63293902ee9ae676bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ba96163-ea4b-4511-8e51-7da280b4cf5c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "0ba96163-ea4b-4511-8e51-7da280b4cf5c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102217Z:0ba96163-ea4b-4511-8e51-7da280b4cf5c" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-3ff593572dc88288-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a630948e9b6537fd127cc67f56cc03b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:18 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "40ba7e7b-0c92-4085-bc09-d41d7ecd54c8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "40ba7e7b-0c92-4085-bc09-d41d7ecd54c8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102218Z:40ba7e7b-0c92-4085-bc09-d41d7ecd54c8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-cabba7408d2b322a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb0834d9e4a7bc46f07a1daa9f9e3aff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c970e999-22f2-4eaf-ae89-4cd85342c918", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "c970e999-22f2-4eaf-ae89-4cd85342c918", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102220Z:c970e999-22f2-4eaf-ae89-4cd85342c918" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-b55211e1356a008a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "413164b7c90a237865fef2dd4cfc74bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2d1cdf69-cdc5-485f-8f56-a8ea6427a4a4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "2d1cdf69-cdc5-485f-8f56-a8ea6427a4a4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102224Z:2d1cdf69-cdc5-485f-8f56-a8ea6427a4a4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-1d0a361ada628d1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6515c6798bdd6318c3a6493bcbd5b433", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d947d6ef-68a8-4aa1-b70f-380007b3f9ed", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "d947d6ef-68a8-4aa1-b70f-380007b3f9ed", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102232Z:d947d6ef-68a8-4aa1-b70f-380007b3f9ed" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-06524df6b8b1e8d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91b0cdec7e3a0f30bbe586a9f1686ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:22:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e88c4e03-90f1-4d15-8019-c452f1a93dcf", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "e88c4e03-90f1-4d15-8019-c452f1a93dcf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102248Z:e88c4e03-90f1-4d15-8019-c452f1a93dcf" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-e266d9276354615e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d8306006d4882c214bce7d64803d578f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:23:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "74f263e6-9a8d-490e-8abc-0cf5a6115342", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "74f263e6-9a8d-490e-8abc-0cf5a6115342", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102320Z:74f263e6-9a8d-490e-8abc-0cf5a6115342" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-f9136a24a483549f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ff0bf4ae24bfa829605aaf8046f715a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:23:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3bc2d03b-ba2c-449a-96e7-bce56004c1cf", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "3bc2d03b-ba2c-449a-96e7-bce56004c1cf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102353Z:3bc2d03b-ba2c-449a-96e7-bce56004c1cf" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-4c42efb81857e256-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6b355537dba517aaac84466c01cc8f7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:24:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "09fd4689-cf84-4860-99ad-cf2b6cc4903f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "09fd4689-cf84-4860-99ad-cf2b6cc4903f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102425Z:09fd4689-cf84-4860-99ad-cf2b6cc4903f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-3fa4adccc0208c09-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "325ef68df07724a9dd3541832a2827dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:24:56 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e34b7663-98c8-4b24-87f9-e81f41a1c738", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "e34b7663-98c8-4b24-87f9-e81f41a1c738", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102457Z:e34b7663-98c8-4b24-87f9-e81f41a1c738" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-a589cc3e2b134a98-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2a2d225cec086eea14d9d3c79c16f9ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:25:29 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e68902ca-07a1-4745-9feb-910c816a0587", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "e68902ca-07a1-4745-9feb-910c816a0587", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102529Z:e68902ca-07a1-4745-9feb-910c816a0587" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-910d30240333a5b2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e6a2c763f1046e3ac108e6f9927ed83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:26:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "decd498e-3881-48eb-810f-60c5efa6b9f7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "decd498e-3881-48eb-810f-60c5efa6b9f7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102601Z:decd498e-3881-48eb-810f-60c5efa6b9f7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-101658710a9dfd1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "de0f695c649fa1750bf01d9e1de187c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:26:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6469652b-f22a-49c1-b6d6-644d9fd884dc", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "6469652b-f22a-49c1-b6d6-644d9fd884dc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102633Z:6469652b-f22a-49c1-b6d6-644d9fd884dc" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-55180c8026838f9e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fe0c773c18bd1dcb3fe67ef75d7bd4ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:27:05 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23de19ef-93ab-4bb9-9024-7d8f939537c0", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "23de19ef-93ab-4bb9-9024-7d8f939537c0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102705Z:23de19ef-93ab-4bb9-9024-7d8f939537c0" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-b15649879dd213ce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "326a4feb1a07112ab6c9021f214428ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:27:37 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a97d9ec5-73fe-42a5-84ad-d565ffe46e3c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "a97d9ec5-73fe-42a5-84ad-d565ffe46e3c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102737Z:a97d9ec5-73fe-42a5-84ad-d565ffe46e3c" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-524154dc9a1ff3b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2233c789ef1a44c59df29fb8e57e4490", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:28:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8b6c32d2-532d-48b6-ab2b-9a575f9dedd6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "8b6c32d2-532d-48b6-ab2b-9a575f9dedd6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102810Z:8b6c32d2-532d-48b6-ab2b-9a575f9dedd6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-39c765ab5368e090-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ceb3301c557721bf4cfb47f416abfbfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:28:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf2e0687-5ebb-41dd-8de9-da189dd6fd61", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "cf2e0687-5ebb-41dd-8de9-da189dd6fd61", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102842Z:cf2e0687-5ebb-41dd-8de9-da189dd6fd61" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-053563c82669ecc7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "956eb4bdb248fcd2892694157b722b38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:29:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "502758fc-ce72-4a85-b729-09da6f6d8230", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "502758fc-ce72-4a85-b729-09da6f6d8230", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102914Z:502758fc-ce72-4a85-b729-09da6f6d8230" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-6523914706c8e1b3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f10371845a9134530811d51fa7d02ef1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:29:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aeab970c-9961-4e8c-8fbe-51da4747f238", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "aeab970c-9961-4e8c-8fbe-51da4747f238", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T102946Z:aeab970c-9961-4e8c-8fbe-51da4747f238" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-ffe4ba56b63cec88-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31faa4f6ae1069485eb64450c0aaa5da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:30:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "54c89cfb-63c7-4eab-a4c2-6821a50068b6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "54c89cfb-63c7-4eab-a4c2-6821a50068b6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103018Z:54c89cfb-63c7-4eab-a4c2-6821a50068b6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c135e0f-c114-4003-bccd-287c87f45878?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6d7e8cd52b08bb9fbffd73b79a93a49b-df2fdc42f1ea83e6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a46f0fcf0aa86269603a8d36dcb254b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:30:50 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2ae6b86c-1c69-4af2-ab17-47f63d4e0eae", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "2ae6b86c-1c69-4af2-ab17-47f63d4e0eae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103050Z:2ae6b86c-1c69-4af2-ab17-47f63d4e0eae" + }, + "ResponseBody": { + "status": "Succeeded" + } } ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "221636392", + "RandomSeed": "1073924706", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json index 764eb8adb373..6f8cc9c0d92d 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(False).json @@ -6,9 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1fbcd620a8c885dedb9111c4f9b50e05-a4ea9ad044932877-00", + "traceparent": "00-88dd6f6736813c51bc078558f2474943-9411b11d6df48c66-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "65957a39cb04b309ae899ead8eacfc8c", + "x-ms-client-request-id": "c190992b58ebd3f35e93324db36ed4d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 19:58:41 GMT", + "Date": "Fri, 21 Apr 2023 09:22:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bde83d5-e35e-4c69-86fb-e326cb853fea", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0bde83d5-e35e-4c69-86fb-e326cb853fea", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195842Z:0bde83d5-e35e-4c69-86fb-e326cb853fea" + "x-ms-correlation-request-id": "05de00a0-c375-4a75-a4ea-55de88992080", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "05de00a0-c375-4a75-a4ea-55de88992080", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092209Z:05de00a0-c375-4a75-a4ea-55de88992080" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -47,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-8108?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-3324?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-737255ab3ff0d6a1bc8c7adfc0ca0ec4-5db95023b70d4cf6-00", + "traceparent": "00-2b93e41958210ed929b5ec032f4863f0-6271f64c9dadf96d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c645cc0263c4a19893145c8d66a8fccb", + "x-ms-client-request-id": "766220d95cd42f9fc77b95e84f967941", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -65,21 +65,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 19:58:43 GMT", + "Date": "Fri, 21 Apr 2023 09:22:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T195844Z:aa556cef-3793-4cd1-bdf1-33bcc7c1dd5c" + "x-ms-correlation-request-id": "b64bcc75-8f75-4f69-be88-d8ebd815a22d", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b64bcc75-8f75-4f69-be88-d8ebd815a22d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T092210Z:b64bcc75-8f75-4f69-be88-d8ebd815a22d" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-8108", - "name": "dbaccount-8108", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324", + "name": "dbaccount-3324", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -90,7 +91,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "2015046093", + "RandomSeed": "667080666", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(True)Async.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(True)Async.json index fce5ddc5537f..592a1abc8c0f 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(True)Async.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestorableDatabaseAccountTests(True)Async.json @@ -6,9 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c7ae47febfcb7b668e885ac5f7aad84d-1892e0fb94f75a4f-00", + "traceparent": "00-749978d4e1483571c33cf5b3779b55d7-e027e26e8e94e418-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9e339ea772c4c35a6ac15fe6c71a95e7", + "x-ms-client-request-id": "6bd789289a5cd733372a86cc8c563e28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 02:57:09 GMT", + "Date": "Fri, 21 Apr 2023 10:19:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e6a10a9-f2d0-4384-a58b-1feab3df4520", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "8e6a10a9-f2d0-4384-a58b-1feab3df4520", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025709Z:8e6a10a9-f2d0-4384-a58b-1feab3df4520" + "x-ms-correlation-request-id": "73834518-8c02-4989-bed4-e5b31e6c448a", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "73834518-8c02-4989-bed4-e5b31e6c448a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101917Z:73834518-8c02-4989-bed4-e5b31e6c448a" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -47,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6716?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6972?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-1ddf35e54428abd3e33e69654b112770-a04042c3a77c2324-00", + "traceparent": "00-2e3ee851a0f4e6c4b740d7e2bb67baa1-5c0b3ffa3293face-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "57d639fe59978b0cbcf0e99f46b268c2", + "x-ms-client-request-id": "85bc9c3cb4a3e03e0f89966b1e5f041e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 02:57:11 GMT", + "Date": "Fri, 21 Apr 2023 10:19:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c721ea78-1aac-412a-864a-f764aefec55e", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c721ea78-1aac-412a-864a-f764aefec55e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T025711Z:c721ea78-1aac-412a-864a-f764aefec55e" + "x-ms-correlation-request-id": "81fb5f20-4544-4d33-86c1-05b24674d236", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "81fb5f20-4544-4d33-86c1-05b24674d236", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101918Z:81fb5f20-4544-4d33-86c1-05b24674d236" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716", - "name": "dbaccount-6716", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972", + "name": "dbaccount-6972", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -90,7 +90,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1019914400", + "RandomSeed": "478135925", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccount.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccount.json index 59ed8534abe0..4e421c3bc402 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccount.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccount.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-1407?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-3324?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3787d0cb4c2c067eb2a686d38d6d68a2-60cb1338c17a09c8-00", + "traceparent": "00-cf869398fade03cc97158f12ff0f5fae-7d18065934902664-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f57e78f1590bd14cefcdc236f25f24f6", + "x-ms-client-request-id": "e8c80ba260681658112b999034fd4af0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:05:12 GMT", + "Date": "Fri, 21 Apr 2023 09:33:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9657afd9-f6de-4a4d-bcca-5d2f824c01ce", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "9657afd9-f6de-4a4d-bcca-5d2f824c01ce", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000513Z:9657afd9-f6de-4a4d-bcca-5d2f824c01ce" + "x-ms-correlation-request-id": "59b9c4ec-6ca8-4025-ba9b-a0b8ddc92033", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "59b9c4ec-6ca8-4025-ba9b-a0b8ddc92033", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093311Z:59b9c4ec-6ca8-4025-ba9b-a0b8ddc92033" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407", - "name": "dbaccount-1407", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324", + "name": "dbaccount-3324", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-c8d18171db228b0a-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-9239ac8be461f500-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "12c4b5390fac832b80e7527c0090250f", + "x-ms-client-request-id": "181957a4bf5e8c17c4a5880e84edab7b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "2410", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:19 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/operationResults/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 09:33:17 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/operationResults/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "264ddf31-df70-4250-ba91-8be840f461c4", + "x-ms-correlation-request-id": "745fe9d9-9dbc-47b6-b7b4-e30dbd720c3a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "6f7665ae-64d3-40c0-992a-d7a1599e661d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000520Z:264ddf31-df70-4250-ba91-8be840f461c4" + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "9997c556-5bd0-4767-9825-933ac8298228", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093318Z:745fe9d9-9dbc-47b6-b7b4-e30dbd720c3a" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077", - "name": "r-database-account-1077", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525", + "name": "r-database-account-1525", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T00:05:19.0264743Z" + "createdAt": "2023-04-21T09:33:16.4822359Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "instanceId": "f02c31bc-a54b-49f4-86ef-9084c86dcbf3", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T00:05:19.0264743Z" + "generationTime": "2023-04-21T09:33:16.4822359Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T00:05:19.0264743Z" + "generationTime": "2023-04-21T09:33:16.4822359Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:05:19.0264743Z" + "generationTime": "2023-04-21T09:33:16.4822359Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:05:19.0264743Z" + "generationTime": "2023-04-21T09:33:16.4822359Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-4bd0bfa107b34515-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-88e9d272f8ea9fe1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fbf0c2a258c0684552718b72fa54ee3d", + "x-ms-client-request-id": "d6de53d107124c44b05ca3bbcf078d3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:20 GMT", + "Date": "Fri, 21 Apr 2023 09:33:17 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5939aac-1182-4a70-9d34-075eda9d6629", + "x-ms-correlation-request-id": "03c921b2-620d-4848-855a-5ece28c829e5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "d5939aac-1182-4a70-9d34-075eda9d6629", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000520Z:d5939aac-1182-4a70-9d34-075eda9d6629" + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "03c921b2-620d-4848-855a-5ece28c829e5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093318Z:03c921b2-620d-4848-855a-5ece28c829e5" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-25f8f1a924ea3a65-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-b463c083ba2c550b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "097d269c9b9ce0fa3cab25a6830640e5", + "x-ms-client-request-id": "1ddd14ee243358030ac01b0a3c372157", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:21 GMT", + "Date": "Fri, 21 Apr 2023 09:33:18 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2250d248-8988-4a7c-b791-628a596951da", + "x-ms-correlation-request-id": "4d9ef0ab-f720-4d25-974c-6a39656106a3", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "2250d248-8988-4a7c-b791-628a596951da", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000521Z:2250d248-8988-4a7c-b791-628a596951da" + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "4d9ef0ab-f720-4d25-974c-6a39656106a3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093319Z:4d9ef0ab-f720-4d25-974c-6a39656106a3" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-a66fdf3b9387f5b3-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-df6d25b62edb452c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3edaeb4f299f1c4e111f0743ce061e98", + "x-ms-client-request-id": "303de286d40f4e699bca1a06a99188f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:22 GMT", + "Date": "Fri, 21 Apr 2023 09:33:19 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcd252a7-7a58-4650-ade1-73ca235b7b40", + "x-ms-correlation-request-id": "6cbda9ce-3b8c-4b25-8cf2-e9928c61ad72", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "dcd252a7-7a58-4650-ade1-73ca235b7b40", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000523Z:dcd252a7-7a58-4650-ade1-73ca235b7b40" + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "6cbda9ce-3b8c-4b25-8cf2-e9928c61ad72", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093320Z:6cbda9ce-3b8c-4b25-8cf2-e9928c61ad72" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-2a62d3de85b2dbaa-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-5a125e19f9e5c2e8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1c884e178e1d06cac710be15339ee54c", + "x-ms-client-request-id": "56f144c6018fac735085cc51ec3a0f79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:23 GMT", + "Date": "Fri, 21 Apr 2023 09:33:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a3507ea-88ae-4f60-8f45-6a3b20e5bbb3", + "x-ms-correlation-request-id": "db94530c-a33b-4ef8-887d-da4e7ef4830c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "0a3507ea-88ae-4f60-8f45-6a3b20e5bbb3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000524Z:0a3507ea-88ae-4f60-8f45-6a3b20e5bbb3" + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "db94530c-a33b-4ef8-887d-da4e7ef4830c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093321Z:db94530c-a33b-4ef8-887d-da4e7ef4830c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-e6a419223bdf386a-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-da5825731e4a79da-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0f22a531af7a729dd861f77c94b71236", + "x-ms-client-request-id": "ed354b3b5dca1a2dab8e81680afcaf78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:25 GMT", + "Date": "Fri, 21 Apr 2023 09:33:22 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9023c560-6565-41ab-8d83-f9bd72af6dcc", + "x-ms-correlation-request-id": "ab2c5212-edbc-4307-a5b8-9f8103326893", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "9023c560-6565-41ab-8d83-f9bd72af6dcc", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000526Z:9023c560-6565-41ab-8d83-f9bd72af6dcc" + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "ab2c5212-edbc-4307-a5b8-9f8103326893", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093323Z:ab2c5212-edbc-4307-a5b8-9f8103326893" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-4a88609c2e15b3fb-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-ea019e9bb5c302fc-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "348e8c8c247ec1c720d3778f6b39e973", + "x-ms-client-request-id": "f8432538cb4684c76e90e08907186261", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:29 GMT", + "Date": "Fri, 21 Apr 2023 09:33:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62a0f7c8-b365-4f4c-97ef-b4219f3893ab", + "x-ms-correlation-request-id": "90de71a0-3a51-430f-83cf-b65078010774", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "62a0f7c8-b365-4f4c-97ef-b4219f3893ab", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000530Z:62a0f7c8-b365-4f4c-97ef-b4219f3893ab" + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "90de71a0-3a51-430f-83cf-b65078010774", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093327Z:90de71a0-3a51-430f-83cf-b65078010774" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-8e34fd6d59e3445c-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-50fd7cc45950916a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2812ba390fe3671eb11643bc964e710f", + "x-ms-client-request-id": "5dcba1bb9b5c692a16d6aa017f0ba253", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:37 GMT", + "Date": "Fri, 21 Apr 2023 09:33:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6d7ed2e-00cc-4d68-ba9e-1922f823e331", + "x-ms-correlation-request-id": "f7d25df1-49af-4d34-a6e4-e673c1e270a3", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "c6d7ed2e-00cc-4d68-ba9e-1922f823e331", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000538Z:c6d7ed2e-00cc-4d68-ba9e-1922f823e331" + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "f7d25df1-49af-4d34-a6e4-e673c1e270a3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093336Z:f7d25df1-49af-4d34-a6e4-e673c1e270a3" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-ee4fd4d8f0fb902c-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-79d4cb2f1c90b1e9-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a68888feb10f0ccedd61eea6380e079f", + "x-ms-client-request-id": "c61954d516f7703283b17e397da31393", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:05:53 GMT", + "Date": "Fri, 21 Apr 2023 09:33:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21f97399-cd08-45c2-8d81-42e42b6b4a74", + "x-ms-correlation-request-id": "332fac60-7484-4ca1-a256-d90c5bfbc9c5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "21f97399-cd08-45c2-8d81-42e42b6b4a74", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000554Z:21f97399-cd08-45c2-8d81-42e42b6b4a74" + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "332fac60-7484-4ca1-a256-d90c5bfbc9c5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093352Z:332fac60-7484-4ca1-a256-d90c5bfbc9c5" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-e0b400554cc5fe08-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-5aceafa57bcdbeb6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d9438478e9a57d526d268368e00b2ad2", + "x-ms-client-request-id": "68ac202b52319c1cfad9e16f20c60563", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:06:26 GMT", + "Date": "Fri, 21 Apr 2023 09:34:23 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2e5cad2-fd17-4801-8c89-a2057c63098b", + "x-ms-correlation-request-id": "ad47cf10-02b2-4726-80a3-4ea437b717b9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "f2e5cad2-fd17-4801-8c89-a2057c63098b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000626Z:f2e5cad2-fd17-4801-8c89-a2057c63098b" + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ad47cf10-02b2-4726-80a3-4ea437b717b9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093424Z:ad47cf10-02b2-4726-80a3-4ea437b717b9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-e0138cc87969d06e-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-874413c2fc1d84ab-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e391676242b08863ec054a8220782fa2", + "x-ms-client-request-id": "b2b48cee9bfea56a6e5bdaaa1cf0ec72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:06:58 GMT", + "Date": "Fri, 21 Apr 2023 09:34:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11757f1d-bd86-4a53-9ab2-14f1400a70cd", + "x-ms-correlation-request-id": "25dc1b35-add6-4d41-aa4a-561a90f604cc", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "11757f1d-bd86-4a53-9ab2-14f1400a70cd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000658Z:11757f1d-bd86-4a53-9ab2-14f1400a70cd" + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "25dc1b35-add6-4d41-aa4a-561a90f604cc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093456Z:25dc1b35-add6-4d41-aa4a-561a90f604cc" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-a57cef7b3a282f51-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-0caef7a19325fb90-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1243a40e970a146a350b39e92e652cd1", + "x-ms-client-request-id": "5fd517c3395f8322387ccb1d35c34fbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,29 +539,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:07:30 GMT", + "Date": "Fri, 21 Apr 2023 09:35:27 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53917c5a-c49a-4800-ad04-76042c6396ab", + "x-ms-correlation-request-id": "4fb48862-2821-4e6e-a736-34c3c8a458a9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "53917c5a-c49a-4800-ad04-76042c6396ab", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000731Z:53917c5a-c49a-4800-ad04-76042c6396ab" + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "4fb48862-2821-4e6e-a736-34c3c8a458a9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093528Z:4fb48862-2821-4e6e-a736-34c3c8a458a9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6f7665ae-64d3-40c0-992a-d7a1599e661d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9997c556-5bd0-4767-9825-933ac8298228?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-e10a3a52f3c7a348-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-ce81ad9f661478c8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d1431c36247d35ee21bbeda09ed05cf5", + "x-ms-client-request-id": "f04b1bab60ef8f94b506f9d577718009", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,29 +570,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:02 GMT", + "Date": "Fri, 21 Apr 2023 09:36:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84a05437-020b-4975-a2de-cebd0732d41d", + "x-ms-correlation-request-id": "7be163ba-dc3c-4bad-b58c-7989946826ce", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "84a05437-020b-4975-a2de-cebd0732d41d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000803Z:84a05437-020b-4975-a2de-cebd0732d41d" + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "7be163ba-dc3c-4bad-b58c-7989946826ce", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093600Z:7be163ba-dc3c-4bad-b58c-7989946826ce" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c30cb230cbe2d5145ebcbe35aafed032-3148a16ae26a9297-00", + "traceparent": "00-37af2b4aece4fe083395a41d14b9799d-3eb6e75472a5f106-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3c59e0f718c7cac7fc7cada5097a5a86", + "x-ms-client-request-id": "09ab6eeca5f1b4046a317a82d04d6fab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -601,31 +601,31 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "2838", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:02 GMT", + "Date": "Fri, 21 Apr 2023 09:36:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b93b13b3-9777-47b6-ac7c-125982944d6c", + "x-ms-correlation-request-id": "a6b32384-47d9-446b-99f2-a46f65c03cf3", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "b93b13b3-9777-47b6-ac7c-125982944d6c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000803Z:b93b13b3-9777-47b6-ac7c-125982944d6c" + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "a6b32384-47d9-446b-99f2-a46f65c03cf3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093600Z:a6b32384-47d9-446b-99f2-a46f65c03cf3" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077", - "name": "r-database-account-1077", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525", + "name": "r-database-account-1525", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T00:07:30.7878188Z" + "createdAt": "2023-04-21T09:35:24.5041041Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-1077.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-1077.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-1525.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-1525.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +639,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "instanceId": "f02c31bc-a54b-49f4-86ef-9084c86dcbf3", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +657,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-1077-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-1525-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +667,9 @@ ], "readLocations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-1077-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-1525-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +677,9 @@ ], "locations": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-1077-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-1525-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +687,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-1077-westus", + "id": "r-database-account-1525-westus", "locationName": "West US", "failoverPriority": 0 } @@ -711,16 +711,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T00:07:30.7878188Z" + "generationTime": "2023-04-21T09:35:24.5041041Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T00:07:30.7878188Z" + "generationTime": "2023-04-21T09:35:24.5041041Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:07:30.7878188Z" + "generationTime": "2023-04-21T09:35:24.5041041Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:07:30.7878188Z" + "generationTime": "2023-04-21T09:35:24.5041041Z" } } }, @@ -735,9 +735,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f766f0ce98787d86a549f6c754763e1-b57e14c495a22755-00", + "traceparent": "00-a00dcedb085bc88a32614023cd8b1f82-49c312bae047ec1c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "044b78d95d34ea25b50ef04faaca7564", + "x-ms-client-request-id": "01fe1d0bfca563838245a958404c0bc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +746,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:08:02 GMT", + "Date": "Fri, 21 Apr 2023 09:36:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95f47678-d8b4-4f06-bb30-e771835b9626", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "95f47678-d8b4-4f06-bb30-e771835b9626", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000803Z:95f47678-d8b4-4f06-bb30-e771835b9626" + "x-ms-correlation-request-id": "e7bb7655-9262-42aa-be6b-b012efdad7f4", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "e7bb7655-9262-42aa-be6b-b012efdad7f4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093600Z:e7bb7655-9262-42aa-be6b-b012efdad7f4" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -781,23 +781,23 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-12acb34797793e87b3da1c087484c959-c376de55d0a31011-00", + "traceparent": "00-2795d6384f05abb1dca003ca2290baa4-a3491fa2339bf090-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4df143aeef0c1e0a5478d50076492ca7", + "x-ms-client-request-id": "c630c1fc461706cb169686bee512bf68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "466452", + "Content-Length": "491505", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:08:06 GMT", + "Date": "Fri, 21 Apr 2023 09:36:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d438d683-a052-4fdf-97d5-0749cea95448", + "x-ms-correlation-request-id": "7cf95679-b795-4906-80e1-eaeb640c98b2", "x-ms-original-request-ids": [ "", "", @@ -838,9 +838,9 @@ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "d438d683-a052-4fdf-97d5-0749cea95448", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000807Z:d438d683-a052-4fdf-97d5-0749cea95448" + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "7cf95679-b795-4906-80e1-eaeb640c98b2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093605Z:7cf95679-b795-4906-80e1-eaeb640c98b2" }, "ResponseBody": { "value": [ @@ -853,7 +853,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -872,7 +872,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -891,7 +891,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -910,7 +910,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -929,7 +929,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -948,7 +948,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -967,7 +967,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -986,7 +986,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1005,7 +1005,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1024,7 +1024,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1043,7 +1043,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1062,7 +1062,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1081,7 +1081,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1105,7 +1105,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1115,44 +1115,6 @@ ] } }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, { "name": "2217666b-a543-4788-adf9-f8059e864343", "location": "West Central US", @@ -1205,7 +1167,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1232,7 +1194,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1307,7 +1269,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1334,7 +1296,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1355,7 +1317,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1445,7 +1407,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1466,7 +1428,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1487,7 +1449,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1508,7 +1470,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1529,7 +1491,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1556,7 +1518,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1577,7 +1539,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1598,7 +1560,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1619,7 +1581,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1646,7 +1608,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1667,7 +1629,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1715,7 +1677,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1736,7 +1698,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1757,7 +1719,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1778,7 +1740,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1799,7 +1761,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1820,7 +1782,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1841,7 +1803,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1862,7 +1824,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1883,7 +1845,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1904,7 +1866,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1925,7 +1887,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1946,7 +1908,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1967,7 +1929,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1988,7 +1950,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2009,7 +1971,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2030,7 +1992,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2051,7 +2013,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2072,7 +2034,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2093,7 +2055,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2114,7 +2076,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2135,7 +2097,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2156,7 +2118,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2177,7 +2139,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2198,7 +2160,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2219,7 +2181,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2240,7 +2202,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2261,7 +2223,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2282,7 +2244,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2303,7 +2265,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2324,7 +2286,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2345,7 +2307,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2366,7 +2328,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2387,7 +2349,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2408,7 +2370,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2429,7 +2391,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2450,7 +2412,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2471,7 +2433,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2492,7 +2454,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2513,7 +2475,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2534,7 +2496,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2555,7 +2517,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2576,7 +2538,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2597,7 +2559,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2618,7 +2580,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2639,7 +2601,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2660,7 +2622,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2681,7 +2643,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2702,7 +2664,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2723,7 +2685,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2735,12068 +2697,14663 @@ } }, { - "name": "d88e6a3c-687d-4990-a516-da739070bf81", - "location": "North Central US", + "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", "properties": { - "accountName": "kal-continuous7", + "accountName": "r-database-account-5849", "apiType": "Sql", - "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-20T00:32:15Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", - "creationTime": "2022-06-07T20:09:39Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", + "creationTime": "2023-04-20T00:32:16Z", + "deletionTime": "2023-04-20T01:48:35Z" } ] } }, { - "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "location": "North Central US", + "name": "e7a884a0-d941-44cf-a344-2dd1d8c91284", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7a884a0-d941-44cf-a344-2dd1d8c91284", "properties": { - "accountName": "kal-continuous7-restored1", + "accountName": "restoredaccount-6463", "apiType": "Sql", - "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", - "creationTime": "2022-06-10T19:23:44Z" + "regionalDatabaseAccountInstanceId": "6e242568-ac8e-4a84-8fae-a1dcd16744f4", + "creationTime": "2023-04-20T01:47:59Z", + "deletionTime": "2023-04-20T01:48:35Z" } ] } }, { - "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", - "location": "North Central US", + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", "properties": { - "accountName": "kal-continuous7-demorestore", + "accountName": "r-database-account-1146", "apiType": "Sql", - "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", - "creationTime": "2022-06-10T21:20:46Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" } ] } }, { - "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "location": "North Central US", + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", "properties": { - "accountName": "test-billing-continuous30", + "accountName": "restoredaccount-2866", "apiType": "Sql", - "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", - "creationTime": "2022-07-28T21:54:21Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", - "creationTime": "2022-08-31T21:09:14Z" - }, - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", - "creationTime": "2022-08-31T22:24:21Z" + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" } ] } }, { - "name": "e84733a9-ee18-456c-b12b-1d37e542608b", - "location": "North Central US", + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", "properties": { - "accountName": "new-cosmsosdb-account", + "accountName": "r-database-account-2733", "apiType": "Sql", - "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", - "creationTime": "2022-08-31T20:34:40Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" } ] } }, { - "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", - "location": "North Central US", + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", "properties": { - "accountName": "amisitestpitracc", + "accountName": "restoredaccount-3296", "apiType": "Sql", - "creationTime": "2023-03-29T04:22:22Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", - "creationTime": "2023-03-29T04:22:23Z", - "deletionTime": "2023-03-30T19:57:43Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", - "creationTime": "2023-03-29T07:29:18Z", - "deletionTime": "2023-04-07T16:42:28Z" + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" } ] } }, { - "name": "2414c009-8022-442c-9ab6-81c276eb2a99", - "location": "Central US", + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", "properties": { - "accountName": "vinh-periodic", + "accountName": "r-database-account-1488", "apiType": "Sql", - "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-20T17:39:33Z", + "deletionTime": "2023-04-20T18:58:46Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", - "creationTime": "2022-06-06T19:53:54Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z", + "deletionTime": "2023-04-20T18:58:46Z" } ] } }, { - "name": "5716280d-381e-4045-b936-d0edbfc7317b", - "location": "Central US", + "name": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7eacbb40-8bdb-406d-8575-558cd9b354f9", "properties": { - "accountName": "databaseaccount9284", + "accountName": "restoredaccount-2310", "apiType": "Sql", - "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", - "creationTime": "2022-09-20T05:50:06Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "f9737a8e-afaf-4854-8c7b-f329e07f46f9", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z" } ] } }, { - "name": "34a9cb27-53a5-4143-9af7-810285110075", - "location": "Central US", + "name": "f591e4b2-9c04-469d-afe6-a2b193a58e47", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", "properties": { - "accountName": "databaseaccount6234", + "accountName": "r-database-account-4943", "apiType": "Sql", - "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T20:19:57Z", + "deletionTime": "2023-04-20T21:39:27Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", - "creationTime": "2022-09-20T09:04:23Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "92e8f4e6-8eda-4927-b6ac-c1c04818becd", + "creationTime": "2023-04-20T20:19:58Z", + "deletionTime": "2023-04-20T21:39:27Z" } ] } }, { - "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "location": "Central US", + "name": "fe240915-dab9-40fb-8e13-34442caac7ad", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fe240915-dab9-40fb-8e13-34442caac7ad", "properties": { - "accountName": "databaseaccount8251", + "accountName": "restoredaccount-5177", "apiType": "Sql", - "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", - "creationTime": "2022-09-20T16:29:45Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "27017eec-528f-405d-bf07-b58a96de8c58", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z" } ] } }, { - "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", - "location": "Central US", + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", "properties": { - "accountName": "sql-portal-test", + "accountName": "r-database-account-8195", "apiType": "Sql", - "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-20T19:59:26Z", + "deletionTime": "2023-04-21T01:12:17Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", - "creationTime": "2023-03-08T18:47:23Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z", + "deletionTime": "2023-04-21T01:12:17Z" } ] } }, { - "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "location": "Central US", + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", "properties": { - "accountName": "dsapaliga-xrr-cu", + "accountName": "r-database-account-7066", "apiType": "Sql", - "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-19T23:41:57Z", + "deletionTime": "2023-04-21T01:12:23Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", - "creationTime": "2023-03-30T15:10:47Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", - "creationTime": "2023-03-30T15:13:00Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z", + "deletionTime": "2023-04-21T01:12:23Z" } ] } }, { - "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", - "location": "West US 2", + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", "properties": { - "accountName": "databaseaccount2058", - "apiType": "MongoDB", - "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "r-database-account-6809", + "apiType": "Sql", + "creationTime": "2023-04-17T19:29:22Z", + "deletionTime": "2023-04-21T01:12:28Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", - "creationTime": "2022-04-14T02:10:49Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z", + "deletionTime": "2023-04-21T01:12:28Z" } ] } }, { - "name": "fce807d5-4358-4ea1-8130-0439181f6be0", - "location": "West US 2", + "name": "144aa61f-d16f-4aae-a275-11ef72fb1190", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/144aa61f-d16f-4aae-a275-11ef72fb1190", "properties": { - "accountName": "vinh-demo-periodic", + "accountName": "r-database-account-4142", "apiType": "Sql", - "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-21T06:00:50Z", + "deletionTime": "2023-04-21T07:19:35Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", - "creationTime": "2022-05-26T04:53:41Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8db86752-ff62-4c0e-9333-bdefa734e812", + "creationTime": "2023-04-21T06:00:51Z", + "deletionTime": "2023-04-21T07:19:35Z" } ] } }, { - "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "location": "West US 2", + "name": "c687e62c-ec09-4efc-9342-23ae350e7740", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c687e62c-ec09-4efc-9342-23ae350e7740", "properties": { - "accountName": "vinh-demo-continous30", + "accountName": "restoredaccount-1645", "apiType": "Sql", - "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", - "creationTime": "2022-05-26T03:29:42Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e66835c-deac-47de-95da-b865c7b0a129", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z" } ] } }, { - "name": "9177692a-0db9-4c0c-af1d-af0310418b43", - "location": "West US 2", + "name": "fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", "properties": { - "accountName": "vinh-demo-continous7", + "accountName": "r-database-account-2653", "apiType": "Sql", - "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-21T07:42:52Z", + "deletionTime": "2023-04-21T09:02:00Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", - "creationTime": "2022-05-26T04:14:50Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "49d49eef-34f6-4e5e-8adf-82c0fbbf381b", + "creationTime": "2023-04-21T07:42:53Z", + "deletionTime": "2023-04-21T09:02:00Z" } ] } }, { - "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", - "location": "West US 2", + "name": "59716638-e531-4fc3-b214-f841cd6c1a32", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/59716638-e531-4fc3-b214-f841cd6c1a32", "properties": { - "accountName": "vinh-demo-periodic2", + "accountName": "restoredaccount-4970", "apiType": "Sql", - "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", - "creationTime": "2022-05-26T18:12:07Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "7f2297ad-a930-4a38-aedc-cbe192ccb9eb", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z" } ] } }, { - "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "location": "West US 2", + "name": "d88e6a3c-687d-4990-a516-da739070bf81", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", "properties": { - "accountName": "vinh-demo-continous7-2", + "accountName": "kal-continuous7", "apiType": "Sql", - "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2022-06-07T20:09:38Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", - "creationTime": "2022-05-26T18:05:53Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", + "creationTime": "2022-06-07T20:09:39Z" } ] } }, { - "name": "9484f425-a747-4e73-b8c4-04983e984315", - "location": "West US 2", + "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", "properties": { - "accountName": "clip2dbd2gollbc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "kal-continuous7-restored1", + "apiType": "Sql", + "creationTime": "2022-06-10T19:23:44Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", + "creationTime": "2022-06-10T19:23:44Z" } ] } }, { - "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", - "location": "West US 2", + "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", "properties": { - "accountName": "cli3fpzmlckewgo", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:36:38Z", - "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "kal-continuous7-demorestore", + "apiType": "Sql", + "creationTime": "2022-06-10T21:20:46Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", - "creationTime": "2023-04-07T19:36:40Z", - "deletionTime": "2023-04-07T19:56:52Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", + "creationTime": "2022-06-10T21:20:46Z" } ] } }, { - "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", - "location": "West US 2", + "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", "properties": { - "accountName": "cliftacbeowmtnb", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "test-billing-continuous30", + "apiType": "Sql", + "creationTime": "2022-07-28T21:54:20Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", + "creationTime": "2022-07-28T21:54:21Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", + "creationTime": "2022-08-31T21:09:14Z" + }, + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", + "creationTime": "2022-08-31T22:24:21Z" } ] } }, { - "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "location": "West US 2", + "name": "e84733a9-ee18-456c-b12b-1d37e542608b", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", "properties": { - "accountName": "clipofi2jwwbtu4", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:22:17Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "new-cosmsosdb-account", + "apiType": "Sql", + "creationTime": "2022-08-31T20:34:40Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", - "creationTime": "2023-04-07T21:22:18Z", - "deletionTime": "2023-04-07T21:42:59Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", + "creationTime": "2022-08-31T20:34:40Z" } ] } }, { - "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", - "location": "West US 2", + "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", "properties": { - "accountName": "cliwq55chmmvzvu", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T13:41:40Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "amisitestpitracc", + "apiType": "Sql", + "creationTime": "2023-03-29T04:22:22Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", - "creationTime": "2023-04-14T13:41:42Z", - "deletionTime": "2023-04-14T14:02:52Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", + "creationTime": "2023-03-29T04:22:23Z", + "deletionTime": "2023-03-30T19:57:43Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", + "creationTime": "2023-03-29T07:29:18Z", + "deletionTime": "2023-04-07T16:42:28Z" } ] } }, { - "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "location": "West US 2", + "name": "2414c009-8022-442c-9ab6-81c276eb2a99", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", "properties": { - "accountName": "clixsitnvbfssqd", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "vinh-periodic", + "apiType": "Sql", + "creationTime": "2022-06-06T19:53:54Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", + "creationTime": "2022-06-06T19:53:54Z" } ] } }, { - "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", - "location": "West US 2", + "name": "5716280d-381e-4045-b936-d0edbfc7317b", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", "properties": { - "accountName": "clinwxgmq26mrzy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T14:50:51Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "databaseaccount9284", + "apiType": "Sql", + "creationTime": "2022-09-20T05:50:05Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", - "creationTime": "2023-04-14T14:50:52Z", - "deletionTime": "2023-04-14T15:10:01Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", + "creationTime": "2022-09-20T05:50:06Z" } ] } }, { - "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", - "location": "West US 2", + "name": "34a9cb27-53a5-4143-9af7-810285110075", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", "properties": { - "accountName": "clibaor2akp53uy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "databaseaccount6234", + "apiType": "Sql", + "creationTime": "2022-09-20T09:04:22Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", + "creationTime": "2022-09-20T09:04:23Z" } ] } }, { - "name": "40dbd153-3d36-42b7-8649-48e6307849f9", - "location": "East US 2", + "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", "properties": { - "accountName": "cliiumnemwk33v5", + "accountName": "databaseaccount8251", "apiType": "Sql", - "creationTime": "2023-04-14T16:48:09Z", - "oldestRestorableTime": "2023-04-14T16:48:09Z", + "creationTime": "2022-09-20T16:29:44Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", - "creationTime": "2023-04-14T16:48:10Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", + "creationTime": "2022-09-20T16:29:45Z" } ] } }, { - "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "location": "East US 2", + "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", "properties": { - "accountName": "cli-continuous30-cylyo7wg-restored", + "accountName": "sql-portal-test", "apiType": "Sql", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-03-08T18:47:23Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", + "creationTime": "2023-03-08T18:47:23Z" } ] } }, { - "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", - "location": "East US 2", + "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", "properties": { - "accountName": "cli-continuous30-cylyo7wg", + "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", - "creationTime": "2023-03-24T15:42:44Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-03-30T15:10:46Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", - "creationTime": "2023-03-24T15:42:45Z", - "deletionTime": "2023-03-24T16:01:53Z" - } - ] - } - }, - { - "name": "8c9286c5-c880-449c-9030-327de00e36b6", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", - "properties": { - "accountName": "cli-continuous30-wuye4s75", - "apiType": "Sql", - "creationTime": "2023-03-24T16:04:54Z", - "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", - "restorableLocations": [ + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", + "creationTime": "2023-03-30T15:10:47Z" + }, { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", - "creationTime": "2023-03-24T16:04:55Z", - "deletionTime": "2023-03-24T16:12:17Z" + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", + "creationTime": "2023-03-30T15:13:00Z" } ] } }, { - "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "location": "East US 2", + "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", "properties": { - "accountName": "cli-continuous30-qpysbnmc", - "apiType": "Sql", - "creationTime": "2023-03-24T16:45:16Z", - "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "databaseaccount2058", + "apiType": "MongoDB", + "creationTime": "2022-04-14T02:10:48Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", - "creationTime": "2023-03-24T16:45:17Z", - "deletionTime": "2023-03-24T16:52:22Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", + "creationTime": "2022-04-14T02:10:49Z" } ] } }, { - "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "location": "East US 2", + "name": "fce807d5-4358-4ea1-8130-0439181f6be0", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", "properties": { - "accountName": "cli-continuous30-4uv42csa", + "accountName": "vinh-demo-periodic", "apiType": "Sql", - "creationTime": "2023-03-24T17:01:08Z", - "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2022-05-26T04:53:41Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", - "creationTime": "2023-03-24T17:01:09Z", - "deletionTime": "2023-03-24T17:07:36Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", + "creationTime": "2022-05-26T04:53:41Z" } ] } }, { - "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "location": "East US 2", + "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", "properties": { - "accountName": "cli-continuous30-e6tglvvh", + "accountName": "vinh-demo-continous30", "apiType": "Sql", - "creationTime": "2023-03-24T19:18:31Z", - "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2022-05-26T03:29:41Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", - "creationTime": "2023-03-24T19:18:32Z", - "deletionTime": "2023-03-24T19:24:33Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", + "creationTime": "2022-05-26T03:29:42Z" } ] } }, { - "name": "bbc21107-730f-460e-a806-f73643e95a9b", - "location": "East US 2", + "name": "9177692a-0db9-4c0c-af1d-af0310418b43", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", "properties": { - "accountName": "cli-continuous30-mgbfodqo", + "accountName": "vinh-demo-continous7", "apiType": "Sql", - "creationTime": "2023-03-29T20:28:56Z", - "deletionTime": "2023-03-29T20:31:58Z", - "oldestRestorableTime": "2023-03-22T20:31:58Z", + "creationTime": "2022-05-26T04:14:49Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", - "creationTime": "2023-03-29T20:28:57Z", - "deletionTime": "2023-03-29T20:31:58Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", + "creationTime": "2022-05-26T04:14:50Z" } ] } }, { - "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "location": "East US 2", + "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", "properties": { - "accountName": "cli-continuous30-pqnqtvrw", + "accountName": "vinh-demo-periodic2", "apiType": "Sql", - "creationTime": "2023-03-29T20:35:21Z", - "deletionTime": "2023-03-29T20:38:56Z", - "oldestRestorableTime": "2023-03-22T20:38:56Z", + "creationTime": "2022-05-26T18:12:07Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", - "creationTime": "2023-03-29T20:37:50Z", - "deletionTime": "2023-03-29T20:38:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", - "creationTime": "2023-03-29T20:35:22Z", - "deletionTime": "2023-03-29T20:38:56Z" + "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", + "creationTime": "2022-05-26T18:12:07Z" } ] } }, { - "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", - "location": "East US 2", + "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", "properties": { - "accountName": "cli-continuous30-nbcgdudl", + "accountName": "vinh-demo-continous7-2", "apiType": "Sql", - "creationTime": "2023-03-29T20:49:15Z", - "deletionTime": "2023-03-29T20:52:54Z", - "oldestRestorableTime": "2023-03-22T20:52:54Z", + "creationTime": "2022-05-26T18:05:53Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", - "creationTime": "2023-03-29T20:51:44Z", - "deletionTime": "2023-03-29T20:52:54Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", - "creationTime": "2023-03-29T20:49:16Z", - "deletionTime": "2023-03-29T20:52:54Z" + "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", + "creationTime": "2022-05-26T18:05:53Z" } ] } }, { - "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "location": "East US 2", + "name": "9484f425-a747-4e73-b8c4-04983e984315", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", "properties": { - "accountName": "cli-continuous30-fvguiiqd", - "apiType": "Sql", - "creationTime": "2023-03-29T20:58:03Z", - "deletionTime": "2023-03-29T21:26:03Z", - "oldestRestorableTime": "2023-03-22T21:26:03Z", + "accountName": "clip2dbd2gollbc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", - "creationTime": "2023-03-29T21:00:45Z", - "deletionTime": "2023-03-29T21:26:03Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", - "creationTime": "2023-03-29T20:58:04Z", - "deletionTime": "2023-03-29T21:26:03Z" + "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z" } ] } }, { - "name": "648c8b93-36da-440c-801c-19d18e3b3f21", - "location": "East US 2", + "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", "properties": { - "accountName": "cli-continuous30-of2nmx5u", - "apiType": "Sql", - "creationTime": "2023-03-29T22:12:53Z", - "deletionTime": "2023-03-29T22:16:03Z", - "oldestRestorableTime": "2023-03-22T22:16:03Z", + "accountName": "cli3fpzmlckewgo", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:36:38Z", + "deletionTime": "2023-04-07T19:56:52Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", - "creationTime": "2023-03-29T22:12:54Z", - "deletionTime": "2023-03-29T22:16:03Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", + "creationTime": "2023-04-07T19:36:40Z", + "deletionTime": "2023-04-07T19:56:52Z" } ] } }, { - "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "location": "East US 2", + "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", "properties": { - "accountName": "cli-continuous30-guwsy4ak", - "apiType": "Sql", - "creationTime": "2023-03-29T22:43:18Z", - "deletionTime": "2023-03-29T22:48:52Z", - "oldestRestorableTime": "2023-03-22T22:48:52Z", + "accountName": "cliftacbeowmtnb", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", - "creationTime": "2023-03-29T22:45:41Z", - "deletionTime": "2023-03-29T22:48:52Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", - "creationTime": "2023-03-29T22:43:19Z", - "deletionTime": "2023-03-29T22:48:52Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z" } ] } }, { - "name": "751f535c-90ad-422c-8791-d85058c83f19", - "location": "East US 2", + "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "clipofi2jwwbtu4", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:22:17Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", + "creationTime": "2023-04-07T21:22:18Z", + "deletionTime": "2023-04-07T21:42:59Z" } ] } }, { - "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", - "location": "East US 2", + "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h", - "apiType": "Sql", - "creationTime": "2023-04-05T22:25:06Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cliwq55chmmvzvu", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T13:41:40Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", - "creationTime": "2023-04-05T22:25:07Z", - "deletionTime": "2023-04-05T22:47:27Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", + "creationTime": "2023-04-14T13:41:42Z", + "deletionTime": "2023-04-14T14:02:52Z" } ] } }, { - "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", - "location": "East US 2", + "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", "properties": { - "accountName": "cli-systemid-pml7r44tlwdv-restored", - "apiType": "Sql", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "clixsitnvbfssqd", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z" } ] } }, { - "name": "9962f6da-506f-408b-927f-4eb07a12c382", - "location": "East US 2", + "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", "properties": { - "accountName": "cli-systemid-pml7r44tlwdv", - "apiType": "Sql", - "creationTime": "2023-04-07T15:43:38Z", - "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "clinwxgmq26mrzy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T14:50:51Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", - "creationTime": "2023-04-07T15:43:39Z", - "deletionTime": "2023-04-07T16:06:55Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", + "creationTime": "2023-04-14T14:50:52Z", + "deletionTime": "2023-04-14T15:10:01Z" } ] } }, { - "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", - "location": "East US 2", + "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", "properties": { - "accountName": "cli-continuous30-5xp42uvg", - "apiType": "Sql", - "creationTime": "2023-04-07T16:35:15Z", - "deletionTime": "2023-04-07T16:38:01Z", - "oldestRestorableTime": "2023-03-31T16:38:01Z", + "accountName": "clibaor2akp53uy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", - "creationTime": "2023-04-07T16:35:16Z", - "deletionTime": "2023-04-07T16:38:01Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z" } ] } }, { - "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", + "name": "40dbd153-3d36-42b7-8649-48e6307849f9", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", "properties": { - "accountName": "cli-continuous7-kadtogihc", + "accountName": "cliiumnemwk33v5", "apiType": "Sql", - "creationTime": "2023-04-07T16:56:03Z", - "deletionTime": "2023-04-07T16:57:45Z", - "oldestRestorableTime": "2023-03-31T16:56:56Z", + "creationTime": "2023-04-14T16:48:09Z", + "oldestRestorableTime": "2023-04-14T16:48:09Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", - "creationTime": "2023-04-07T16:56:04Z", - "deletionTime": "2023-04-07T16:57:45Z" + "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", + "creationTime": "2023-04-14T16:48:10Z" } ] } }, { - "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", + "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", "properties": { - "accountName": "cli-continuous7-ghrp5g2r3", + "accountName": "cli-continuous30-cylyo7wg-restored", "apiType": "Sql", - "creationTime": "2023-04-07T17:01:55Z", - "deletionTime": "2023-04-07T17:04:46Z", - "oldestRestorableTime": "2023-03-31T17:04:46Z", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", - "creationTime": "2023-04-07T17:01:56Z", - "deletionTime": "2023-04-07T17:04:46Z" + "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z" } ] } }, { - "name": "53c25e9f-44ca-4509-adcd-23802185cba8", + "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", "properties": { - "accountName": "cli-periodic-d6qxquiv72md", + "accountName": "cli-continuous30-cylyo7wg", "apiType": "Sql", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z", - "oldestRestorableTime": "2023-04-07T17:18:47Z", + "creationTime": "2023-03-24T15:42:44Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z" + "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", + "creationTime": "2023-03-24T15:42:45Z", + "deletionTime": "2023-03-24T16:01:53Z" } ] } }, { - "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "name": "8c9286c5-c880-449c-9030-327de00e36b6", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", "properties": { - "accountName": "cliufubmalcsuyb", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-wuye4s75", + "apiType": "Sql", + "creationTime": "2023-03-24T16:04:54Z", + "deletionTime": "2023-03-24T16:12:17Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z" + "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", + "creationTime": "2023-03-24T16:04:55Z", + "deletionTime": "2023-03-24T16:12:17Z" } ] } }, { - "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", + "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", "properties": { - "accountName": "clitfyptqa45syc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:33:20Z", - "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-qpysbnmc", + "apiType": "Sql", + "creationTime": "2023-03-24T16:45:16Z", + "deletionTime": "2023-03-24T16:52:22Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", - "creationTime": "2023-04-07T17:33:21Z", - "deletionTime": "2023-04-07T17:52:53Z" + "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", + "creationTime": "2023-03-24T16:45:17Z", + "deletionTime": "2023-03-24T16:52:22Z" } ] } }, { - "name": "329d5785-2f04-451c-a748-f79d0f562ff9", + "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", "properties": { - "accountName": "cliahilffivwqwi", - "apiType": "MongoDB", - "creationTime": "2023-04-07T19:26:23Z", - "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-4uv42csa", + "apiType": "Sql", + "creationTime": "2023-03-24T17:01:08Z", + "deletionTime": "2023-03-24T17:07:36Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", - "creationTime": "2023-04-07T19:26:24Z", - "deletionTime": "2023-04-07T19:31:01Z" + "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", + "creationTime": "2023-03-24T17:01:09Z", + "deletionTime": "2023-03-24T17:07:36Z" } ] } }, { - "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", "properties": { - "accountName": "cli5nu6pl77n5ia", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:12:03Z", - "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-e6tglvvh", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:31Z", + "deletionTime": "2023-03-24T19:24:33Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", - "creationTime": "2023-04-07T20:12:04Z", - "deletionTime": "2023-04-07T20:16:06Z" + "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", + "creationTime": "2023-03-24T19:18:32Z", + "deletionTime": "2023-03-24T19:24:33Z" } ] } }, { - "name": "ced5610b-4422-469f-a9ca-f83235fea285", + "name": "bbc21107-730f-460e-a806-f73643e95a9b", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", "properties": { - "accountName": "clisrkiadnudmcc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:25:32Z", - "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-mgbfodqo", + "apiType": "Sql", + "creationTime": "2023-03-29T20:28:56Z", + "deletionTime": "2023-03-29T20:31:58Z", + "oldestRestorableTime": "2023-03-22T20:31:58Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", - "creationTime": "2023-04-07T20:25:33Z", - "deletionTime": "2023-04-07T20:29:54Z" + "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", + "creationTime": "2023-03-29T20:28:57Z", + "deletionTime": "2023-03-29T20:31:58Z" } ] } }, { - "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", "properties": { - "accountName": "cliypixaxarcyzp", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:36:05Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-pqnqtvrw", + "apiType": "Sql", + "creationTime": "2023-03-29T20:35:21Z", + "deletionTime": "2023-03-29T20:38:56Z", + "oldestRestorableTime": "2023-03-22T20:38:56Z", "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", + "creationTime": "2023-03-29T20:37:50Z", + "deletionTime": "2023-03-29T20:38:56Z" + }, { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", - "creationTime": "2023-04-07T20:36:06Z", - "deletionTime": "2023-04-07T20:56:57Z" + "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", + "creationTime": "2023-03-29T20:35:22Z", + "deletionTime": "2023-03-29T20:38:56Z" } ] } }, { - "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", + "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", "properties": { - "accountName": "clilnfxvj3jbdds", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-nbcgdudl", + "apiType": "Sql", + "creationTime": "2023-03-29T20:49:15Z", + "deletionTime": "2023-03-29T20:52:54Z", + "oldestRestorableTime": "2023-03-22T20:52:54Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", + "creationTime": "2023-03-29T20:51:44Z", + "deletionTime": "2023-03-29T20:52:54Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", + "creationTime": "2023-03-29T20:49:16Z", + "deletionTime": "2023-03-29T20:52:54Z" } ] } }, { - "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", + "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", "properties": { - "accountName": "cliwoaphmlu77h5", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:56:14Z", - "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-fvguiiqd", + "apiType": "Sql", + "creationTime": "2023-03-29T20:58:03Z", + "deletionTime": "2023-03-29T21:26:03Z", + "oldestRestorableTime": "2023-03-22T21:26:03Z", "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", + "creationTime": "2023-03-29T21:00:45Z", + "deletionTime": "2023-03-29T21:26:03Z" + }, { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", - "creationTime": "2023-04-07T21:56:15Z", - "deletionTime": "2023-04-07T21:59:20Z" + "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", + "creationTime": "2023-03-29T20:58:04Z", + "deletionTime": "2023-03-29T21:26:03Z" } ] } }, { - "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "name": "648c8b93-36da-440c-801c-19d18e3b3f21", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", "properties": { - "accountName": "clioh53zckfrcxk", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T22:04:54Z", - "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-of2nmx5u", + "apiType": "Sql", + "creationTime": "2023-03-29T22:12:53Z", + "deletionTime": "2023-03-29T22:16:03Z", + "oldestRestorableTime": "2023-03-22T22:16:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", - "creationTime": "2023-04-07T22:04:55Z", - "deletionTime": "2023-04-07T22:09:53Z" + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", + "creationTime": "2023-03-29T22:12:54Z", + "deletionTime": "2023-03-29T22:16:03Z" } ] } }, { - "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", + "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", "properties": { - "accountName": "cli7cixib236qbg", + "accountName": "cli-continuous30-guwsy4ak", "apiType": "Sql", - "creationTime": "2023-04-08T17:25:42Z", - "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-03-29T22:43:18Z", + "deletionTime": "2023-03-29T22:48:52Z", + "oldestRestorableTime": "2023-03-22T22:48:52Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", - "creationTime": "2023-04-08T17:25:44Z", - "deletionTime": "2023-04-08T17:29:36Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", + "creationTime": "2023-03-29T22:45:41Z", + "deletionTime": "2023-03-29T22:48:52Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", + "creationTime": "2023-03-29T22:43:19Z", + "deletionTime": "2023-03-29T22:48:52Z" } ] } }, { - "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "name": "751f535c-90ad-422c-8791-d85058c83f19", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", "properties": { - "accountName": "cli-continuous7-hfvk4t4fj", + "accountName": "cli-systemid-kq6yvu46yp4h-restored", "apiType": "Sql", - "creationTime": "2023-04-13T14:48:07Z", - "deletionTime": "2023-04-13T14:49:43Z", - "oldestRestorableTime": "2023-04-06T14:49:43Z", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", - "creationTime": "2023-04-13T14:48:08Z", - "deletionTime": "2023-04-13T14:49:43Z" + "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z" } ] } }, { - "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", + "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", "properties": { - "accountName": "cli-continuous7-zputoz3gu", + "accountName": "cli-systemid-kq6yvu46yp4h", "apiType": "Sql", - "creationTime": "2023-04-14T13:23:19Z", - "deletionTime": "2023-04-14T13:26:29Z", - "oldestRestorableTime": "2023-04-07T13:26:29Z", + "creationTime": "2023-04-05T22:25:06Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", - "creationTime": "2023-04-14T13:23:20Z", - "deletionTime": "2023-04-14T13:26:29Z" + "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", + "creationTime": "2023-04-05T22:25:07Z", + "deletionTime": "2023-04-05T22:47:27Z" } ] } }, { - "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", "properties": { - "accountName": "cli-continuous7-737ullqld", + "accountName": "cli-systemid-pml7r44tlwdv-restored", "apiType": "Sql", - "creationTime": "2023-04-14T13:36:13Z", - "deletionTime": "2023-04-14T13:38:00Z", - "oldestRestorableTime": "2023-04-07T13:38:00Z", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", - "creationTime": "2023-04-14T13:36:14Z", - "deletionTime": "2023-04-14T13:38:00Z" + "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z" } ] } }, { - "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "name": "9962f6da-506f-408b-927f-4eb07a12c382", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", "properties": { - "accountName": "clidiym44m6kuui", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-systemid-pml7r44tlwdv", + "apiType": "Sql", + "creationTime": "2023-04-07T15:43:38Z", + "deletionTime": "2023-04-07T16:06:55Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z" + "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", + "creationTime": "2023-04-07T15:43:39Z", + "deletionTime": "2023-04-07T16:06:55Z" } ] } }, { - "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", "properties": { - "accountName": "clifxznjcelc2k7", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:07:29Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous30-5xp42uvg", + "apiType": "Sql", + "creationTime": "2023-04-07T16:35:15Z", + "deletionTime": "2023-04-07T16:38:01Z", + "oldestRestorableTime": "2023-03-31T16:38:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", - "creationTime": "2023-04-14T14:07:30Z", - "deletionTime": "2023-04-14T14:27:29Z" + "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", + "creationTime": "2023-04-07T16:35:16Z", + "deletionTime": "2023-04-07T16:38:01Z" } ] } }, { - "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", "properties": { - "accountName": "clifdo3gehahcp3", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:32:21Z", - "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous7-kadtogihc", + "apiType": "Sql", + "creationTime": "2023-04-07T16:56:03Z", + "deletionTime": "2023-04-07T16:57:45Z", + "oldestRestorableTime": "2023-03-31T16:56:56Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", - "creationTime": "2023-04-14T14:32:22Z", - "deletionTime": "2023-04-14T14:36:53Z" + "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", + "creationTime": "2023-04-07T16:56:04Z", + "deletionTime": "2023-04-07T16:57:45Z" } ] } }, { - "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", "properties": { - "accountName": "clijvrcnqk7clgr", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:39:15Z", - "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous7-ghrp5g2r3", + "apiType": "Sql", + "creationTime": "2023-04-07T17:01:55Z", + "deletionTime": "2023-04-07T17:04:46Z", + "oldestRestorableTime": "2023-03-31T17:04:46Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", - "creationTime": "2023-04-14T15:39:16Z", - "deletionTime": "2023-04-14T15:59:46Z" + "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", + "creationTime": "2023-04-07T17:01:56Z", + "deletionTime": "2023-04-07T17:04:46Z" } ] } }, { - "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "name": "53c25e9f-44ca-4509-adcd-23802185cba8", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", "properties": { - "accountName": "cliw5rqb5ajsohh", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-periodic-d6qxquiv72md", + "apiType": "Sql", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z", + "oldestRestorableTime": "2023-04-07T17:18:47Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z" + "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z" } ] } }, { - "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", "properties": { - "accountName": "cliz3js7jmkwxxb", - "apiType": "Sql", - "creationTime": "2023-04-14T16:51:53Z", - "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cliufubmalcsuyb", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", - "creationTime": "2023-04-14T16:51:54Z", - "deletionTime": "2023-04-14T16:55:53Z" + "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z" } ] } }, { - "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", "properties": { - "accountName": "cliamicotk3huk3", - "apiType": "MongoDB", - "creationTime": "2023-04-14T16:59:34Z", - "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", - "creationTime": "2023-04-14T16:59:35Z", - "deletionTime": "2023-04-14T17:04:35Z" + "accountName": "clitfyptqa45syc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:33:20Z", + "deletionTime": "2023-04-07T17:52:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", + "creationTime": "2023-04-07T17:33:21Z", + "deletionTime": "2023-04-07T17:52:53Z" } ] } }, { - "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "name": "329d5785-2f04-451c-a748-f79d0f562ff9", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", "properties": { - "accountName": "cli7fcxogqa75ng", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T17:07:39Z", - "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cliahilffivwqwi", + "apiType": "MongoDB", + "creationTime": "2023-04-07T19:26:23Z", + "deletionTime": "2023-04-07T19:31:01Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", - "creationTime": "2023-04-14T17:07:40Z", - "deletionTime": "2023-04-14T17:12:37Z" + "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", + "creationTime": "2023-04-07T19:26:24Z", + "deletionTime": "2023-04-07T19:31:01Z" } ] } }, { - "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", "properties": { - "accountName": "clibijii3gdxu7r", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T17:16:06Z", - "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli5nu6pl77n5ia", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:12:03Z", + "deletionTime": "2023-04-07T20:16:06Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", - "creationTime": "2023-04-14T17:16:07Z", - "deletionTime": "2023-04-14T17:19:35Z" + "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", + "creationTime": "2023-04-07T20:12:04Z", + "deletionTime": "2023-04-07T20:16:06Z" } ] } }, { - "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "name": "ced5610b-4422-469f-a9ca-f83235fea285", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", "properties": { - "accountName": "cli-continuous7-ixtyb5gvo", - "apiType": "Sql", - "creationTime": "2023-04-14T17:21:52Z", - "deletionTime": "2023-04-14T17:23:42Z", - "oldestRestorableTime": "2023-04-07T17:22:55Z", + "accountName": "clisrkiadnudmcc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:25:32Z", + "deletionTime": "2023-04-07T20:29:54Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", - "creationTime": "2023-04-14T17:21:53Z", - "deletionTime": "2023-04-14T17:23:42Z" + "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", + "creationTime": "2023-04-07T20:25:33Z", + "deletionTime": "2023-04-07T20:29:54Z" } ] } }, { - "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", "properties": { - "accountName": "cli-continuous30-expjec5z", - "apiType": "Sql", - "creationTime": "2023-04-14T17:25:24Z", - "deletionTime": "2023-04-14T17:27:06Z", - "oldestRestorableTime": "2023-04-07T17:27:06Z", + "accountName": "cliypixaxarcyzp", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:36:05Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", - "creationTime": "2023-04-14T17:25:25Z", - "deletionTime": "2023-04-14T17:27:06Z" + "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", + "creationTime": "2023-04-07T20:36:06Z", + "deletionTime": "2023-04-07T20:56:57Z" } ] } }, { - "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", "properties": { - "accountName": "cli-periodic-ppe7oaphbkgu", - "apiType": "Sql", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z", - "oldestRestorableTime": "2023-04-14T18:01:21Z", + "accountName": "clilnfxvj3jbdds", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z" + "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z" } ] } }, { - "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cliwoaphmlu77h5", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:56:14Z", + "deletionTime": "2023-04-07T21:59:20Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z" + "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", + "creationTime": "2023-04-07T21:56:15Z", + "deletionTime": "2023-04-07T21:59:20Z" } ] } }, { - "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g", - "apiType": "Sql", - "creationTime": "2023-04-14T18:08:00Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "clioh53zckfrcxk", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T22:04:54Z", + "deletionTime": "2023-04-07T22:09:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", - "creationTime": "2023-04-14T18:08:01Z", - "deletionTime": "2023-04-14T18:31:44Z" + "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", + "creationTime": "2023-04-07T22:04:55Z", + "deletionTime": "2023-04-07T22:09:53Z" } ] } }, { - "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", "properties": { - "accountName": "cli7i23nmwwvyik", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T18:36:04Z", - "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli7cixib236qbg", + "apiType": "Sql", + "creationTime": "2023-04-08T17:25:42Z", + "deletionTime": "2023-04-08T17:29:36Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", - "creationTime": "2023-04-14T18:36:05Z", - "deletionTime": "2023-04-14T18:40:37Z" + "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", + "creationTime": "2023-04-08T17:25:44Z", + "deletionTime": "2023-04-08T17:29:36Z" } ] } }, { - "name": "f4004a76-8173-4d36-9590-6090cce37a4d", - "location": "West Europe", + "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", "properties": { - "accountName": "aholdtest", - "apiType": "MongoDB", - "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "cli-continuous7-hfvk4t4fj", + "apiType": "Sql", + "creationTime": "2023-04-13T14:48:07Z", + "deletionTime": "2023-04-13T14:49:43Z", + "oldestRestorableTime": "2023-04-06T14:49:43Z", "restorableLocations": [ { - "locationName": "West Europe", - "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", - "creationTime": "2021-07-01T19:34:25Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", + "creationTime": "2023-04-13T14:48:08Z", + "deletionTime": "2023-04-13T14:49:43Z" } ] } }, { - "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", - "location": "West US", + "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", "properties": { - "accountName": "targetacct112", + "accountName": "cli-continuous7-zputoz3gu", "apiType": "Sql", - "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T13:23:19Z", + "deletionTime": "2023-04-14T13:26:29Z", + "oldestRestorableTime": "2023-04-07T13:26:29Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", - "creationTime": "2021-03-01T10:33:41Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", + "creationTime": "2023-04-14T13:23:20Z", + "deletionTime": "2023-04-14T13:26:29Z" } ] } }, { - "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", - "location": "West US", + "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", "properties": { - "accountName": "pitrmongotest", - "apiType": "MongoDB", - "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cli-continuous7-737ullqld", + "apiType": "Sql", + "creationTime": "2023-04-14T13:36:13Z", + "deletionTime": "2023-04-14T13:38:00Z", + "oldestRestorableTime": "2023-04-07T13:38:00Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", - "creationTime": "2020-10-01T17:27:23Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", + "creationTime": "2023-04-14T13:36:14Z", + "deletionTime": "2023-04-14T13:38:00Z" } ] } }, { - "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", - "location": "West US", + "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", "properties": { - "accountName": "pitrmongowithsnapshots", - "apiType": "MongoDB", - "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "clidiym44m6kuui", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", - "creationTime": "2021-01-07T19:45:07Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z" } ] } }, { - "name": "36d321ce-5c39-4d66-9347-47beebff1142", - "location": "West US", + "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", "properties": { - "accountName": "test0319-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "clifxznjcelc2k7", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:07:29Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", - "creationTime": "2021-07-07T21:28:13Z" - }, - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", - "creationTime": "2021-07-07T21:28:13Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", + "creationTime": "2023-04-14T14:07:30Z", + "deletionTime": "2023-04-14T14:27:29Z" } ] } }, { - "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "location": "West US", + "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", "properties": { - "accountName": "pitracctdemo2", - "apiType": "Sql", - "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "clifdo3gehahcp3", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:32:21Z", + "deletionTime": "2023-04-14T14:36:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", - "creationTime": "2020-08-11T02:34:24Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", + "creationTime": "2023-04-14T14:32:22Z", + "deletionTime": "2023-04-14T14:36:53Z" } ] } }, { - "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "location": "West US", + "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", "properties": { - "accountName": "ptr-target", - "apiType": "Sql", - "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "clijvrcnqk7clgr", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:39:15Z", + "deletionTime": "2023-04-14T15:59:46Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", - "creationTime": "2021-01-05T22:25:24Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", + "creationTime": "2023-04-14T15:39:16Z", + "deletionTime": "2023-04-14T15:59:46Z" } ] } }, { - "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "location": "West US", + "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", "properties": { - "accountName": "pitrmongotest-restore", - "apiType": "MongoDB", - "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cliw5rqb5ajsohh", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", - "creationTime": "2020-10-01T21:24:45Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z" } ] } }, { - "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", - "location": "West US", + "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", "properties": { - "accountName": "pitrdemo1015", + "accountName": "cliz3js7jmkwxxb", "apiType": "Sql", - "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T16:51:53Z", + "deletionTime": "2023-04-14T16:55:53Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", - "creationTime": "2020-10-15T17:29:00Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", + "creationTime": "2023-04-14T16:51:54Z", + "deletionTime": "2023-04-14T16:55:53Z" } ] } }, { - "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "location": "West US", + "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", "properties": { - "accountName": "pitrdemorestored1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cliamicotk3huk3", + "apiType": "MongoDB", + "creationTime": "2023-04-14T16:59:34Z", + "deletionTime": "2023-04-14T17:04:35Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", - "creationTime": "2020-10-15T17:37:20Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", + "creationTime": "2023-04-14T16:59:35Z", + "deletionTime": "2023-04-14T17:04:35Z" } ] } }, { - "name": "23e99a35-cd36-4df4-9614-f767a03b9995", - "location": "West US", + "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", "properties": { - "accountName": "subbannageeta", - "apiType": "Sql", - "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cli7fcxogqa75ng", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T17:07:39Z", + "deletionTime": "2023-04-14T17:12:37Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", - "creationTime": "2020-08-08T01:04:53Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", - "creationTime": "2020-08-08T01:15:44Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", + "creationTime": "2023-04-14T17:07:40Z", + "deletionTime": "2023-04-14T17:12:37Z" } ] } }, { - "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "location": "West US", + "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", "properties": { - "accountName": "scottkirill", - "apiType": "Sql", - "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "clibijii3gdxu7r", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T17:16:06Z", + "deletionTime": "2023-04-14T17:19:35Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", - "creationTime": "2021-04-15T17:21:20Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", + "creationTime": "2023-04-14T17:16:07Z", + "deletionTime": "2023-04-14T17:19:35Z" } ] } }, { - "name": "01c9a078-6ca2-43fd-92c7-632167c86590", - "location": "West US", + "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", "properties": { - "accountName": "test0319-pitr-r1", + "accountName": "cli-continuous7-ixtyb5gvo", "apiType": "Sql", - "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T17:21:52Z", + "deletionTime": "2023-04-14T17:23:42Z", + "oldestRestorableTime": "2023-04-07T17:22:55Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", - "creationTime": "2021-07-07T21:54:07Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", + "creationTime": "2023-04-14T17:21:53Z", + "deletionTime": "2023-04-14T17:23:42Z" } ] } }, { - "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", - "location": "West US", + "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", "properties": { - "accountName": "onboardingtestaccount0124", + "accountName": "cli-continuous30-expjec5z", "apiType": "Sql", - "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T17:25:24Z", + "deletionTime": "2023-04-14T17:27:06Z", + "oldestRestorableTime": "2023-04-07T17:27:06Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", - "creationTime": "2022-01-24T20:24:44Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", + "creationTime": "2023-04-14T17:25:25Z", + "deletionTime": "2023-04-14T17:27:06Z" } ] } }, { - "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", - "location": "West US", + "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", "properties": { - "accountName": "onboardingtestaccount0124-restored", + "accountName": "cli-periodic-ppe7oaphbkgu", "apiType": "Sql", - "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z", + "oldestRestorableTime": "2023-04-14T18:01:21Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", - "creationTime": "2022-01-24T20:48:23Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z" } ] } }, { - "name": "01652628-d4ef-449d-846e-38e8250f0b9a", - "location": "West US", + "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", "properties": { - "accountName": "vinh-table2-restore", - "apiType": "Table, Sql", - "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cli-systemid-ppze3bdfpo3g-restored", + "apiType": "Sql", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", - "creationTime": "2022-04-07T00:48:08Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z" } ] } }, { - "name": "4b754475-3b23-4485-9205-87ac1661af13", - "location": "West US", + "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", "properties": { - "accountName": "vinhpitr30-cli", + "accountName": "cli-systemid-ppze3bdfpo3g", "apiType": "Sql", - "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-14T18:08:00Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", - "creationTime": "2022-04-29T23:50:21Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", + "creationTime": "2023-04-14T18:08:01Z", + "deletionTime": "2023-04-14T18:31:44Z" } ] } }, { - "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", - "location": "West US", + "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", "properties": { - "accountName": "vinhperiodic3-cli", - "apiType": "Sql", - "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "cli7i23nmwwvyik", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T18:36:04Z", + "deletionTime": "2023-04-14T18:40:37Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", - "creationTime": "2022-06-03T17:21:23Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", + "creationTime": "2023-04-14T18:36:05Z", + "deletionTime": "2023-04-14T18:40:37Z" } ] } }, { - "name": "023add2e-531e-4574-a7df-4d09c97d548d", - "location": "West US", + "name": "f4004a76-8173-4d36-9590-6090cce37a4d", + "location": "West Europe", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", "properties": { - "accountName": "vinh-pitr7-portal", - "apiType": "Sql", - "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "aholdtest", + "apiType": "MongoDB", + "creationTime": "2021-07-01T19:34:24Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", - "creationTime": "2022-05-31T19:24:34Z" + "locationName": "West Europe", + "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", + "creationTime": "2021-07-01T19:34:25Z" } ] } }, { - "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7", + "accountName": "targetacct112", "apiType": "Sql", - "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2021-03-01T10:33:41Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", - "creationTime": "2022-05-31T23:36:11Z" + "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", + "creationTime": "2021-03-01T10:33:41Z" } ] } }, { - "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", - "apiType": "Sql", - "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "pitrmongotest", + "apiType": "MongoDB", + "creationTime": "2020-10-01T17:27:22Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", - "creationTime": "2022-06-03T18:42:58Z" + "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", + "creationTime": "2020-10-01T17:27:23Z" } ] } }, { - "name": "3808b68e-7cae-4b91-901b-e29b35b311be", + "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", "properties": { - "accountName": "vinh-periodic-again", - "apiType": "Sql", - "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "pitrmongowithsnapshots", + "apiType": "MongoDB", + "creationTime": "2021-01-07T19:45:07Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", - "creationTime": "2022-06-10T20:01:48Z" + "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", + "creationTime": "2021-01-07T19:45:07Z" } ] } }, { - "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "name": "36d321ce-5c39-4d66-9347-47beebff1142", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", "properties": { - "accountName": "vinh-periodic-again2", + "accountName": "test0319-r1", "apiType": "Sql", - "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2021-07-07T21:28:13Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", - "creationTime": "2022-06-10T23:57:37Z" + "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", + "creationTime": "2021-07-07T21:28:13Z" + }, + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", + "creationTime": "2021-07-07T21:28:13Z" } ] } }, { - "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", + "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", "properties": { - "accountName": "vinh-gremlin-again", - "apiType": "Gremlin, Sql", - "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "pitracctdemo2", + "apiType": "Sql", + "creationTime": "2020-08-11T02:34:23Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", - "creationTime": "2022-07-28T01:55:28Z" + "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", + "creationTime": "2020-08-11T02:34:24Z" } ] } }, { - "name": "df774a43-6e6f-4725-82d0-67c18c69a906", + "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", "properties": { - "accountName": "vinh-table-tennis-cli-0190", - "apiType": "Table, Sql", - "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "ptr-target", + "apiType": "Sql", + "creationTime": "2021-01-05T22:25:24Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", - "creationTime": "2022-08-11T05:19:28Z" + "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", + "creationTime": "2021-01-05T22:25:24Z" } ] } }, { - "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", "properties": { - "accountName": "ddhamothsqlpitracc", - "apiType": "Sql", - "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "pitrmongotest-restore", + "apiType": "MongoDB", + "creationTime": "2020-10-01T21:24:45Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", - "creationTime": "2022-10-12T07:15:51Z" + "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", + "creationTime": "2020-10-01T21:24:45Z" } ] } }, { - "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", "properties": { - "accountName": "ddhamothmongopitracc", - "apiType": "MongoDB", - "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "accountName": "pitrdemo1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:28:59Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", - "creationTime": "2022-10-12T07:18:55Z" + "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", + "creationTime": "2020-10-15T17:29:00Z" } ] } }, { - "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", "properties": { - "accountName": "dsapaligadbkeytest", + "accountName": "pitrdemorestored1015", "apiType": "Sql", - "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2020-10-15T17:37:20Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", - "creationTime": "2022-10-27T16:53:56Z" + "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", + "creationTime": "2020-10-15T17:37:20Z" } ] } }, { - "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "name": "23e99a35-cd36-4df4-9614-f767a03b9995", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", "properties": { - "accountName": "ddhamothpitrsqlacc2", + "accountName": "subbannageeta", "apiType": "Sql", - "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2020-08-08T01:04:53Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", - "creationTime": "2022-11-15T21:30:18Z" + "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", + "creationTime": "2020-08-08T01:04:53Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", + "creationTime": "2020-08-08T01:15:44Z" } ] } }, { - "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", + "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", "properties": { - "accountName": "vinkumsql", + "accountName": "scottkirill", "apiType": "Sql", - "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2021-04-15T17:21:20Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", - "creationTime": "2022-12-06T19:35:16Z" + "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", + "creationTime": "2021-04-15T17:21:20Z" } ] } }, { - "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "name": "01c9a078-6ca2-43fd-92c7-632167c86590", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", "properties": { - "accountName": "dsapaliga-monitor-test2", + "accountName": "test0319-pitr-r1", "apiType": "Sql", - "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2021-07-07T21:54:07Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", - "creationTime": "2022-12-09T16:57:51Z" + "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", + "creationTime": "2021-07-07T21:54:07Z" } ] } }, { - "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", "properties": { - "accountName": "nikhiltestmig", + "accountName": "onboardingtestaccount0124", "apiType": "Sql", - "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2022-01-24T20:24:43Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", - "creationTime": "2022-12-15T19:23:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", - "creationTime": "2022-12-19T06:05:45Z" + "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", + "creationTime": "2022-01-24T20:24:44Z" } ] } }, { - "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", "properties": { - "accountName": "nikhil-multi-region-pitr", + "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", - "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2022-01-24T20:48:23Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", - "creationTime": "2022-12-19T06:00:52Z" + "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", + "creationTime": "2022-01-24T20:48:23Z" } ] } }, { - "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "name": "01652628-d4ef-449d-846e-38e8250f0b9a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", "properties": { - "accountName": "test-account23", - "apiType": "Sql", - "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "vinh-table2-restore", + "apiType": "Table, Sql", + "creationTime": "2022-04-07T00:48:08Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", - "creationTime": "2022-12-24T18:24:53Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", - "creationTime": "2022-12-24T18:27:11Z" + "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", + "creationTime": "2022-04-07T00:48:08Z" } ] } }, { - "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "name": "4b754475-3b23-4485-9205-87ac1661af13", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", "properties": { - "accountName": "testpitr", + "accountName": "vinhpitr30-cli", "apiType": "Sql", - "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2022-04-29T23:50:20Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", - "creationTime": "2022-12-27T20:37:02Z" + "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", + "creationTime": "2022-04-29T23:50:21Z" } ] } }, { - "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", + "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", "properties": { - "accountName": "readregionrestore-test", + "accountName": "vinhperiodic3-cli", "apiType": "Sql", - "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2022-06-03T17:21:23Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", - "creationTime": "2023-01-09T23:54:38Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", + "creationTime": "2022-06-03T17:21:23Z" } ] } }, { - "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", + "name": "023add2e-531e-4574-a7df-4d09c97d548d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", "properties": { - "accountName": "vinhpitr30-cli-arm-restore", + "accountName": "vinh-pitr7-portal", "apiType": "Sql", - "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2022-05-31T19:24:32Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", - "creationTime": "2023-02-06T21:33:23Z" + "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", + "creationTime": "2022-05-31T19:24:34Z" } ] } }, { - "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", + "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", "properties": { - "accountName": "grem-test", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "vinh-periodic-portal-tobemigrated-to-7", + "apiType": "Sql", + "creationTime": "2022-05-31T23:36:11Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", - "creationTime": "2023-03-06T19:09:59Z" + "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", + "creationTime": "2022-05-31T23:36:11Z" } ] } }, { - "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", + "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", "properties": { - "accountName": "mongo-test-1", - "apiType": "MongoDB", - "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", + "apiType": "Sql", + "creationTime": "2022-06-03T18:42:58Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", - "creationTime": "2023-03-06T19:26:34Z" + "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", + "creationTime": "2022-06-03T18:42:58Z" } ] } }, { - "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", + "name": "3808b68e-7cae-4b91-901b-e29b35b311be", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", "properties": { - "accountName": "sql-test-1", + "accountName": "vinh-periodic-again", "apiType": "Sql", - "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2022-06-10T20:01:48Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", - "creationTime": "2023-03-06T19:26:24Z" + "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", + "creationTime": "2022-06-10T20:01:48Z" } ] } }, { - "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", "properties": { - "accountName": "tables-test-1", - "apiType": "Table, Sql", - "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "vinh-periodic-again2", + "apiType": "Sql", + "creationTime": "2022-06-10T23:57:37Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", - "creationTime": "2023-03-06T19:30:25Z" + "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", + "creationTime": "2022-06-10T23:57:37Z" } ] } }, { - "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:32:50Z", - "oldestRestorableTime": "2023-03-28T14:32:50Z", + "accountName": "vinh-gremlin-again", + "apiType": "Gremlin, Sql", + "creationTime": "2022-07-28T01:55:28Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", - "creationTime": "2023-03-28T14:32:51Z" + "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", + "creationTime": "2022-07-28T01:55:28Z" } ] } }, { - "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "name": "df774a43-6e6f-4725-82d0-67c18c69a906", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T14:53:31Z", - "oldestRestorableTime": "2023-03-28T14:53:31Z", + "accountName": "vinh-table-tennis-cli-0190", + "apiType": "Table, Sql", + "creationTime": "2022-08-11T05:19:28Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", - "creationTime": "2023-03-28T14:53:32Z" + "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", + "creationTime": "2022-08-11T05:19:28Z" } ] } }, { - "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", "properties": { - "accountName": "dsapaliga-xrr-test", + "accountName": "ddhamothsqlpitracc", "apiType": "Sql", - "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "creationTime": "2022-10-12T07:15:50Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", - "creationTime": "2023-03-30T04:00:58Z" + "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", + "creationTime": "2022-10-12T07:15:51Z" } ] } }, { - "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", "properties": { - "accountName": "dsapaliga-xrr-cli2", - "apiType": "Sql", - "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T00:08:04Z", + "accountName": "ddhamothmongopitracc", + "apiType": "MongoDB", + "creationTime": "2022-10-12T07:18:54Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", - "creationTime": "2023-03-30T04:23:36Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", - "creationTime": "2023-03-30T04:25:59Z" + "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", + "creationTime": "2022-10-12T07:18:55Z" } ] } }, { - "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", "properties": { - "accountName": "r-grem-db-account-938", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:55Z", - "oldestRestorableTime": "2023-04-05T19:15:55Z", + "accountName": "dsapaligadbkeytest", + "apiType": "Sql", + "creationTime": "2022-10-27T16:53:54Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", - "creationTime": "2023-04-05T19:15:56Z" + "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", + "creationTime": "2022-10-27T16:53:56Z" } ] } }, { - "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", + "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", "properties": { - "accountName": "r-table-account-9379", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:45:49Z", - "oldestRestorableTime": "2023-04-06T01:45:49Z", + "accountName": "ddhamothpitrsqlacc2", + "apiType": "Sql", + "creationTime": "2022-11-15T21:30:17Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", - "creationTime": "2023-04-06T01:45:51Z" + "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", + "creationTime": "2022-11-15T21:30:18Z" } ] } }, { - "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", + "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", "properties": { - "accountName": "restoredaccount-5362", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:03:48Z", - "oldestRestorableTime": "2023-04-06T02:03:48Z", + "accountName": "vinkumsql", + "apiType": "Sql", + "creationTime": "2022-12-06T19:35:15Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", - "creationTime": "2023-04-06T02:03:48Z" + "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", + "creationTime": "2022-12-06T19:35:16Z" } ] } }, { - "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", + "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", "properties": { - "accountName": "r-table-account-5626", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:12:24Z", - "oldestRestorableTime": "2023-04-06T02:12:24Z", + "accountName": "dsapaliga-monitor-test2", + "apiType": "Sql", + "creationTime": "2022-12-09T16:57:51Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", - "creationTime": "2023-04-06T02:12:25Z" + "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", + "creationTime": "2022-12-09T16:57:51Z" } ] } }, { - "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", + "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", "properties": { - "accountName": "r-table-account-1300", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:23:30Z", - "oldestRestorableTime": "2023-04-06T06:23:30Z", + "accountName": "nikhiltestmig", + "apiType": "Sql", + "creationTime": "2022-12-15T19:23:56Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", - "creationTime": "2023-04-06T06:23:31Z" + "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", + "creationTime": "2022-12-15T19:23:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", + "creationTime": "2022-12-19T06:05:45Z" } ] } }, { - "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", "properties": { - "accountName": "restoredaccount-9934", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:40:38Z", - "oldestRestorableTime": "2023-04-06T06:40:38Z", + "accountName": "nikhil-multi-region-pitr", + "apiType": "Sql", + "creationTime": "2022-12-19T06:00:50Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", - "creationTime": "2023-04-06T06:40:38Z" + "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", + "creationTime": "2022-12-19T06:00:52Z" } ] } }, { - "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", + "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", "properties": { - "accountName": "cli3grog6psgdfn", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T17:59:19Z", - "oldestRestorableTime": "2023-04-06T17:59:19Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", - "creationTime": "2023-04-06T17:59:20Z" - } - ] - } - }, - { - "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "properties": { - "accountName": "clil3ignfqgk6kz", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:02:42Z", - "oldestRestorableTime": "2023-04-06T18:02:42Z", + "accountName": "test-account23", + "apiType": "Sql", + "creationTime": "2022-12-24T18:24:52Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", - "creationTime": "2023-04-06T18:02:43Z" + "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", + "creationTime": "2022-12-24T18:24:53Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", + "creationTime": "2022-12-24T18:27:11Z" } ] } }, { - "name": "4656b731-172b-4064-8514-f327e6841751", + "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", "properties": { - "accountName": "cliysii3c7g3auw", + "accountName": "testpitr", "apiType": "Sql", - "creationTime": "2023-04-06T18:00:38Z", - "oldestRestorableTime": "2023-04-06T18:00:38Z", + "creationTime": "2022-12-27T20:37:00Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", - "creationTime": "2023-04-06T18:00:39Z" + "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", + "creationTime": "2022-12-27T20:37:02Z" } ] } }, { - "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", + "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", "properties": { - "accountName": "clihhqescxfepto", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:03:34Z", - "oldestRestorableTime": "2023-04-06T18:03:34Z", + "accountName": "readregionrestore-test", + "apiType": "Sql", + "creationTime": "2023-01-09T23:54:38Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", - "creationTime": "2023-04-06T18:03:35Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", + "creationTime": "2023-01-09T23:54:38Z" } ] } }, { - "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", "properties": { - "accountName": "clib27b72hyhtjp", + "accountName": "vinhpitr30-cli-arm-restore", "apiType": "Sql", - "creationTime": "2023-04-06T18:02:02Z", - "oldestRestorableTime": "2023-04-06T18:02:02Z", + "creationTime": "2023-02-06T21:33:23Z", + "oldestRestorableTime": "2023-03-22T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", - "creationTime": "2023-04-06T18:02:03Z" + "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", + "creationTime": "2023-02-06T21:33:23Z" } ] } }, { - "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", "properties": { - "accountName": "clio3vmbb3n7afz", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:07:13Z", - "oldestRestorableTime": "2023-04-06T18:07:13Z", + "accountName": "grem-test", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-06T19:09:58Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", - "creationTime": "2023-04-06T18:07:14Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", + "creationTime": "2023-03-06T19:09:59Z" } ] } }, { - "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", "properties": { - "accountName": "cliuoo2ldjhxpwj", + "accountName": "mongo-test-1", "apiType": "MongoDB", - "creationTime": "2023-04-06T18:04:25Z", - "oldestRestorableTime": "2023-04-06T18:04:25Z", + "creationTime": "2023-03-06T19:26:33Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", - "creationTime": "2023-04-06T18:04:26Z" + "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", + "creationTime": "2023-03-06T19:26:34Z" } ] } }, { - "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", + "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", "properties": { - "accountName": "clizy6bsjdyjuwo", + "accountName": "sql-test-1", "apiType": "Sql", - "creationTime": "2023-04-06T18:03:13Z", - "oldestRestorableTime": "2023-04-06T18:03:13Z", + "creationTime": "2023-03-06T19:26:23Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", - "creationTime": "2023-04-06T18:03:14Z" + "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", + "creationTime": "2023-03-06T19:26:24Z" } ] } }, { - "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", "properties": { - "accountName": "clizcfq53tcsj7v", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:04:50Z", - "oldestRestorableTime": "2023-04-06T18:04:50Z", + "accountName": "tables-test-1", + "apiType": "Table, Sql", + "creationTime": "2023-03-06T19:30:24Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", - "creationTime": "2023-04-06T18:04:52Z" + "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", + "creationTime": "2023-03-06T19:30:25Z" } ] } }, { - "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", + "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", "properties": { - "accountName": "cli2gdxmqiqo4ik", + "accountName": "cosmosdb-1232", "apiType": "Sql", - "creationTime": "2023-04-06T18:02:58Z", - "oldestRestorableTime": "2023-04-06T18:02:58Z", + "creationTime": "2023-03-28T14:32:50Z", + "oldestRestorableTime": "2023-03-28T14:32:50Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", - "creationTime": "2023-04-06T18:02:58Z" + "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", + "creationTime": "2023-03-28T14:32:51Z" } ] } }, { - "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", + "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", "properties": { - "accountName": "cligsqzmjlnuq5j", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:06:34Z", - "oldestRestorableTime": "2023-04-06T18:06:34Z", + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:53:31Z", + "oldestRestorableTime": "2023-03-28T14:53:31Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", - "creationTime": "2023-04-06T18:06:35Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", + "creationTime": "2023-03-28T14:53:32Z" } ] } }, { - "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", "properties": { - "accountName": "r-grem-db-account-7826", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:27:30Z", - "oldestRestorableTime": "2023-04-06T18:27:30Z", + "accountName": "dsapaliga-xrr-test", + "apiType": "Sql", + "creationTime": "2023-03-30T04:00:57Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", - "creationTime": "2023-04-06T18:27:31Z" + "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", + "creationTime": "2023-03-30T04:00:58Z" } ] } }, { - "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", + "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", "properties": { - "accountName": "cliec3z5o2473ut", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:31:12Z", - "oldestRestorableTime": "2023-04-06T18:31:12Z", + "accountName": "dsapaliga-xrr-cli2", + "apiType": "Sql", + "creationTime": "2023-03-30T04:23:35Z", + "oldestRestorableTime": "2023-04-14T09:36:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", - "creationTime": "2023-04-06T18:31:13Z" + "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", + "creationTime": "2023-03-30T04:23:36Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", + "creationTime": "2023-03-30T04:25:59Z" } ] } }, { - "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", + "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", "properties": { - "accountName": "clinrylxz344nf3", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:44Z", - "oldestRestorableTime": "2023-04-06T18:29:44Z", + "accountName": "r-grem-db-account-938", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:55Z", + "oldestRestorableTime": "2023-04-05T19:15:55Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", - "creationTime": "2023-04-06T18:29:45Z" + "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", + "creationTime": "2023-04-05T19:15:56Z" } ] } }, { - "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", + "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", "properties": { - "accountName": "clilaesevwusylf", + "accountName": "r-table-account-9379", "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:34:21Z", - "oldestRestorableTime": "2023-04-06T18:34:21Z", + "creationTime": "2023-04-06T01:45:49Z", + "oldestRestorableTime": "2023-04-06T01:45:49Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", - "creationTime": "2023-04-06T18:34:23Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", + "creationTime": "2023-04-06T01:45:51Z" } ] } }, { - "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", "properties": { - "accountName": "cli7p3qq5cporx7", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:35Z", - "oldestRestorableTime": "2023-04-06T18:29:35Z", + "accountName": "restoredaccount-5362", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:03:48Z", + "oldestRestorableTime": "2023-04-06T02:03:48Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", - "creationTime": "2023-04-06T18:29:36Z" + "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", + "creationTime": "2023-04-06T02:03:48Z" } ] } }, { - "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", + "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", "properties": { - "accountName": "clij75qd5uyobmj", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:31:13Z", - "oldestRestorableTime": "2023-04-06T18:31:13Z", + "accountName": "r-table-account-5626", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:12:24Z", + "oldestRestorableTime": "2023-04-06T02:12:24Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", - "creationTime": "2023-04-06T18:31:14Z" + "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", + "creationTime": "2023-04-06T02:12:25Z" } ] } }, { - "name": "8a7d6175-2174-495f-9147-ade59959d7a1", + "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", "properties": { - "accountName": "r-grem-db-account-5687", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:34:51Z", - "oldestRestorableTime": "2023-04-06T18:34:51Z", + "accountName": "r-table-account-1300", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:23:30Z", + "oldestRestorableTime": "2023-04-06T06:23:30Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", - "creationTime": "2023-04-06T18:34:52Z" + "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", + "creationTime": "2023-04-06T06:23:31Z" } ] } }, { - "name": "91df614a-d17c-4510-8727-354fe0d1447d", + "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", "properties": { - "accountName": "clivh5sbv5jm2tn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:55Z", - "oldestRestorableTime": "2023-04-06T18:35:55Z", + "accountName": "restoredaccount-9934", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:40:38Z", + "oldestRestorableTime": "2023-04-06T06:40:38Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", - "creationTime": "2023-04-06T18:35:56Z" + "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", + "creationTime": "2023-04-06T06:40:38Z" } ] } }, { - "name": "073071e8-3f6e-4510-9175-440346e61824", + "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", "properties": { - "accountName": "clipmrcd5m37yeh", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:27Z", - "oldestRestorableTime": "2023-04-06T18:34:27Z", + "accountName": "cli3grog6psgdfn", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T17:59:19Z", + "oldestRestorableTime": "2023-04-06T17:59:19Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", - "creationTime": "2023-04-06T18:34:28Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", + "creationTime": "2023-04-06T17:59:20Z" } ] } }, { - "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", + "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", "properties": { - "accountName": "clieik2we2gw5zk", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:28Z", - "oldestRestorableTime": "2023-04-06T18:34:28Z", + "accountName": "clil3ignfqgk6kz", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:02:42Z", + "oldestRestorableTime": "2023-04-06T18:02:42Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", - "creationTime": "2023-04-06T18:34:29Z" + "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", + "creationTime": "2023-04-06T18:02:43Z" } ] } }, { - "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", + "name": "4656b731-172b-4064-8514-f327e6841751", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", "properties": { - "accountName": "cli24p5gxxip4wp", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:36:07Z", - "oldestRestorableTime": "2023-04-06T18:36:07Z", + "accountName": "cliysii3c7g3auw", + "apiType": "Sql", + "creationTime": "2023-04-06T18:00:38Z", + "oldestRestorableTime": "2023-04-06T18:00:38Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", - "creationTime": "2023-04-06T18:36:08Z" + "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", + "creationTime": "2023-04-06T18:00:39Z" } ] } }, { - "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", "properties": { - "accountName": "cli4nd5tsapqcn4", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:38:50Z", - "oldestRestorableTime": "2023-04-06T18:38:50Z", + "accountName": "clihhqescxfepto", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:03:34Z", + "oldestRestorableTime": "2023-04-06T18:03:34Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", - "creationTime": "2023-04-06T18:38:51Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", + "creationTime": "2023-04-06T18:03:35Z" } ] } }, { - "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", "properties": { - "accountName": "r-database-account-1077", + "accountName": "clib27b72hyhtjp", "apiType": "Sql", - "creationTime": "2023-04-20T00:07:31Z", - "oldestRestorableTime": "2023-04-20T00:07:31Z", + "creationTime": "2023-04-06T18:02:02Z", + "oldestRestorableTime": "2023-04-06T18:02:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", - "creationTime": "2023-04-20T00:07:32Z" + "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", + "creationTime": "2023-04-06T18:02:03Z" } ] } }, { - "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", "properties": { - "accountName": "r-database-account-4892", - "apiType": "Sql", - "creationTime": "2023-03-23T10:54:16Z", - "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clio3vmbb3n7afz", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:07:13Z", + "oldestRestorableTime": "2023-04-06T18:07:13Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", - "creationTime": "2023-03-23T10:54:17Z", - "deletionTime": "2023-03-23T10:54:57Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", + "creationTime": "2023-04-06T18:07:14Z" } ] } }, { - "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", "properties": { - "accountName": "r-database-account-6730", - "apiType": "Sql", - "creationTime": "2023-03-23T11:05:04Z", - "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cliuoo2ldjhxpwj", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:04:25Z", + "oldestRestorableTime": "2023-04-06T18:04:25Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", - "creationTime": "2023-03-23T11:05:05Z", - "deletionTime": "2023-03-23T11:06:25Z" + "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", + "creationTime": "2023-04-06T18:04:26Z" } ] } }, { - "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", "properties": { - "accountName": "dbaccount-6688", + "accountName": "clizy6bsjdyjuwo", "apiType": "Sql", - "creationTime": "2023-03-23T11:16:07Z", - "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:03:13Z", + "oldestRestorableTime": "2023-04-06T18:03:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", - "creationTime": "2023-03-23T11:16:08Z", - "deletionTime": "2023-03-23T11:20:59Z" + "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", + "creationTime": "2023-04-06T18:03:14Z" } ] } }, { - "name": "0768f3f1-b168-46b8-bdd2-671139a55152", + "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", "properties": { - "accountName": "dbaccount-1880", - "apiType": "Sql", - "creationTime": "2023-03-23T11:22:51Z", - "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clizcfq53tcsj7v", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:04:50Z", + "oldestRestorableTime": "2023-04-06T18:04:50Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", - "creationTime": "2023-03-23T11:22:52Z", - "deletionTime": "2023-03-23T11:26:46Z" + "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", + "creationTime": "2023-04-06T18:04:52Z" } ] } }, { - "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", + "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", "properties": { - "accountName": "cosmosdb-1215", + "accountName": "cli2gdxmqiqo4ik", "apiType": "Sql", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:02:58Z", + "oldestRestorableTime": "2023-04-06T18:02:58Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z" + "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", + "creationTime": "2023-04-06T18:02:58Z" } ] } }, { - "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", + "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T21:16:33Z", - "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cligsqzmjlnuq5j", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:06:34Z", + "oldestRestorableTime": "2023-04-06T18:06:34Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", - "creationTime": "2023-03-23T21:16:34Z", - "deletionTime": "2023-03-23T21:20:17Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", + "creationTime": "2023-04-06T18:06:35Z" } ] } }, { - "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:08Z", - "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-7826", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:27:30Z", + "oldestRestorableTime": "2023-04-06T18:27:30Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", - "creationTime": "2023-03-24T16:01:09Z", - "deletionTime": "2023-03-24T16:04:52Z" + "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", + "creationTime": "2023-04-06T18:27:31Z" } ] } }, { - "name": "151f9fea-5280-4201-8e95-0ea414c89379", + "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:18:09Z", - "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cliec3z5o2473ut", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:31:12Z", + "oldestRestorableTime": "2023-04-06T18:31:12Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", - "creationTime": "2023-03-24T16:18:10Z", - "deletionTime": "2023-03-24T16:21:49Z" + "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", + "creationTime": "2023-04-06T18:31:13Z" } ] } }, { - "name": "edbde762-f533-4cc9-886a-a2196e203b19", + "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", "properties": { - "accountName": "cosmosdb-1216", + "accountName": "clinrylxz344nf3", "apiType": "Sql", - "creationTime": "2023-03-24T17:00:54Z", - "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:29:44Z", + "oldestRestorableTime": "2023-04-06T18:29:44Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", - "creationTime": "2023-03-24T17:00:55Z", - "deletionTime": "2023-03-24T17:03:11Z" + "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", + "creationTime": "2023-04-06T18:29:45Z" } ] } }, { - "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", + "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clilaesevwusylf", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:34:21Z", + "oldestRestorableTime": "2023-04-06T18:34:21Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", + "creationTime": "2023-04-06T18:34:23Z" } ] } }, { - "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", + "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", "properties": { - "accountName": "cosmosdb-1215", + "accountName": "cli7p3qq5cporx7", "apiType": "Sql", - "creationTime": "2023-03-24T18:51:09Z", - "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:29:35Z", + "oldestRestorableTime": "2023-04-06T18:29:35Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", - "creationTime": "2023-03-24T18:51:10Z", - "deletionTime": "2023-03-24T18:51:31Z" + "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", + "creationTime": "2023-04-06T18:29:36Z" } ] } }, { - "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T19:00:50Z", - "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clij75qd5uyobmj", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:31:13Z", + "oldestRestorableTime": "2023-04-06T18:31:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", - "creationTime": "2023-03-24T19:00:51Z", - "deletionTime": "2023-03-24T19:15:40Z" + "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", + "creationTime": "2023-04-06T18:31:14Z" } ] } }, { - "name": "219254b8-6f3a-466e-b360-95f262bfe51e", + "name": "8a7d6175-2174-495f-9147-ade59959d7a1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", "properties": { - "accountName": "cosmosdb-1217", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:09Z", - "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-5687", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:34:51Z", + "oldestRestorableTime": "2023-04-06T18:34:51Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", - "creationTime": "2023-03-24T19:18:10Z", - "deletionTime": "2023-03-24T19:20:56Z" + "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", + "creationTime": "2023-04-06T18:34:52Z" } ] } }, { - "name": "e888bd61-957a-4028-af47-b834b0a267ab", + "name": "91df614a-d17c-4510-8727-354fe0d1447d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-24T19:34:54Z", - "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clivh5sbv5jm2tn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:55Z", + "oldestRestorableTime": "2023-04-06T18:35:55Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", - "creationTime": "2023-03-24T19:34:55Z", - "deletionTime": "2023-03-24T19:50:50Z" + "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", + "creationTime": "2023-04-06T18:35:56Z" } ] } }, { - "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "name": "073071e8-3f6e-4510-9175-440346e61824", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", "properties": { - "accountName": "restored2-cosmosdb-1210-5", + "accountName": "clipmrcd5m37yeh", "apiType": "Sql", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:34:27Z", + "oldestRestorableTime": "2023-04-06T18:34:27Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z" + "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", + "creationTime": "2023-04-06T18:34:28Z" } ] } }, { - "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "clieik2we2gw5zk", "apiType": "Sql", - "creationTime": "2023-03-24T20:32:49Z", - "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:34:28Z", + "oldestRestorableTime": "2023-04-06T18:34:28Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", - "creationTime": "2023-03-24T20:32:50Z", - "deletionTime": "2023-03-24T20:50:46Z" + "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", + "creationTime": "2023-04-06T18:34:29Z" } ] } }, { - "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:11:27Z", - "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cli24p5gxxip4wp", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:36:07Z", + "oldestRestorableTime": "2023-04-06T18:36:07Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", - "creationTime": "2023-03-25T16:11:28Z", - "deletionTime": "2023-03-25T16:23:23Z" + "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", + "creationTime": "2023-04-06T18:36:08Z" } ] } }, { - "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", + "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cli4nd5tsapqcn4", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:38:50Z", + "oldestRestorableTime": "2023-04-06T18:38:50Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", + "creationTime": "2023-04-06T18:38:51Z" } ] } }, { - "name": "2533e0b0-a675-441d-9b41-147c66cb8834", + "name": "e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-848", "apiType": "Sql", - "creationTime": "2023-03-26T16:03:42Z", - "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-21T01:16:43Z", + "oldestRestorableTime": "2023-04-21T01:16:43Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", - "creationTime": "2023-03-26T16:03:43Z", - "deletionTime": "2023-03-26T16:15:36Z" + "regionalDatabaseAccountInstanceId": "65cc97fd-c609-4c1f-b1b3-f4aa18afb791", + "creationTime": "2023-04-21T01:16:44Z" } ] } }, { - "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", + "name": "47575ff7-4efb-4430-a90c-e9bce7766753", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-5886", "apiType": "Sql", - "creationTime": "2023-03-27T03:23:23Z", - "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-21T05:49:21Z", + "oldestRestorableTime": "2023-04-21T05:49:21Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", - "creationTime": "2023-03-27T03:23:24Z", - "deletionTime": "2023-03-27T03:41:45Z" + "regionalDatabaseAccountInstanceId": "0c58830e-7439-43f5-90a0-29eef674e0b8", + "creationTime": "2023-04-21T05:49:22Z" } ] } }, { - "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", + "name": "f02c31bc-a54b-49f4-86ef-9084c86dcbf3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", "properties": { - "accountName": "grem-test-72", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1525", + "apiType": "Sql", + "creationTime": "2023-04-21T09:35:25Z", + "oldestRestorableTime": "2023-04-21T09:35:25Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z" + "regionalDatabaseAccountInstanceId": "be348493-ba83-4e93-b286-33c54f6a8792", + "creationTime": "2023-04-21T09:35:26Z" } ] } }, { - "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-4892", "apiType": "Sql", - "creationTime": "2023-03-28T02:19:03Z", - "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T10:54:16Z", + "deletionTime": "2023-03-23T10:54:57Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", - "creationTime": "2023-03-28T02:19:04Z", - "deletionTime": "2023-03-28T02:22:53Z" + "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", + "creationTime": "2023-03-23T10:54:17Z", + "deletionTime": "2023-03-23T10:54:57Z" } ] } }, { - "name": "a9481019-401b-431b-b5f7-440ec8798dfd", + "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-6730", "apiType": "Sql", - "creationTime": "2023-03-28T03:39:15Z", - "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T11:05:04Z", + "deletionTime": "2023-03-23T11:06:25Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", - "creationTime": "2023-03-28T03:39:16Z", - "deletionTime": "2023-03-28T03:42:12Z" + "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", + "creationTime": "2023-03-23T11:05:05Z", + "deletionTime": "2023-03-23T11:06:25Z" } ] } }, { - "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", + "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "dbaccount-6688", "apiType": "Sql", - "creationTime": "2023-03-28T13:58:50Z", - "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T11:16:07Z", + "deletionTime": "2023-03-23T11:20:59Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", - "creationTime": "2023-03-28T13:58:51Z", - "deletionTime": "2023-03-28T13:59:37Z" + "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", + "creationTime": "2023-03-23T11:16:08Z", + "deletionTime": "2023-03-23T11:20:59Z" } ] } }, { - "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "name": "0768f3f1-b168-46b8-bdd2-671139a55152", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", "properties": { - "accountName": "cosmosdb-1232", + "accountName": "dbaccount-1880", "apiType": "Sql", - "creationTime": "2023-03-28T14:10:51Z", - "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T11:22:51Z", + "deletionTime": "2023-03-23T11:26:46Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", - "creationTime": "2023-03-28T14:10:52Z", - "deletionTime": "2023-03-28T14:13:58Z" + "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", + "creationTime": "2023-03-23T11:22:52Z", + "deletionTime": "2023-03-23T11:26:46Z" } ] } }, { - "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", + "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", "properties": { - "accountName": "cosmosdb-1233", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T14:25:17Z", - "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", - "creationTime": "2023-03-28T14:25:18Z", - "deletionTime": "2023-03-28T14:28:04Z" + "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z" } ] } }, { - "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T14:35:15Z", - "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-23T21:16:33Z", + "deletionTime": "2023-03-23T21:20:17Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", - "creationTime": "2023-03-28T14:35:16Z", - "deletionTime": "2023-03-28T14:39:43Z" + "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", + "creationTime": "2023-03-23T21:16:34Z", + "deletionTime": "2023-03-23T21:20:17Z" } ] } }, { - "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", "properties": { - "accountName": "cosmosdb-1234", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T14:54:34Z", - "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T16:01:08Z", + "deletionTime": "2023-03-24T16:04:52Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", - "creationTime": "2023-03-28T14:54:35Z", - "deletionTime": "2023-03-28T14:58:59Z" + "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", + "creationTime": "2023-03-24T16:01:09Z", + "deletionTime": "2023-03-24T16:04:52Z" } ] } }, { - "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "name": "151f9fea-5280-4201-8e95-0ea414c89379", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", "properties": { - "accountName": "cosmosdb-12103", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T15:09:04Z", - "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T16:18:09Z", + "deletionTime": "2023-03-24T16:21:49Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", - "creationTime": "2023-03-28T15:09:05Z", - "deletionTime": "2023-03-28T15:27:39Z" + "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", + "creationTime": "2023-03-24T16:18:10Z", + "deletionTime": "2023-03-24T16:21:49Z" } ] } }, { - "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "name": "edbde762-f533-4cc9-886a-a2196e203b19", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", "properties": { - "accountName": "restored2-cosmosdb-12103-3", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T17:00:54Z", + "deletionTime": "2023-03-24T17:03:11Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z" + "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", + "creationTime": "2023-03-24T17:00:55Z", + "deletionTime": "2023-03-24T17:03:11Z" } ] } }, { - "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", + "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", "properties": { - "accountName": "cosmosdb-12104", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", - "creationTime": "2023-03-28T15:34:43Z", - "deletionTime": "2023-03-28T15:39:16Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z" + "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z" } ] } }, { - "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", "properties": { - "accountName": "r-database-account-9490", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T22:16:00Z", - "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T18:51:09Z", + "deletionTime": "2023-03-24T18:51:31Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", - "creationTime": "2023-03-28T22:16:01Z", - "deletionTime": "2023-03-28T22:16:48Z" + "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", + "creationTime": "2023-03-24T18:51:10Z", + "deletionTime": "2023-03-24T18:51:31Z" } ] } }, { - "name": "03ad66ba-329b-42a9-a663-7175c237d696", + "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", "properties": { - "accountName": "r-database-account-5060", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-29T01:52:39Z", - "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T19:00:50Z", + "deletionTime": "2023-03-24T19:15:40Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", - "creationTime": "2023-03-29T01:52:40Z", - "deletionTime": "2023-03-29T01:53:32Z" + "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", + "creationTime": "2023-03-24T19:00:51Z", + "deletionTime": "2023-03-24T19:15:40Z" } ] } }, { - "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "name": "219254b8-6f3a-466e-b360-95f262bfe51e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", "properties": { - "accountName": "r-database-account-8615", + "accountName": "cosmosdb-1217", "apiType": "Sql", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T19:18:09Z", + "deletionTime": "2023-03-24T19:20:56Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z" + "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", + "creationTime": "2023-03-24T19:18:10Z", + "deletionTime": "2023-03-24T19:20:56Z" } ] } }, { - "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", + "name": "e888bd61-957a-4028-af47-b834b0a267ab", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", "properties": { - "accountName": "r-database-account-6456", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T02:33:02Z", - "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T19:34:54Z", + "deletionTime": "2023-03-24T19:50:50Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", - "creationTime": "2023-03-29T02:33:03Z", - "deletionTime": "2023-03-29T02:34:43Z" + "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", + "creationTime": "2023-03-24T19:34:55Z", + "deletionTime": "2023-03-24T19:50:50Z" } ] } }, { - "name": "835d93a1-22dd-478a-b58d-426efe281471", + "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", "properties": { - "accountName": "r-database-account-4855", + "accountName": "restored2-cosmosdb-1210-5", "apiType": "Sql", - "creationTime": "2023-03-29T02:47:00Z", - "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", - "creationTime": "2023-03-29T02:47:01Z", - "deletionTime": "2023-03-29T02:49:00Z" + "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z" } ] } }, { - "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", "properties": { - "accountName": "r-database-account-84", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T03:26:20Z", - "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-24T20:32:49Z", + "deletionTime": "2023-03-24T20:50:46Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", - "creationTime": "2023-03-29T03:26:21Z", - "deletionTime": "2023-03-29T03:28:03Z" + "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", + "creationTime": "2023-03-24T20:32:50Z", + "deletionTime": "2023-03-24T20:50:46Z" } ] } }, { - "name": "745f1b21-405d-46bf-8788-0d661ffbb160", + "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", "properties": { - "accountName": "r-database-account-5060", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T03:40:43Z", - "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-25T16:11:27Z", + "deletionTime": "2023-03-25T16:23:23Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", - "creationTime": "2023-03-29T03:40:44Z", - "deletionTime": "2023-03-29T03:42:31Z" + "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", + "creationTime": "2023-03-25T16:11:28Z", + "deletionTime": "2023-03-25T16:23:23Z" } ] } }, { - "name": "454b0097-ad05-4177-9048-93cff3b23e4c", + "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", "properties": { - "accountName": "r-database-account-985", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T04:04:48Z", - "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", - "creationTime": "2023-03-29T04:04:49Z", - "deletionTime": "2023-03-29T04:05:36Z" + "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z" } ] } }, { - "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", + "name": "2533e0b0-a675-441d-9b41-147c66cb8834", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", "properties": { - "accountName": "r-database-account-411", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T04:32:28Z", - "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-26T16:03:42Z", + "deletionTime": "2023-03-26T16:15:36Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", - "creationTime": "2023-03-29T04:32:29Z", - "deletionTime": "2023-03-29T04:34:13Z" + "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", + "creationTime": "2023-03-26T16:03:43Z", + "deletionTime": "2023-03-26T16:15:36Z" } ] } }, { - "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", + "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", "properties": { - "accountName": "r-database-account-7460", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T04:59:34Z", - "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-27T03:23:23Z", + "deletionTime": "2023-03-27T03:41:45Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", - "creationTime": "2023-03-29T04:59:35Z", - "deletionTime": "2023-03-29T05:01:02Z" + "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", + "creationTime": "2023-03-27T03:23:24Z", + "deletionTime": "2023-03-27T03:41:45Z" } ] } }, { - "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", "properties": { - "accountName": "r-database-account-6301", - "apiType": "Sql", - "creationTime": "2023-03-29T05:27:44Z", - "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "grem-test-72", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", - "creationTime": "2023-03-29T05:27:45Z", - "deletionTime": "2023-03-29T05:29:32Z" + "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z" } ] } }, { - "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", "properties": { - "accountName": "r-database-account-725", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T05:51:55Z", - "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T02:19:03Z", + "deletionTime": "2023-03-28T02:22:53Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", - "creationTime": "2023-03-29T05:51:56Z", - "deletionTime": "2023-03-29T05:53:14Z" + "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", + "creationTime": "2023-03-28T02:19:04Z", + "deletionTime": "2023-03-28T02:22:53Z" } ] } }, { - "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "name": "a9481019-401b-431b-b5f7-440ec8798dfd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", "properties": { - "accountName": "r-database-account-5868", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T06:07:55Z", - "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T03:39:15Z", + "deletionTime": "2023-03-28T03:42:12Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", - "creationTime": "2023-03-29T06:07:56Z", - "deletionTime": "2023-03-29T06:10:43Z" + "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", + "creationTime": "2023-03-28T03:39:16Z", + "deletionTime": "2023-03-28T03:42:12Z" } ] } }, { - "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", "properties": { - "accountName": "r-database-account-6513", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T06:41:45Z", - "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T13:58:50Z", + "deletionTime": "2023-03-28T13:59:37Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", - "creationTime": "2023-03-29T06:41:46Z", - "deletionTime": "2023-03-29T06:45:18Z" + "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", + "creationTime": "2023-03-28T13:58:51Z", + "deletionTime": "2023-03-28T13:59:37Z" } ] } }, { - "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", "properties": { - "accountName": "r-database-account-79", + "accountName": "cosmosdb-1232", "apiType": "Sql", - "creationTime": "2023-03-29T07:22:12Z", - "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T14:10:51Z", + "deletionTime": "2023-03-28T14:13:58Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", - "creationTime": "2023-03-29T07:22:13Z", - "deletionTime": "2023-03-29T07:24:10Z" + "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", + "creationTime": "2023-03-28T14:10:52Z", + "deletionTime": "2023-03-28T14:13:58Z" } ] } }, { - "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", "properties": { - "accountName": "r-database-account-766", + "accountName": "cosmosdb-1233", "apiType": "Sql", - "creationTime": "2023-03-29T08:19:11Z", - "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T14:25:17Z", + "deletionTime": "2023-03-28T14:28:04Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", - "creationTime": "2023-03-29T08:19:12Z", - "deletionTime": "2023-03-29T08:20:09Z" + "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", + "creationTime": "2023-03-28T14:25:18Z", + "deletionTime": "2023-03-28T14:28:04Z" } ] } }, { - "name": "fa235396-6959-4dc1-932d-2ac66d318878", + "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", "properties": { - "accountName": "r-database-account-9810", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:33:51Z", - "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:35:15Z", + "deletionTime": "2023-03-28T14:39:43Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", - "creationTime": "2023-03-29T08:33:53Z", - "deletionTime": "2023-03-29T08:48:10Z" + "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", + "creationTime": "2023-03-28T14:35:16Z", + "deletionTime": "2023-03-28T14:39:43Z" } ] } }, { - "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", "properties": { - "accountName": "r-database-account-6103", + "accountName": "cosmosdb-1234", "apiType": "Sql", - "creationTime": "2023-03-29T09:01:29Z", - "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-28T14:54:34Z", + "deletionTime": "2023-03-28T14:58:59Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", - "creationTime": "2023-03-29T09:01:30Z", - "deletionTime": "2023-03-29T09:13:42Z" + "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", + "creationTime": "2023-03-28T14:54:35Z", + "deletionTime": "2023-03-28T14:58:59Z" } ] } }, { - "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", "properties": { - "accountName": "r-database-account-8066", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:28:36Z", - "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cosmosdb-12103", + "apiType": "Sql", + "creationTime": "2023-03-28T15:09:04Z", + "deletionTime": "2023-03-28T15:27:39Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", - "creationTime": "2023-03-29T09:28:37Z", - "deletionTime": "2023-03-29T09:44:31Z" + "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", + "creationTime": "2023-03-28T15:09:05Z", + "deletionTime": "2023-03-28T15:27:39Z" } ] } }, { - "name": "ddab1ead-237f-448e-8291-995fddb1ae74", + "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", "properties": { - "accountName": "r-database-account-7977", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T10:01:55Z", - "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restored2-cosmosdb-12103-3", + "apiType": "Sql", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", - "creationTime": "2023-03-29T10:01:56Z", - "deletionTime": "2023-03-29T10:03:30Z" + "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z" } ] } }, { - "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", "properties": { - "accountName": "r-database-account-116", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T10:20:03Z", - "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", + "creationTime": "2023-03-28T15:34:43Z", + "deletionTime": "2023-03-28T15:39:16Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", - "creationTime": "2023-03-29T10:20:04Z", - "deletionTime": "2023-03-29T10:21:16Z" + "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z" } ] } }, { - "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", + "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", "properties": { - "accountName": "restoredaccount-7426", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9490", + "apiType": "Sql", + "creationTime": "2023-03-28T22:16:00Z", + "deletionTime": "2023-03-28T22:16:48Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z" + "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", + "creationTime": "2023-03-28T22:16:01Z", + "deletionTime": "2023-03-28T22:16:48Z" } ] } }, { - "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "name": "03ad66ba-329b-42a9-a663-7175c237d696", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", "properties": { - "accountName": "r-database-account-9884", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:16:22Z", - "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T01:52:39Z", + "deletionTime": "2023-03-29T01:53:32Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", - "creationTime": "2023-03-29T08:16:23Z", - "deletionTime": "2023-03-29T10:33:43Z" + "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", + "creationTime": "2023-03-29T01:52:40Z", + "deletionTime": "2023-03-29T01:53:32Z" } ] } }, { - "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", + "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", "properties": { - "accountName": "r-database-account-2379", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:28:35Z", - "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8615", + "apiType": "Sql", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", - "creationTime": "2023-03-29T16:28:36Z", - "deletionTime": "2023-03-29T16:44:35Z" + "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z" } ] } }, { - "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", + "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", "properties": { - "accountName": "r-database-account-3992", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T16:22:41Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6456", + "apiType": "Sql", + "creationTime": "2023-03-29T02:33:02Z", + "deletionTime": "2023-03-29T02:34:43Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", - "creationTime": "2023-03-29T16:22:42Z", - "deletionTime": "2023-03-29T16:57:31Z" - } - ] + "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", + "creationTime": "2023-03-29T02:33:03Z", + "deletionTime": "2023-03-29T02:34:43Z" + } + ] } }, { - "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "name": "835d93a1-22dd-478a-b58d-426efe281471", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", "properties": { - "accountName": "restoredaccount-232", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4855", + "apiType": "Sql", + "creationTime": "2023-03-29T02:47:00Z", + "deletionTime": "2023-03-29T02:49:00Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z" + "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", + "creationTime": "2023-03-29T02:47:01Z", + "deletionTime": "2023-03-29T02:49:00Z" } ] } }, { - "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", + "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", "properties": { - "accountName": "r-database-account-1794", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:14:16Z", - "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-84", + "apiType": "Sql", + "creationTime": "2023-03-29T03:26:20Z", + "deletionTime": "2023-03-29T03:28:03Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", - "creationTime": "2023-03-29T17:14:17Z", - "deletionTime": "2023-03-29T17:15:46Z" + "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", + "creationTime": "2023-03-29T03:26:21Z", + "deletionTime": "2023-03-29T03:28:03Z" } ] } }, { - "name": "8940962c-1866-49f7-871f-38869cce24f7", + "name": "745f1b21-405d-46bf-8788-0d661ffbb160", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", "properties": { - "accountName": "r-database-account-7040", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T17:32:14Z", - "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T03:40:43Z", + "deletionTime": "2023-03-29T03:42:31Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", - "creationTime": "2023-03-29T17:32:15Z", - "deletionTime": "2023-03-29T17:33:38Z" + "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", + "creationTime": "2023-03-29T03:40:44Z", + "deletionTime": "2023-03-29T03:42:31Z" } ] } }, { - "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "name": "454b0097-ad05-4177-9048-93cff3b23e4c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", "properties": { - "accountName": "r-database-account-959", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:41:56Z", - "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-985", + "apiType": "Sql", + "creationTime": "2023-03-29T04:04:48Z", + "deletionTime": "2023-03-29T04:05:36Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", - "creationTime": "2023-03-29T17:41:58Z", - "deletionTime": "2023-03-29T17:42:37Z" + "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", + "creationTime": "2023-03-29T04:04:49Z", + "deletionTime": "2023-03-29T04:05:36Z" } ] } }, { - "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", "properties": { - "accountName": "r-database-account-8612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:51:17Z", - "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-411", + "apiType": "Sql", + "creationTime": "2023-03-29T04:32:28Z", + "deletionTime": "2023-03-29T04:34:13Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", - "creationTime": "2023-03-29T17:51:18Z", - "deletionTime": "2023-03-29T18:07:55Z" + "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", + "creationTime": "2023-03-29T04:32:29Z", + "deletionTime": "2023-03-29T04:34:13Z" } ] } }, { - "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", + "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", "properties": { - "accountName": "r-database-account-640", + "accountName": "r-database-account-7460", "apiType": "Sql", - "creationTime": "2023-03-29T18:21:12Z", - "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T04:59:34Z", + "deletionTime": "2023-03-29T05:01:02Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", - "creationTime": "2023-03-29T18:21:13Z", - "deletionTime": "2023-03-29T18:37:25Z" + "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", + "creationTime": "2023-03-29T04:59:35Z", + "deletionTime": "2023-03-29T05:01:02Z" } ] } }, { - "name": "ebcdc313-e068-4539-bfc9-63238422f44d", + "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", "properties": { - "accountName": "r-database-account-6103", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:45:36Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6301", + "apiType": "Sql", + "creationTime": "2023-03-29T05:27:44Z", + "deletionTime": "2023-03-29T05:29:32Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", - "creationTime": "2023-03-29T17:45:37Z", - "deletionTime": "2023-03-29T18:49:19Z" + "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", + "creationTime": "2023-03-29T05:27:45Z", + "deletionTime": "2023-03-29T05:29:32Z" } ] } }, { - "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", "properties": { - "accountName": "restoredaccount-9093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-725", + "apiType": "Sql", + "creationTime": "2023-03-29T05:51:55Z", + "deletionTime": "2023-03-29T05:53:14Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z" + "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", + "creationTime": "2023-03-29T05:51:56Z", + "deletionTime": "2023-03-29T05:53:14Z" } ] } }, { - "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", "properties": { - "accountName": "restoredaccount-5464", + "accountName": "r-database-account-5868", "apiType": "Sql", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T06:07:55Z", + "deletionTime": "2023-03-29T06:10:43Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z" + "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", + "creationTime": "2023-03-29T06:07:56Z", + "deletionTime": "2023-03-29T06:10:43Z" } ] } }, { - "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", + "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", "properties": { - "accountName": "r-database-account-582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:55:11Z", - "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6513", + "apiType": "Sql", + "creationTime": "2023-03-29T06:41:45Z", + "deletionTime": "2023-03-29T06:45:18Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", - "creationTime": "2023-03-29T18:55:12Z", - "deletionTime": "2023-03-29T18:56:12Z" + "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", + "creationTime": "2023-03-29T06:41:46Z", + "deletionTime": "2023-03-29T06:45:18Z" } ] } }, { - "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", "properties": { - "accountName": "r-database-account-7109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:11:47Z", - "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-79", + "apiType": "Sql", + "creationTime": "2023-03-29T07:22:12Z", + "deletionTime": "2023-03-29T07:24:10Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", - "creationTime": "2023-03-29T19:11:48Z", - "deletionTime": "2023-03-29T19:13:28Z" + "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", + "creationTime": "2023-03-29T07:22:13Z", + "deletionTime": "2023-03-29T07:24:10Z" } ] } }, { - "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", + "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", "properties": { - "accountName": "r-database-account-1862", + "accountName": "r-database-account-766", "apiType": "Sql", - "creationTime": "2023-03-29T19:27:17Z", - "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T08:19:11Z", + "deletionTime": "2023-03-29T08:20:09Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", - "creationTime": "2023-03-29T19:27:18Z", - "deletionTime": "2023-03-29T19:28:11Z" + "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", + "creationTime": "2023-03-29T08:19:12Z", + "deletionTime": "2023-03-29T08:20:09Z" } ] } }, { - "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", + "name": "fa235396-6959-4dc1-932d-2ac66d318878", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", "properties": { - "accountName": "r-database-account-669", + "accountName": "r-database-account-9810", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:41:10Z", - "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T08:33:51Z", + "deletionTime": "2023-03-29T08:48:10Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", - "creationTime": "2023-03-29T19:41:11Z", - "deletionTime": "2023-03-29T19:42:32Z" + "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", + "creationTime": "2023-03-29T08:33:53Z", + "deletionTime": "2023-03-29T08:48:10Z" } ] } }, { - "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", + "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", "properties": { - "accountName": "r-database-account-8361", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T19:57:31Z", - "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6103", + "apiType": "Sql", + "creationTime": "2023-03-29T09:01:29Z", + "deletionTime": "2023-03-29T09:13:42Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", - "creationTime": "2023-03-29T19:57:32Z", - "deletionTime": "2023-03-29T19:58:15Z" + "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", + "creationTime": "2023-03-29T09:01:30Z", + "deletionTime": "2023-03-29T09:13:42Z" } ] } }, { - "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", + "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", "properties": { - "accountName": "r-database-account-9", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:12:42Z", - "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8066", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:28:36Z", + "deletionTime": "2023-03-29T09:44:31Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", - "creationTime": "2023-03-29T20:12:43Z", - "deletionTime": "2023-03-29T20:28:47Z" + "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", + "creationTime": "2023-03-29T09:28:37Z", + "deletionTime": "2023-03-29T09:44:31Z" } ] } }, { - "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "name": "ddab1ead-237f-448e-8291-995fddb1ae74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", "properties": { - "accountName": "r-database-account-7334", - "apiType": "Sql", - "creationTime": "2023-03-29T20:42:13Z", - "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7977", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T10:01:55Z", + "deletionTime": "2023-03-29T10:03:30Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", - "creationTime": "2023-03-29T20:42:14Z", - "deletionTime": "2023-03-29T20:44:52Z" + "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", + "creationTime": "2023-03-29T10:01:56Z", + "deletionTime": "2023-03-29T10:03:30Z" } ] } }, { - "name": "9513098d-df71-4d21-8d95-2fd12d55402e", + "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", "properties": { - "accountName": "r-database-account-4820", + "accountName": "r-database-account-116", "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:00:04Z", - "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T10:20:03Z", + "deletionTime": "2023-03-29T10:21:16Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", - "creationTime": "2023-03-29T21:00:05Z", - "deletionTime": "2023-03-29T21:16:44Z" + "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", + "creationTime": "2023-03-29T10:20:04Z", + "deletionTime": "2023-03-29T10:21:16Z" } ] } }, { - "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", "properties": { - "accountName": "r-database-account-2346", + "accountName": "restoredaccount-7426", "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z" + "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z" } ] } }, { - "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", + "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", "properties": { - "accountName": "restoredaccount-4730", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9884", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:16:22Z", + "deletionTime": "2023-03-29T10:33:43Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z" + "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", + "creationTime": "2023-03-29T08:16:23Z", + "deletionTime": "2023-03-29T10:33:43Z" } ] } }, { - "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", "properties": { - "accountName": "restoredaccount-1173", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2379", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:28:35Z", + "deletionTime": "2023-03-29T16:44:35Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z" + "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", + "creationTime": "2023-03-29T16:28:36Z", + "deletionTime": "2023-03-29T16:44:35Z" } ] } }, { - "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", + "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", "properties": { - "accountName": "r-database-account-3981", + "accountName": "r-database-account-3992", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T21:50:14Z", - "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T16:22:41Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", - "creationTime": "2023-03-29T21:50:15Z", - "deletionTime": "2023-03-29T21:52:00Z" + "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", + "creationTime": "2023-03-29T16:22:42Z", + "deletionTime": "2023-03-29T16:57:31Z" } ] } }, { - "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", "properties": { - "accountName": "r-database-account-6608", - "apiType": "Sql", - "creationTime": "2023-03-29T22:05:54Z", - "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-232", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", - "creationTime": "2023-03-29T22:05:55Z", - "deletionTime": "2023-03-29T22:06:58Z" + "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z" } ] } }, { - "name": "d003df48-a9ea-4212-a771-0c539141cd9d", + "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", "properties": { - "accountName": "r-database-account-9561", + "accountName": "r-database-account-1794", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:19:29Z", - "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T17:14:16Z", + "deletionTime": "2023-03-29T17:15:46Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", - "creationTime": "2023-03-29T22:19:30Z", - "deletionTime": "2023-03-29T22:20:23Z" + "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", + "creationTime": "2023-03-29T17:14:17Z", + "deletionTime": "2023-03-29T17:15:46Z" } ] } }, { - "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", + "name": "8940962c-1866-49f7-871f-38869cce24f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", "properties": { - "accountName": "r-database-account-1309", + "accountName": "r-database-account-7040", "apiType": "Table, Sql", - "creationTime": "2023-03-29T22:36:33Z", - "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T17:32:14Z", + "deletionTime": "2023-03-29T17:33:38Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", - "creationTime": "2023-03-29T22:36:35Z", - "deletionTime": "2023-03-29T22:37:50Z" + "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", + "creationTime": "2023-03-29T17:32:15Z", + "deletionTime": "2023-03-29T17:33:38Z" } ] } }, { - "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", "properties": { - "accountName": "dsapaliga-restore-test5", - "apiType": "Sql", - "creationTime": "2023-03-29T21:59:36Z", - "deletionTime": "2023-03-29T22:56:12Z", - "oldestRestorableTime": "2023-03-22T22:56:12Z", + "accountName": "r-database-account-959", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:41:56Z", + "deletionTime": "2023-03-29T17:42:37Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", - "creationTime": "2023-03-29T21:59:38Z", - "deletionTime": "2023-03-29T22:56:12Z" + "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", + "creationTime": "2023-03-29T17:41:58Z", + "deletionTime": "2023-03-29T17:42:37Z" } ] } }, { - "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", + "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", "properties": { - "accountName": "dsapaliga-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z", - "oldestRestorableTime": "2023-03-22T22:56:35Z", + "accountName": "r-database-account-8612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:51:17Z", + "deletionTime": "2023-03-29T18:07:55Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", + "creationTime": "2023-03-29T17:51:18Z", + "deletionTime": "2023-03-29T18:07:55Z" } ] } }, { - "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", "properties": { - "accountName": "dsapaliga-test-restored", + "accountName": "r-database-account-640", "apiType": "Sql", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z", - "oldestRestorableTime": "2023-03-22T22:57:04Z", + "creationTime": "2023-03-29T18:21:12Z", + "deletionTime": "2023-03-29T18:37:25Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", + "creationTime": "2023-03-29T18:21:13Z", + "deletionTime": "2023-03-29T18:37:25Z" } ] } }, { - "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "name": "ebcdc313-e068-4539-bfc9-63238422f44d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", "properties": { - "accountName": "dsapaliga-restore-test", - "apiType": "Sql", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z", - "oldestRestorableTime": "2023-03-22T22:57:42Z", + "accountName": "r-database-account-6103", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:45:36Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", - "creationTime": "2023-03-29T19:42:26Z", - "deletionTime": "2023-03-29T22:57:42Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z" + "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", + "creationTime": "2023-03-29T17:45:37Z", + "deletionTime": "2023-03-29T18:49:19Z" } ] } }, { - "name": "52581e9f-9743-4007-9041-e15df28ce4ee", + "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", "properties": { - "accountName": "r-database-account-1604", + "accountName": "restoredaccount-9093", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:51:34Z", - "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", - "restorableLocations": [ + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", + "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", - "creationTime": "2023-03-29T22:51:35Z", - "deletionTime": "2023-03-29T23:07:58Z" + "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z" } ] } }, { - "name": "9ab892fe-ad41-4e51-a646-530c226c8772", + "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", "properties": { - "accountName": "r-database-account-39", + "accountName": "restoredaccount-5464", "apiType": "Sql", - "creationTime": "2023-03-29T23:21:19Z", - "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", - "creationTime": "2023-03-29T23:21:20Z", - "deletionTime": "2023-03-29T23:37:29Z" + "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z" } ] } }, { - "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", "properties": { - "accountName": "r-database-account-6553", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T23:52:19Z", - "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:55:11Z", + "deletionTime": "2023-03-29T18:56:12Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", - "creationTime": "2023-03-29T23:52:20Z", - "deletionTime": "2023-03-29T23:54:50Z" + "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", + "creationTime": "2023-03-29T18:55:12Z", + "deletionTime": "2023-03-29T18:56:12Z" } ] } }, { - "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", + "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", "properties": { - "accountName": "r-database-account-8730", + "accountName": "r-database-account-7109", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T00:45:13Z", - "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T19:11:47Z", + "deletionTime": "2023-03-29T19:13:28Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", - "creationTime": "2023-03-30T00:45:15Z", - "deletionTime": "2023-03-30T00:49:42Z" + "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", + "creationTime": "2023-03-29T19:11:48Z", + "deletionTime": "2023-03-29T19:13:28Z" } ] } }, { - "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", "properties": { - "accountName": "r-database-account-2459", + "accountName": "r-database-account-1862", "apiType": "Sql", - "creationTime": "2023-03-30T01:04:05Z", - "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T19:27:17Z", + "deletionTime": "2023-03-29T19:28:11Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", - "creationTime": "2023-03-30T01:04:06Z", - "deletionTime": "2023-03-30T01:06:50Z" + "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", + "creationTime": "2023-03-29T19:27:18Z", + "deletionTime": "2023-03-29T19:28:11Z" } ] } }, { - "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", "properties": { - "accountName": "r-database-account-2957", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T01:23:37Z", - "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-669", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:41:10Z", + "deletionTime": "2023-03-29T19:42:32Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", - "creationTime": "2023-03-30T01:23:39Z", - "deletionTime": "2023-03-30T01:26:18Z" + "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", + "creationTime": "2023-03-29T19:41:11Z", + "deletionTime": "2023-03-29T19:42:32Z" } ] } }, { - "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", "properties": { - "accountName": "r-database-account-6086", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T01:44:49Z", - "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8361", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T19:57:31Z", + "deletionTime": "2023-03-29T19:58:15Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", - "creationTime": "2023-03-30T01:44:50Z", - "deletionTime": "2023-03-30T01:54:03Z" + "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", + "creationTime": "2023-03-29T19:57:32Z", + "deletionTime": "2023-03-29T19:58:15Z" } ] } }, { - "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", + "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", "properties": { - "accountName": "r-database-account-9503", + "accountName": "r-database-account-9", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:14:47Z", - "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T20:12:42Z", + "deletionTime": "2023-03-29T20:28:47Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", - "creationTime": "2023-03-30T02:14:48Z", - "deletionTime": "2023-03-30T02:19:28Z" + "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", + "creationTime": "2023-03-29T20:12:43Z", + "deletionTime": "2023-03-29T20:28:47Z" } ] } }, { - "name": "a717fb23-baed-4b80-ab44-bedcce157333", + "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", "properties": { - "accountName": "r-database-account-255", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:41:09Z", - "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7334", + "apiType": "Sql", + "creationTime": "2023-03-29T20:42:13Z", + "deletionTime": "2023-03-29T20:44:52Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", - "creationTime": "2023-03-30T02:41:10Z", - "deletionTime": "2023-03-30T02:50:27Z" + "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", + "creationTime": "2023-03-29T20:42:14Z", + "deletionTime": "2023-03-29T20:44:52Z" } ] } }, { - "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "name": "9513098d-df71-4d21-8d95-2fd12d55402e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", "properties": { - "accountName": "cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-03-30T03:16:29Z", - "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4820", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:00:04Z", + "deletionTime": "2023-03-29T21:16:44Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", - "creationTime": "2023-03-30T03:18:49Z", - "deletionTime": "2023-03-30T03:24:26Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", - "creationTime": "2023-03-30T03:16:30Z", - "deletionTime": "2023-03-30T03:24:26Z" + "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", + "creationTime": "2023-03-29T21:00:05Z", + "deletionTime": "2023-03-29T21:16:44Z" } ] } }, { - "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", "properties": { - "accountName": "r-database-account-7398", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:22:44Z", - "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2346", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", - "creationTime": "2023-03-30T03:22:45Z", - "deletionTime": "2023-03-30T03:24:34Z" + "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z" } ] } }, { - "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", "properties": { - "accountName": "r-database-account-2003", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:40:25Z", - "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-4730", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", - "creationTime": "2023-03-30T03:40:26Z", - "deletionTime": "2023-03-30T03:41:26Z" + "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z" } ] } }, { - "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", "properties": { - "accountName": "dsapaliga-rcg-migrationtest", - "apiType": "Sql", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z", - "oldestRestorableTime": "2023-03-23T03:56:45Z", + "accountName": "restoredaccount-1173", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z" + "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z" } ] } }, { - "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", + "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", "properties": { - "accountName": "r-database-account-3308", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T03:55:54Z", - "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3981", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T21:50:14Z", + "deletionTime": "2023-03-29T21:52:00Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", - "creationTime": "2023-03-30T03:55:55Z", - "deletionTime": "2023-03-30T03:56:52Z" + "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", + "creationTime": "2023-03-29T21:50:15Z", + "deletionTime": "2023-03-29T21:52:00Z" } ] } }, { - "name": "daf00acd-625e-4dcd-8453-247b297129a3", + "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", "properties": { - "accountName": "dsapaliga-restored-cli-eastus2", + "accountName": "r-database-account-6608", "apiType": "Sql", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z", - "oldestRestorableTime": "2023-03-23T03:57:10Z", + "creationTime": "2023-03-29T22:05:54Z", + "deletionTime": "2023-03-29T22:06:58Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", + "creationTime": "2023-03-29T22:05:55Z", + "deletionTime": "2023-03-29T22:06:58Z" } ] } }, { - "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", + "name": "d003df48-a9ea-4212-a771-0c539141cd9d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", "properties": { - "accountName": "dsapaliga-xrr-cli", - "apiType": "Sql", - "creationTime": "2023-03-29T23:10:13Z", - "deletionTime": "2023-03-30T03:57:17Z", - "oldestRestorableTime": "2023-03-23T03:57:17Z", + "accountName": "r-database-account-9561", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:19:29Z", + "deletionTime": "2023-03-29T22:20:23Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", - "creationTime": "2023-03-29T23:12:40Z", - "deletionTime": "2023-03-30T03:57:17Z" - }, + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", + "creationTime": "2023-03-29T22:19:30Z", + "deletionTime": "2023-03-29T22:20:23Z" + } + ] + } + }, + { + "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", + "properties": { + "accountName": "r-database-account-1309", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T22:36:33Z", + "deletionTime": "2023-03-29T22:37:50Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", + "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", - "creationTime": "2023-03-29T23:10:14Z", - "deletionTime": "2023-03-30T03:57:17Z" + "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", + "creationTime": "2023-03-29T22:36:35Z", + "deletionTime": "2023-03-29T22:37:50Z" } ] } }, { - "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", + "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2", + "accountName": "dsapaliga-restore-test5", "apiType": "Sql", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z", - "oldestRestorableTime": "2023-03-23T03:57:27Z", + "creationTime": "2023-03-29T21:59:36Z", + "deletionTime": "2023-03-29T22:56:12Z", + "oldestRestorableTime": "2023-03-22T22:56:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", + "creationTime": "2023-03-29T21:59:38Z", + "deletionTime": "2023-03-29T22:56:12Z" } ] } }, { - "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", + "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2rg", + "accountName": "dsapaliga-restored-eastus2", "apiType": "Sql", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z", - "oldestRestorableTime": "2023-03-23T03:57:36Z", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z", + "oldestRestorableTime": "2023-03-22T22:56:35Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z" + "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z" } ] } }, { - "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", "properties": { - "accountName": "dsapaliga-xrr-restorefix", + "accountName": "dsapaliga-test-restored", "apiType": "Sql", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z", - "oldestRestorableTime": "2023-03-23T04:15:46Z", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z", + "oldestRestorableTime": "2023-03-22T22:57:04Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", - "creationTime": "2023-03-30T03:51:46Z", - "deletionTime": "2023-03-30T04:15:46Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z" + "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z" } ] } }, { - "name": "2896560d-7c61-44b5-95a3-2e325d44b464", + "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", "properties": { - "accountName": "dsapaliga-xrr", + "accountName": "dsapaliga-restore-test", "apiType": "Sql", - "creationTime": "2023-03-29T23:01:28Z", - "deletionTime": "2023-03-30T04:16:00Z", - "oldestRestorableTime": "2023-03-23T04:16:00Z", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z", + "oldestRestorableTime": "2023-03-22T22:57:42Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", - "creationTime": "2023-03-29T23:11:33Z", - "deletionTime": "2023-03-30T04:16:00Z" + "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", + "creationTime": "2023-03-29T19:42:26Z", + "deletionTime": "2023-03-29T22:57:42Z" }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", - "creationTime": "2023-03-29T23:01:29Z", - "deletionTime": "2023-03-30T04:16:00Z" + "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z" } ] } }, { - "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", + "name": "52581e9f-9743-4007-9041-e15df28ce4ee", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", "properties": { - "accountName": "r-database-account-9362", + "accountName": "r-database-account-1604", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:14:52Z", - "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T22:51:34Z", + "deletionTime": "2023-03-29T23:07:58Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", - "creationTime": "2023-03-30T04:14:53Z", - "deletionTime": "2023-03-30T04:33:19Z" + "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", + "creationTime": "2023-03-29T22:51:35Z", + "deletionTime": "2023-03-29T23:07:58Z" } ] } }, { - "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", + "name": "9ab892fe-ad41-4e51-a646-530c226c8772", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", "properties": { - "accountName": "r-database-account-7026", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T04:49:23Z", - "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-39", + "apiType": "Sql", + "creationTime": "2023-03-29T23:21:19Z", + "deletionTime": "2023-03-29T23:37:29Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", - "creationTime": "2023-03-30T04:49:24Z", - "deletionTime": "2023-03-30T05:05:15Z" + "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", + "creationTime": "2023-03-29T23:21:20Z", + "deletionTime": "2023-03-29T23:37:29Z" } ] } }, { - "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", + "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", "properties": { - "accountName": "r-database-account-8518", + "accountName": "r-database-account-6553", "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:21:59Z", - "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T23:52:19Z", + "deletionTime": "2023-03-29T23:54:50Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", - "creationTime": "2023-03-30T05:22:00Z", - "deletionTime": "2023-03-30T05:23:37Z" + "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", + "creationTime": "2023-03-29T23:52:20Z", + "deletionTime": "2023-03-29T23:54:50Z" } ] } }, { - "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", "properties": { - "accountName": "restoredaccount-8613", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8730", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T00:45:13Z", + "deletionTime": "2023-03-30T00:49:42Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z" + "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", + "creationTime": "2023-03-30T00:45:15Z", + "deletionTime": "2023-03-30T00:49:42Z" } ] } }, { - "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", "properties": { - "accountName": "restoredaccount-4321", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2459", + "apiType": "Sql", + "creationTime": "2023-03-30T01:04:05Z", + "deletionTime": "2023-03-30T01:06:50Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z" + "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", + "creationTime": "2023-03-30T01:04:06Z", + "deletionTime": "2023-03-30T01:06:50Z" } ] } }, { - "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", "properties": { - "accountName": "r-database-account-9910", - "apiType": "Sql", - "creationTime": "2023-03-30T05:44:40Z", - "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2957", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T01:23:37Z", + "deletionTime": "2023-03-30T01:26:18Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", - "creationTime": "2023-03-30T05:44:41Z", - "deletionTime": "2023-03-30T06:00:37Z" + "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", + "creationTime": "2023-03-30T01:23:39Z", + "deletionTime": "2023-03-30T01:26:18Z" } ] } }, { - "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", "properties": { - "accountName": "r-database-account-8895", + "accountName": "r-database-account-6086", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:29:10Z", - "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T01:44:49Z", + "deletionTime": "2023-03-30T01:54:03Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", - "creationTime": "2023-03-30T06:29:12Z", - "deletionTime": "2023-03-30T06:47:25Z" + "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", + "creationTime": "2023-03-30T01:44:50Z", + "deletionTime": "2023-03-30T01:54:03Z" } ] } }, { - "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", "properties": { - "accountName": "restoredaccount-6039", + "accountName": "r-database-account-9503", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T02:14:47Z", + "deletionTime": "2023-03-30T02:19:28Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z" + "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", + "creationTime": "2023-03-30T02:14:48Z", + "deletionTime": "2023-03-30T02:19:28Z" } ] } }, { - "name": "53b30478-fadc-4af9-bde8-663f3793b182", + "name": "a717fb23-baed-4b80-ab44-bedcce157333", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", "properties": { - "accountName": "r-database-account-6131", + "accountName": "r-database-account-255", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:23:46Z", - "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T02:41:09Z", + "deletionTime": "2023-03-30T02:50:27Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", - "creationTime": "2023-03-30T07:23:47Z", - "deletionTime": "2023-03-30T07:39:31Z" + "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", + "creationTime": "2023-03-30T02:41:10Z", + "deletionTime": "2023-03-30T02:50:27Z" } ] } }, { - "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", + "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", "properties": { - "accountName": "r-database-account-5579", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:00:42Z", - "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cosmosdb-12104", + "apiType": "Sql", + "creationTime": "2023-03-30T03:16:29Z", + "deletionTime": "2023-03-30T03:24:26Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", + "creationTime": "2023-03-30T03:18:49Z", + "deletionTime": "2023-03-30T03:24:26Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", - "creationTime": "2023-03-30T08:00:43Z", - "deletionTime": "2023-03-30T08:02:03Z" + "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", + "creationTime": "2023-03-30T03:16:30Z", + "deletionTime": "2023-03-30T03:24:26Z" } ] } }, { - "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", + "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", "properties": { - "accountName": "r-database-account-6802", - "apiType": "Sql", - "creationTime": "2023-03-30T08:15:53Z", - "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7398", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T03:22:44Z", + "deletionTime": "2023-03-30T03:24:34Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", - "creationTime": "2023-03-30T08:15:54Z", - "deletionTime": "2023-03-30T08:16:49Z" + "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", + "creationTime": "2023-03-30T03:22:45Z", + "deletionTime": "2023-03-30T03:24:34Z" } ] } }, { - "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", + "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", "properties": { - "accountName": "r-database-account-4928", + "accountName": "r-database-account-2003", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:29:55Z", - "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T03:40:25Z", + "deletionTime": "2023-03-30T03:41:26Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", - "creationTime": "2023-03-30T08:29:56Z", - "deletionTime": "2023-03-30T08:30:59Z" + "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", + "creationTime": "2023-03-30T03:40:26Z", + "deletionTime": "2023-03-30T03:41:26Z" } ] } }, { - "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", + "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", "properties": { - "accountName": "r-database-account-9554", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T08:45:00Z", - "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-rcg-migrationtest", + "apiType": "Sql", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z", + "oldestRestorableTime": "2023-03-23T03:56:45Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", - "creationTime": "2023-03-30T08:45:01Z", - "deletionTime": "2023-03-30T08:46:14Z" + "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z" } ] } }, { - "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", + "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", "properties": { - "accountName": "r-database-account-9311", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:00:35Z", - "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3308", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T03:55:54Z", + "deletionTime": "2023-03-30T03:56:52Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", - "creationTime": "2023-03-30T09:00:36Z", - "deletionTime": "2023-03-30T09:16:50Z" + "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", + "creationTime": "2023-03-30T03:55:55Z", + "deletionTime": "2023-03-30T03:56:52Z" } ] } }, { - "name": "521a5d65-de37-47be-88ca-ec32b564a261", + "name": "daf00acd-625e-4dcd-8453-247b297129a3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", "properties": { - "accountName": "r-database-account-2240", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:32:58Z", - "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-restored-cli-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z", + "oldestRestorableTime": "2023-03-23T03:57:10Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", - "creationTime": "2023-03-30T09:32:59Z", - "deletionTime": "2023-03-30T09:51:38Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z" } ] } }, { - "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", + "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", "properties": { - "accountName": "r-database-account-1851", + "accountName": "dsapaliga-xrr-cli", "apiType": "Sql", - "creationTime": "2023-03-30T10:05:27Z", - "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T23:10:13Z", + "deletionTime": "2023-03-30T03:57:17Z", + "oldestRestorableTime": "2023-03-23T03:57:17Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", + "creationTime": "2023-03-29T23:12:40Z", + "deletionTime": "2023-03-30T03:57:17Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", - "creationTime": "2023-03-30T10:05:28Z", - "deletionTime": "2023-03-30T10:21:42Z" + "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", + "creationTime": "2023-03-29T23:10:14Z", + "deletionTime": "2023-03-30T03:57:17Z" } ] } }, { - "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", + "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", "properties": { - "accountName": "r-database-account-5797", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:37:02Z", - "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-xrr-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z", + "oldestRestorableTime": "2023-03-23T03:57:27Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", - "creationTime": "2023-03-30T10:37:04Z", - "deletionTime": "2023-03-30T10:55:19Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z" } ] } }, { - "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", + "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", "properties": { - "accountName": "r-database-account-9560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:11:57Z", - "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-xrr-restored-eastus2rg", + "apiType": "Sql", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z", + "oldestRestorableTime": "2023-03-23T03:57:36Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", - "creationTime": "2023-03-30T11:11:58Z", - "deletionTime": "2023-03-30T11:25:05Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z" } ] } }, { - "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", + "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", "properties": { - "accountName": "r-database-account-1767", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:41:56Z", - "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-xrr-restorefix", + "apiType": "Sql", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z", + "oldestRestorableTime": "2023-03-23T04:15:46Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", + "creationTime": "2023-03-30T03:51:46Z", + "deletionTime": "2023-03-30T04:15:46Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", - "creationTime": "2023-03-30T11:41:57Z", - "deletionTime": "2023-03-30T11:43:33Z" + "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z" } ] } }, { - "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "name": "2896560d-7c61-44b5-95a3-2e325d44b464", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", "properties": { - "accountName": "restoredaccount-4001", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "dsapaliga-xrr", + "apiType": "Sql", + "creationTime": "2023-03-29T23:01:28Z", + "deletionTime": "2023-03-30T04:16:00Z", + "oldestRestorableTime": "2023-03-23T04:16:00Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", + "creationTime": "2023-03-29T23:11:33Z", + "deletionTime": "2023-03-30T04:16:00Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", + "creationTime": "2023-03-29T23:01:29Z", + "deletionTime": "2023-03-30T04:16:00Z" } ] } }, { - "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", "properties": { - "accountName": "restoredaccount-7112", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9362", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:14:52Z", + "deletionTime": "2023-03-30T04:33:19Z", + "oldestRestorableTime": "2023-03-22T09:36:03Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", + "creationTime": "2023-03-30T04:14:53Z", + "deletionTime": "2023-03-30T04:33:19Z" } ] } }, { - "name": "0370cb08-0af9-4438-b21f-405a5564b689", + "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", "properties": { - "accountName": "restoredaccount-9834", - "apiType": "Sql", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7026", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T04:49:23Z", + "deletionTime": "2023-03-30T05:05:15Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", + "creationTime": "2023-03-30T04:49:24Z", + "deletionTime": "2023-03-30T05:05:15Z" } ] } }, { - "name": "6c273b23-ae84-4945-b093-d57bca835c7c", + "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", "properties": { - "accountName": "restoredaccount-4009", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8518", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:21:59Z", + "deletionTime": "2023-03-30T05:23:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", + "creationTime": "2023-03-30T05:22:00Z", + "deletionTime": "2023-03-30T05:23:37Z" } ] } }, { - "name": "17de7698-0393-4b12-ba51-99d12ba83904", + "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", "properties": { - "accountName": "r-database-account-9743", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:00:07Z", - "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-8613", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", - "creationTime": "2023-03-30T12:00:08Z", - "deletionTime": "2023-03-30T12:01:49Z" + "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z" } ] } }, { - "name": "987831cb-c610-4631-a650-0b6678c31649", + "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", "properties": { - "accountName": "r-database-account-3771", - "apiType": "Sql", - "creationTime": "2023-03-30T12:15:11Z", - "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-4321", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", - "creationTime": "2023-03-30T12:15:12Z", - "deletionTime": "2023-03-30T12:15:59Z" + "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z" } ] } }, { - "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", + "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", "properties": { - "accountName": "r-database-account-3969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:29:18Z", - "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9910", + "apiType": "Sql", + "creationTime": "2023-03-30T05:44:40Z", + "deletionTime": "2023-03-30T06:00:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", - "creationTime": "2023-03-30T12:29:19Z", - "deletionTime": "2023-03-30T12:30:13Z" + "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", + "creationTime": "2023-03-30T05:44:41Z", + "deletionTime": "2023-03-30T06:00:37Z" } ] } }, { - "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", + "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", "properties": { - "accountName": "r-database-account-7064", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T12:44:53Z", - "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8895", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T06:29:10Z", + "deletionTime": "2023-03-30T06:47:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", - "creationTime": "2023-03-30T12:44:54Z", - "deletionTime": "2023-03-30T12:46:04Z" + "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", + "creationTime": "2023-03-30T06:29:12Z", + "deletionTime": "2023-03-30T06:47:25Z" } ] } }, { - "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", "properties": { - "accountName": "r-database-account-8980", + "accountName": "restoredaccount-6039", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:00:40Z", - "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", - "creationTime": "2023-03-30T13:00:41Z", - "deletionTime": "2023-03-30T13:17:11Z" + "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z" } ] } }, { - "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "name": "53b30478-fadc-4af9-bde8-663f3793b182", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", "properties": { - "accountName": "r-database-account-2102", + "accountName": "r-database-account-6131", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:33:35Z", - "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T07:23:46Z", + "deletionTime": "2023-03-30T07:39:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", - "creationTime": "2023-03-30T13:33:36Z", - "deletionTime": "2023-03-30T13:51:57Z" + "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", + "creationTime": "2023-03-30T07:23:47Z", + "deletionTime": "2023-03-30T07:39:31Z" } ] } }, { - "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", + "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", "properties": { - "accountName": "r-database-account-6294", - "apiType": "Sql", - "creationTime": "2023-03-30T14:05:48Z", - "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5579", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:00:42Z", + "deletionTime": "2023-03-30T08:02:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", - "creationTime": "2023-03-30T14:05:49Z", - "deletionTime": "2023-03-30T14:21:29Z" + "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", + "creationTime": "2023-03-30T08:00:43Z", + "deletionTime": "2023-03-30T08:02:03Z" } ] } }, { - "name": "86a5260e-5153-431d-8eab-af58b83494af", + "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", "properties": { - "accountName": "r-database-account-2370", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:35:58Z", - "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6802", + "apiType": "Sql", + "creationTime": "2023-03-30T08:15:53Z", + "deletionTime": "2023-03-30T08:16:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", - "creationTime": "2023-03-30T14:35:59Z", - "deletionTime": "2023-03-30T14:54:17Z" + "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", + "creationTime": "2023-03-30T08:15:54Z", + "deletionTime": "2023-03-30T08:16:49Z" } ] } }, { - "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", "properties": { - "accountName": "r-database-account-3273", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:10:49Z", - "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4928", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T08:29:55Z", + "deletionTime": "2023-03-30T08:30:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", - "creationTime": "2023-03-30T15:10:50Z", - "deletionTime": "2023-03-30T15:24:06Z" + "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", + "creationTime": "2023-03-30T08:29:56Z", + "deletionTime": "2023-03-30T08:30:59Z" } ] } }, { - "name": "8246105a-a890-4491-9dd6-7292d01fea88", + "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", "properties": { - "accountName": "r-database-account-3250", + "accountName": "r-database-account-9554", "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:40:22Z", - "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T08:45:00Z", + "deletionTime": "2023-03-30T08:46:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", - "creationTime": "2023-03-30T15:40:23Z", - "deletionTime": "2023-03-30T15:41:57Z" + "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", + "creationTime": "2023-03-30T08:45:01Z", + "deletionTime": "2023-03-30T08:46:14Z" } ] } }, { - "name": "bbf50286-0d85-4979-9c86-63d10090b51a", + "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", "properties": { - "accountName": "restoredaccount-2722", + "accountName": "r-database-account-9311", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T09:00:35Z", + "deletionTime": "2023-03-30T09:16:50Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z" + "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", + "creationTime": "2023-03-30T09:00:36Z", + "deletionTime": "2023-03-30T09:16:50Z" } ] } }, { - "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", + "name": "521a5d65-de37-47be-88ca-ec32b564a261", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", "properties": { - "accountName": "restoredaccount-4323", - "apiType": "Sql", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2240", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:32:58Z", + "deletionTime": "2023-03-30T09:51:38Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z" + "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", + "creationTime": "2023-03-30T09:32:59Z", + "deletionTime": "2023-03-30T09:51:38Z" } ] } }, { - "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", + "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", "properties": { - "accountName": "restoredaccount-2887", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1851", + "apiType": "Sql", + "creationTime": "2023-03-30T10:05:27Z", + "deletionTime": "2023-03-30T10:21:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z" + "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", + "creationTime": "2023-03-30T10:05:28Z", + "deletionTime": "2023-03-30T10:21:42Z" } ] } }, { - "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", "properties": { - "accountName": "restoredaccount-3024", + "accountName": "r-database-account-5797", "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T10:37:02Z", + "deletionTime": "2023-03-30T10:55:19Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z" + "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", + "creationTime": "2023-03-30T10:37:04Z", + "deletionTime": "2023-03-30T10:55:19Z" } ] } }, { - "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", "properties": { - "accountName": "r-database-account-4043", + "accountName": "r-database-account-9560", "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:31:27Z", - "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T11:11:57Z", + "deletionTime": "2023-03-30T11:25:05Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", - "creationTime": "2023-03-30T16:31:28Z", - "deletionTime": "2023-03-30T16:47:52Z" + "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", + "creationTime": "2023-03-30T11:11:58Z", + "deletionTime": "2023-03-30T11:25:05Z" } ] } }, { - "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", "properties": { - "accountName": "restoredaccount-7511", + "accountName": "r-database-account-1767", "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T11:41:56Z", + "deletionTime": "2023-03-30T11:43:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z" + "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", + "creationTime": "2023-03-30T11:41:57Z", + "deletionTime": "2023-03-30T11:43:33Z" } ] } }, { - "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", "properties": { - "accountName": "r-database-account-353", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-4001", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z" + "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", + "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", "properties": { - "accountName": "r-database-account-8087", + "accountName": "restoredaccount-7112", "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:24:28Z", - "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", - "creationTime": "2023-03-30T17:24:29Z", - "deletionTime": "2023-03-30T17:39:50Z" + "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "name": "0370cb08-0af9-4438-b21f-405a5564b689", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", "properties": { - "accountName": "restoredaccount-560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-9834", + "apiType": "Sql", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z" + "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "d9e2fd03-4af1-4649-98c3-65f580724594", + "name": "6c273b23-ae84-4945-b093-d57bca835c7c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", "properties": { - "accountName": "r-database-account-7446", + "accountName": "restoredaccount-4009", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:08:24Z", - "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", - "creationTime": "2023-03-30T19:08:25Z", - "deletionTime": "2023-03-30T19:10:04Z" + "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", + "name": "17de7698-0393-4b12-ba51-99d12ba83904", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", "properties": { - "accountName": "r-database-account-8409", + "accountName": "r-database-account-9743", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:30:14Z", - "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T12:00:07Z", + "deletionTime": "2023-03-30T12:01:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", - "creationTime": "2023-03-30T19:30:15Z", - "deletionTime": "2023-03-30T19:46:59Z" + "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", + "creationTime": "2023-03-30T12:00:08Z", + "deletionTime": "2023-03-30T12:01:49Z" } ] } }, { - "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "name": "987831cb-c610-4631-a650-0b6678c31649", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", "properties": { - "accountName": "restoredaccount-9502", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3771", + "apiType": "Sql", + "creationTime": "2023-03-30T12:15:11Z", + "deletionTime": "2023-03-30T12:15:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z" + "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", + "creationTime": "2023-03-30T12:15:12Z", + "deletionTime": "2023-03-30T12:15:59Z" } ] } }, { - "name": "a274527e-da37-49f9-9878-cef9f55b334d", + "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", "properties": { - "accountName": "r-database-account-4548", + "accountName": "r-database-account-3969", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:23:16Z", - "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T12:29:18Z", + "deletionTime": "2023-03-30T12:30:13Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", - "creationTime": "2023-03-30T20:23:17Z", - "deletionTime": "2023-03-30T20:41:33Z" + "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", + "creationTime": "2023-03-30T12:29:19Z", + "deletionTime": "2023-03-30T12:30:13Z" } ] } }, { - "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", + "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", "properties": { - "accountName": "restoredaccount-3745", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7064", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T12:44:53Z", + "deletionTime": "2023-03-30T12:46:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z" + "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", + "creationTime": "2023-03-30T12:44:54Z", + "deletionTime": "2023-03-30T12:46:04Z" } ] } }, { - "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", + "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", "properties": { - "accountName": "r-database-account-2582", + "accountName": "r-database-account-8980", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T21:50:24Z", - "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T13:00:40Z", + "deletionTime": "2023-03-30T13:17:11Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", - "creationTime": "2023-03-30T21:50:27Z", - "deletionTime": "2023-03-30T21:52:04Z" + "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", + "creationTime": "2023-03-30T13:00:41Z", + "deletionTime": "2023-03-30T13:17:11Z" } ] } }, { - "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", + "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", "properties": { - "accountName": "r-database-account-8779", - "apiType": "Sql", - "creationTime": "2023-03-30T22:06:33Z", - "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2102", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:33:35Z", + "deletionTime": "2023-03-30T13:51:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", - "creationTime": "2023-03-30T22:06:34Z", - "deletionTime": "2023-03-30T22:07:17Z" + "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", + "creationTime": "2023-03-30T13:33:36Z", + "deletionTime": "2023-03-30T13:51:57Z" } ] } }, { - "name": "38947549-a1bf-4023-bc95-88dcc312797f", + "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", "properties": { - "accountName": "r-database-account-4386", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:20:34Z", - "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", - "restorableLocations": [ + "accountName": "r-database-account-6294", + "apiType": "Sql", + "creationTime": "2023-03-30T14:05:48Z", + "deletionTime": "2023-03-30T14:21:29Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", - "creationTime": "2023-03-30T22:20:35Z", - "deletionTime": "2023-03-30T22:21:28Z" + "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", + "creationTime": "2023-03-30T14:05:49Z", + "deletionTime": "2023-03-30T14:21:29Z" } ] } }, { - "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "name": "86a5260e-5153-431d-8eab-af58b83494af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", "properties": { - "accountName": "r-database-account-3583", + "accountName": "r-database-account-2370", "apiType": "Table, Sql", - "creationTime": "2023-03-30T22:35:57Z", - "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T14:35:58Z", + "deletionTime": "2023-03-30T14:54:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", - "creationTime": "2023-03-30T22:35:58Z", - "deletionTime": "2023-03-30T22:36:47Z" + "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", + "creationTime": "2023-03-30T14:35:59Z", + "deletionTime": "2023-03-30T14:54:17Z" } ] } }, { - "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", "properties": { - "accountName": "r-database-account-5053", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:51:37Z", - "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3273", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:10:49Z", + "deletionTime": "2023-03-30T15:24:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", - "creationTime": "2023-03-30T22:51:38Z", - "deletionTime": "2023-03-30T23:05:43Z" + "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", + "creationTime": "2023-03-30T15:10:50Z", + "deletionTime": "2023-03-30T15:24:06Z" } ] } }, { - "name": "17692a3a-23c6-428d-a13a-94657bdea47a", + "name": "8246105a-a890-4491-9dd6-7292d01fea88", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", "properties": { - "accountName": "r-database-account-9618", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:22:07Z", - "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3250", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:40:22Z", + "deletionTime": "2023-03-30T15:41:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", - "creationTime": "2023-03-30T23:22:08Z", - "deletionTime": "2023-03-30T23:40:57Z" + "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", + "creationTime": "2023-03-30T15:40:23Z", + "deletionTime": "2023-03-30T15:41:57Z" } ] } }, { - "name": "aae41121-0386-45f5-884b-acca11a878e3", + "name": "bbf50286-0d85-4979-9c86-63d10090b51a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", "properties": { - "accountName": "restoredaccount-2225", + "accountName": "restoredaccount-2722", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z" + "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z" } ] } }, { - "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", + "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", "properties": { - "accountName": "r-database-account-220", + "accountName": "restoredaccount-4323", "apiType": "Sql", - "creationTime": "2023-03-31T00:05:32Z", - "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", - "creationTime": "2023-03-31T00:05:33Z", - "deletionTime": "2023-03-31T00:21:52Z" + "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z" } ] } }, { - "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", + "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", "properties": { - "accountName": "restoredaccount-9446", - "apiType": "Sql", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-2887", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z" + "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z" } ] } }, { - "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", "properties": { - "accountName": "r-database-account-2092", + "accountName": "restoredaccount-3024", "apiType": "Table, Sql", - "creationTime": "2023-03-31T00:47:34Z", - "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", - "creationTime": "2023-03-31T00:47:35Z", - "deletionTime": "2023-03-31T01:05:40Z" + "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z" } ] } }, { - "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", "properties": { - "accountName": "restoredaccount-6025", + "accountName": "r-database-account-4043", "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T16:31:27Z", + "deletionTime": "2023-03-30T16:47:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z" + "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", + "creationTime": "2023-03-30T16:31:28Z", + "deletionTime": "2023-03-30T16:47:52Z" } ] } }, { - "name": "89218c06-82d7-4397-a460-2f07c20d7138", + "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", "properties": { - "accountName": "r-database-account-2331", + "accountName": "restoredaccount-7511", "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:32:56Z", - "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", - "creationTime": "2023-03-31T01:32:57Z", - "deletionTime": "2023-03-31T01:49:23Z" + "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z" } ] } }, { - "name": "480bf65c-2961-46e6-a44c-4de49632a509", + "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", "properties": { - "accountName": "restoredaccount-6086", + "accountName": "r-database-account-353", "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z" + "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z" } ] } }, { - "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", "properties": { - "accountName": "r-database-account-3761", + "accountName": "r-database-account-8087", "apiType": "Table, Sql", - "creationTime": "2023-03-31T02:17:45Z", - "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T17:24:28Z", + "deletionTime": "2023-03-30T17:39:50Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", - "creationTime": "2023-03-31T02:17:46Z", - "deletionTime": "2023-03-31T02:19:03Z" + "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", + "creationTime": "2023-03-30T17:24:29Z", + "deletionTime": "2023-03-30T17:39:50Z" } ] } }, { - "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", + "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", "properties": { - "accountName": "r-database-account-176", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T02:35:45Z", - "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", - "creationTime": "2023-03-31T02:35:46Z", - "deletionTime": "2023-03-31T02:37:16Z" + "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z" } ] } }, { - "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", + "name": "d9e2fd03-4af1-4649-98c3-65f580724594", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", "properties": { - "accountName": "r-database-account-9754", - "apiType": "Sql", - "creationTime": "2023-03-31T02:51:04Z", - "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7446", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:08:24Z", + "deletionTime": "2023-03-30T19:10:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", - "creationTime": "2023-03-31T02:51:05Z", - "deletionTime": "2023-03-31T02:51:58Z" + "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", + "creationTime": "2023-03-30T19:08:25Z", + "deletionTime": "2023-03-30T19:10:04Z" } ] } }, { - "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", "properties": { - "accountName": "r-database-account-3560", + "accountName": "r-database-account-8409", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:04:37Z", - "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T19:30:14Z", + "deletionTime": "2023-03-30T19:46:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", - "creationTime": "2023-03-31T03:04:38Z", - "deletionTime": "2023-03-31T03:05:38Z" + "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", + "creationTime": "2023-03-30T19:30:15Z", + "deletionTime": "2023-03-30T19:46:59Z" } ] } }, { - "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", "properties": { - "accountName": "r-database-account-7061", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T03:21:54Z", - "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", - "creationTime": "2023-03-31T03:21:55Z", - "deletionTime": "2023-03-31T03:23:03Z" + "accountName": "restoredaccount-9502", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z" } ] } }, { - "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", + "name": "a274527e-da37-49f9-9878-cef9f55b334d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", "properties": { - "accountName": "r-database-account-6492", + "accountName": "r-database-account-4548", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:37:32Z", - "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T20:23:16Z", + "deletionTime": "2023-03-30T20:41:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", - "creationTime": "2023-03-31T03:37:33Z", - "deletionTime": "2023-03-31T03:51:53Z" + "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", + "creationTime": "2023-03-30T20:23:17Z", + "deletionTime": "2023-03-30T20:41:33Z" } ] } }, { - "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", "properties": { - "accountName": "r-database-account-2187", + "accountName": "restoredaccount-3745", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:07:50Z", - "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", - "creationTime": "2023-03-31T04:07:51Z", - "deletionTime": "2023-03-31T04:26:04Z" + "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z" } ] } }, { - "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", "properties": { - "accountName": "restoredaccount-3749", + "accountName": "r-database-account-2582", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T21:50:24Z", + "deletionTime": "2023-03-30T21:52:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z" + "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", + "creationTime": "2023-03-30T21:50:27Z", + "deletionTime": "2023-03-30T21:52:04Z" } ] } }, { - "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", "properties": { - "accountName": "r-database-account-1319", + "accountName": "r-database-account-8779", "apiType": "Sql", - "creationTime": "2023-03-31T04:51:37Z", - "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T22:06:33Z", + "deletionTime": "2023-03-30T22:07:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", - "creationTime": "2023-03-31T04:51:38Z", - "deletionTime": "2023-03-31T05:08:00Z" + "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", + "creationTime": "2023-03-30T22:06:34Z", + "deletionTime": "2023-03-30T22:07:17Z" } ] } }, { - "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "name": "38947549-a1bf-4023-bc95-88dcc312797f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", "properties": { - "accountName": "restoredaccount-949", - "apiType": "Sql", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4386", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:20:34Z", + "deletionTime": "2023-03-30T22:21:28Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z" + "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", + "creationTime": "2023-03-30T22:20:35Z", + "deletionTime": "2023-03-30T22:21:28Z" } ] } }, { - "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", "properties": { - "accountName": "r-database-account-3444", + "accountName": "r-database-account-3583", "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:33:47Z", - "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T22:35:57Z", + "deletionTime": "2023-03-30T22:36:47Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", - "creationTime": "2023-03-31T05:33:48Z", - "deletionTime": "2023-03-31T05:52:04Z" + "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", + "creationTime": "2023-03-30T22:35:58Z", + "deletionTime": "2023-03-30T22:36:47Z" } ] } }, { - "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", "properties": { - "accountName": "restoredaccount-8369", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5053", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T22:51:37Z", + "deletionTime": "2023-03-30T23:05:43Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z" + "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", + "creationTime": "2023-03-30T22:51:38Z", + "deletionTime": "2023-03-30T23:05:43Z" } ] } }, { - "name": "a6938641-f254-423b-877a-01a80f789530", + "name": "17692a3a-23c6-428d-a13a-94657bdea47a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", "properties": { - "accountName": "r-database-account-4184", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:20:37Z", - "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9618", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:22:07Z", + "deletionTime": "2023-03-30T23:40:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", - "creationTime": "2023-03-31T06:20:38Z", - "deletionTime": "2023-03-31T06:36:54Z" + "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", + "creationTime": "2023-03-30T23:22:08Z", + "deletionTime": "2023-03-30T23:40:57Z" } ] } }, { - "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", + "name": "aae41121-0386-45f5-884b-acca11a878e3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", "properties": { - "accountName": "restoredaccount-8230", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-2225", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z" + "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z" } ] } }, { - "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", + "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", "properties": { - "accountName": "r-database-account-9421", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:10:08Z", - "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-220", + "apiType": "Sql", + "creationTime": "2023-03-31T00:05:32Z", + "deletionTime": "2023-03-31T00:21:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", - "creationTime": "2023-03-31T07:10:09Z", - "deletionTime": "2023-03-31T07:27:01Z" + "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", + "creationTime": "2023-03-31T00:05:33Z", + "deletionTime": "2023-03-31T00:21:52Z" } ] } }, { - "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", + "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", "properties": { - "accountName": "restoredaccount-2737", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-9446", + "apiType": "Sql", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z" + "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z" } ] } }, { - "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", "properties": { - "accountName": "r-database-account-4921", + "accountName": "r-database-account-2092", "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:56:33Z", - "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T00:47:34Z", + "deletionTime": "2023-03-31T01:05:40Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", - "creationTime": "2023-03-31T07:56:34Z", - "deletionTime": "2023-03-31T07:58:09Z" + "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", + "creationTime": "2023-03-31T00:47:35Z", + "deletionTime": "2023-03-31T01:05:40Z" } ] } }, { - "name": "bea1d046-d612-49e3-b64c-3e82a216987a", + "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", "properties": { - "accountName": "r-database-account-4832", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:15:55Z", - "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-6025", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", - "creationTime": "2023-03-31T08:15:57Z", - "deletionTime": "2023-03-31T08:33:06Z" + "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z" } ] } }, { - "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "name": "89218c06-82d7-4397-a460-2f07c20d7138", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", "properties": { - "accountName": "restoredaccount-9360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2331", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:32:56Z", + "deletionTime": "2023-03-31T01:49:23Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z" + "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", + "creationTime": "2023-03-31T01:32:57Z", + "deletionTime": "2023-03-31T01:49:23Z" } ] } }, { - "name": "9e6527c2-ded9-493a-9086-df70877c305d", + "name": "480bf65c-2961-46e6-a44c-4de49632a509", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", "properties": { - "accountName": "r-database-account-7247", + "accountName": "restoredaccount-6086", "apiType": "Table, Sql", - "creationTime": "2023-03-31T09:00:28Z", - "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", - "creationTime": "2023-03-31T09:00:29Z", - "deletionTime": "2023-03-31T09:01:48Z" + "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z" } ] } }, { - "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", + "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", "properties": { - "accountName": "r-database-account-2911", + "accountName": "r-database-account-3761", "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:04:29Z", - "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T02:17:45Z", + "deletionTime": "2023-03-31T02:19:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", - "creationTime": "2023-03-31T15:04:30Z", - "deletionTime": "2023-03-31T15:05:51Z" + "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", + "creationTime": "2023-03-31T02:17:46Z", + "deletionTime": "2023-03-31T02:19:03Z" } ] } }, { - "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", + "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", "properties": { - "accountName": "r-database-account-7482", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:22:06Z", - "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-176", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T02:35:45Z", + "deletionTime": "2023-03-31T02:37:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", - "creationTime": "2023-03-31T15:22:08Z", - "deletionTime": "2023-03-31T15:23:48Z" + "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", + "creationTime": "2023-03-31T02:35:46Z", + "deletionTime": "2023-03-31T02:37:16Z" } ] } }, { - "name": "c739e02a-8d12-44a1-9b43-72dee580e901", + "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", "properties": { - "accountName": "r-database-account-2396", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:34:52Z", - "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9754", + "apiType": "Sql", + "creationTime": "2023-03-31T02:51:04Z", + "deletionTime": "2023-03-31T02:51:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", - "creationTime": "2023-04-04T16:34:53Z", - "deletionTime": "2023-04-04T16:36:27Z" + "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", + "creationTime": "2023-03-31T02:51:05Z", + "deletionTime": "2023-03-31T02:51:58Z" } ] } }, { - "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", + "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", "properties": { - "accountName": "r-database-account-2962", + "accountName": "r-database-account-3560", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:56:08Z", - "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T03:04:37Z", + "deletionTime": "2023-03-31T03:05:38Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", - "creationTime": "2023-04-04T16:56:09Z", - "deletionTime": "2023-04-04T16:57:51Z" + "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", + "creationTime": "2023-03-31T03:04:38Z", + "deletionTime": "2023-03-31T03:05:38Z" } ] } }, { - "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", + "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", "properties": { - "accountName": "r-database-account-2963", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:15:44Z", - "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7061", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T03:21:54Z", + "deletionTime": "2023-03-31T03:23:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", - "creationTime": "2023-04-04T17:15:45Z", - "deletionTime": "2023-04-04T17:17:16Z" + "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", + "creationTime": "2023-03-31T03:21:55Z", + "deletionTime": "2023-03-31T03:23:03Z" } ] } }, { - "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", "properties": { - "accountName": "r-database-account-6481", + "accountName": "r-database-account-6492", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:49:37Z", - "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T03:37:32Z", + "deletionTime": "2023-03-31T03:51:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", - "creationTime": "2023-04-04T17:49:38Z", - "deletionTime": "2023-04-04T17:51:33Z" + "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", + "creationTime": "2023-03-31T03:37:33Z", + "deletionTime": "2023-03-31T03:51:53Z" } ] } }, { - "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", + "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", "properties": { - "accountName": "r-database-account-5265", - "apiType": "Sql", - "creationTime": "2023-04-04T18:05:44Z", - "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2187", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T04:07:50Z", + "deletionTime": "2023-03-31T04:26:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", - "creationTime": "2023-04-04T18:05:45Z", - "deletionTime": "2023-04-04T18:06:15Z" + "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", + "creationTime": "2023-03-31T04:07:51Z", + "deletionTime": "2023-03-31T04:26:04Z" } ] } }, { - "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", + "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", "properties": { - "accountName": "r-database-account-2888", + "accountName": "restoredaccount-3749", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:48:32Z", - "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", - "creationTime": "2023-04-04T18:48:33Z", - "deletionTime": "2023-04-04T18:50:14Z" + "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z" } ] } }, { - "name": "ad1760ce-6137-41f0-843a-84a233b507fb", + "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", "properties": { - "accountName": "r-database-account-3827", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:16:39Z", - "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1319", + "apiType": "Sql", + "creationTime": "2023-03-31T04:51:37Z", + "deletionTime": "2023-03-31T05:08:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", - "creationTime": "2023-04-04T19:16:40Z", - "deletionTime": "2023-04-04T19:18:14Z" + "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", + "creationTime": "2023-03-31T04:51:38Z", + "deletionTime": "2023-03-31T05:08:00Z" } ] } }, { - "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", + "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", "properties": { - "accountName": "r-database-account-7735", + "accountName": "restoredaccount-949", "apiType": "Sql", - "creationTime": "2023-04-04T19:32:03Z", - "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", - "creationTime": "2023-04-04T19:32:04Z", - "deletionTime": "2023-04-04T19:33:01Z" + "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z" } ] } }, { - "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", + "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", "properties": { - "accountName": "r-database-account-1093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:46:39Z", - "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3444", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:33:47Z", + "deletionTime": "2023-03-31T05:52:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", - "creationTime": "2023-04-04T19:46:40Z", - "deletionTime": "2023-04-04T19:47:45Z" + "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", + "creationTime": "2023-03-31T05:33:48Z", + "deletionTime": "2023-03-31T05:52:04Z" } ] } }, { - "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", + "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", "properties": { - "accountName": "r-database-account-5066", + "accountName": "restoredaccount-8369", "apiType": "Table, Sql", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z" + "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z" } ] } }, { - "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", + "name": "a6938641-f254-423b-877a-01a80f789530", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", "properties": { - "accountName": "r-database-account-1835", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:17:28Z", - "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4184", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:20:37Z", + "deletionTime": "2023-03-31T06:36:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", - "creationTime": "2023-04-04T20:17:29Z", - "deletionTime": "2023-04-04T20:34:14Z" + "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", + "creationTime": "2023-03-31T06:20:38Z", + "deletionTime": "2023-03-31T06:36:54Z" } ] } }, { - "name": "cb2e954a-4e71-425a-b780-25555527fc7b", + "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", "properties": { - "accountName": "restoredaccount-5931", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-8230", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z" + "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z" } ] } }, { - "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", "properties": { - "accountName": "r-database-account-8394", + "accountName": "r-database-account-9421", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:02:22Z", - "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T07:10:08Z", + "deletionTime": "2023-03-31T07:27:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", - "creationTime": "2023-04-04T21:02:23Z", - "deletionTime": "2023-04-04T21:20:17Z" + "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", + "creationTime": "2023-03-31T07:10:09Z", + "deletionTime": "2023-03-31T07:27:01Z" } ] } }, { - "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", + "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", "properties": { - "accountName": "r-database-account-5571", - "apiType": "Sql", - "creationTime": "2023-04-04T21:44:41Z", - "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-2737", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", - "creationTime": "2023-04-04T21:44:42Z", - "deletionTime": "2023-04-04T21:45:35Z" + "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z" } ] } }, { - "name": "987588f7-7709-4336-aa45-223395911848", + "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", "properties": { - "accountName": "r-database-account-1689", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:09:17Z", - "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4921", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:56:33Z", + "deletionTime": "2023-03-31T07:58:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", - "creationTime": "2023-04-04T22:09:19Z", - "deletionTime": "2023-04-04T22:10:56Z" + "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", + "creationTime": "2023-03-31T07:56:34Z", + "deletionTime": "2023-03-31T07:58:09Z" } ] } }, { - "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "name": "bea1d046-d612-49e3-b64c-3e82a216987a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", "properties": { - "accountName": "r-database-account-4876", - "apiType": "Sql", - "creationTime": "2023-04-04T22:24:45Z", - "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4832", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T08:15:55Z", + "deletionTime": "2023-03-31T08:33:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", - "creationTime": "2023-04-04T22:24:46Z", - "deletionTime": "2023-04-04T22:25:39Z" + "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", + "creationTime": "2023-03-31T08:15:57Z", + "deletionTime": "2023-03-31T08:33:06Z" } ] } }, { - "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", "properties": { - "accountName": "r-database-account-3793", + "accountName": "restoredaccount-9360", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:38:37Z", - "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", - "creationTime": "2023-04-04T22:38:38Z", - "deletionTime": "2023-04-04T22:39:26Z" + "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z" } ] } }, { - "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "name": "9e6527c2-ded9-493a-9086-df70877c305d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", "properties": { - "accountName": "r-database-account-2846", + "accountName": "r-database-account-7247", "apiType": "Table, Sql", - "creationTime": "2023-04-04T22:54:10Z", - "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-31T09:00:28Z", + "deletionTime": "2023-03-31T09:01:48Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", - "creationTime": "2023-04-04T22:54:11Z", - "deletionTime": "2023-04-04T22:55:15Z" + "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", + "creationTime": "2023-03-31T09:00:29Z", + "deletionTime": "2023-03-31T09:01:48Z" } ] } }, { - "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", "properties": { - "accountName": "r-database-account-121", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:09:10Z", - "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2911", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:04:29Z", + "deletionTime": "2023-03-31T15:05:51Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", - "creationTime": "2023-04-04T23:09:11Z", - "deletionTime": "2023-04-04T23:26:11Z" + "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", + "creationTime": "2023-03-31T15:04:30Z", + "deletionTime": "2023-03-31T15:05:51Z" } ] } }, { - "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", + "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", "properties": { - "accountName": "restoredaccount-7907", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7482", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:22:06Z", + "deletionTime": "2023-03-31T15:23:48Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z" + "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", + "creationTime": "2023-03-31T15:22:08Z", + "deletionTime": "2023-03-31T15:23:48Z" } ] } }, { - "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "name": "c739e02a-8d12-44a1-9b43-72dee580e901", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", "properties": { - "accountName": "r-database-account-5836", + "accountName": "r-database-account-2396", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:53:57Z", - "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T16:34:52Z", + "deletionTime": "2023-04-04T16:36:27Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", - "creationTime": "2023-04-04T23:53:58Z", - "deletionTime": "2023-04-05T00:12:42Z" + "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", + "creationTime": "2023-04-04T16:34:53Z", + "deletionTime": "2023-04-04T16:36:27Z" } ] } }, { - "name": "eda15431-8fd3-434e-a724-6478d0d766b0", + "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", "properties": { - "accountName": "restoredaccount-2781", + "accountName": "r-database-account-2962", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T16:56:08Z", + "deletionTime": "2023-04-04T16:57:51Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z" + "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", + "creationTime": "2023-04-04T16:56:09Z", + "deletionTime": "2023-04-04T16:57:51Z" } ] } }, { - "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", + "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", "properties": { - "accountName": "r-database-account-886", - "apiType": "Sql", - "creationTime": "2023-04-05T00:38:08Z", - "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2963", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:15:44Z", + "deletionTime": "2023-04-04T17:17:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", - "creationTime": "2023-04-05T00:38:09Z", - "deletionTime": "2023-04-05T00:55:26Z" + "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", + "creationTime": "2023-04-04T17:15:45Z", + "deletionTime": "2023-04-04T17:17:16Z" } ] } }, { - "name": "0461674a-5302-4644-8006-15273be1dd01", + "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", "properties": { - "accountName": "restoredaccount-1331", - "apiType": "Sql", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6481", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:49:37Z", + "deletionTime": "2023-04-04T17:51:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z" + "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", + "creationTime": "2023-04-04T17:49:38Z", + "deletionTime": "2023-04-04T17:51:33Z" } ] } }, { - "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", "properties": { - "accountName": "r-database-account-5720", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:20:43Z", - "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5265", + "apiType": "Sql", + "creationTime": "2023-04-04T18:05:44Z", + "deletionTime": "2023-04-04T18:06:15Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", - "creationTime": "2023-04-05T01:20:44Z", - "deletionTime": "2023-04-05T01:39:46Z" + "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", + "creationTime": "2023-04-04T18:05:45Z", + "deletionTime": "2023-04-04T18:06:15Z" } ] } }, { - "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", "properties": { - "accountName": "restoredaccount-3222", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2888", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:48:32Z", + "deletionTime": "2023-04-04T18:50:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z" + "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", + "creationTime": "2023-04-04T18:48:33Z", + "deletionTime": "2023-04-04T18:50:14Z" } ] } }, { - "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "name": "ad1760ce-6137-41f0-843a-84a233b507fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", "properties": { - "accountName": "r-database-account-7279", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:07:38Z", - "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3827", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:16:39Z", + "deletionTime": "2023-04-04T19:18:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", - "creationTime": "2023-04-05T02:07:39Z", - "deletionTime": "2023-04-05T02:24:18Z" - } - ] + "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", + "creationTime": "2023-04-04T19:16:40Z", + "deletionTime": "2023-04-04T19:18:14Z" + } + ] } }, { - "name": "3364799a-fb66-48f3-b389-45af2e775bd2", + "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", "properties": { - "accountName": "restoredaccount-2694", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7735", + "apiType": "Sql", + "creationTime": "2023-04-04T19:32:03Z", + "deletionTime": "2023-04-04T19:33:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z" + "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", + "creationTime": "2023-04-04T19:32:04Z", + "deletionTime": "2023-04-04T19:33:01Z" } ] } }, { - "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", "properties": { - "accountName": "r-database-account-2111", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:52:15Z", - "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:46:39Z", + "deletionTime": "2023-04-04T19:47:45Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", - "creationTime": "2023-04-05T02:52:16Z", - "deletionTime": "2023-04-05T02:53:42Z" + "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", + "creationTime": "2023-04-04T19:46:40Z", + "deletionTime": "2023-04-04T19:47:45Z" } ] } }, { - "name": "1275f66f-c69b-4813-9b61-901e1ec451af", + "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", "properties": { - "accountName": "r-database-account-4270", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:09:42Z", - "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5066", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", - "creationTime": "2023-04-05T03:09:43Z", - "deletionTime": "2023-04-05T03:11:28Z" + "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z" } ] } }, { - "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", + "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", "properties": { - "accountName": "r-database-account-6226", - "apiType": "Sql", - "creationTime": "2023-04-05T03:25:14Z", - "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1835", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:17:28Z", + "deletionTime": "2023-04-04T20:34:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", - "creationTime": "2023-04-05T03:25:15Z", - "deletionTime": "2023-04-05T03:26:12Z" + "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", + "creationTime": "2023-04-04T20:17:29Z", + "deletionTime": "2023-04-04T20:34:14Z" } ] } }, { - "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", + "name": "cb2e954a-4e71-425a-b780-25555527fc7b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", "properties": { - "accountName": "r-database-account-4472", + "accountName": "restoredaccount-5931", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:39:46Z", - "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", - "creationTime": "2023-04-05T03:39:47Z", - "deletionTime": "2023-04-05T03:40:55Z" + "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z" } ] } }, { - "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", + "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", "properties": { - "accountName": "r-database-account-5112", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T03:56:41Z", - "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8394", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:02:22Z", + "deletionTime": "2023-04-04T21:20:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", - "creationTime": "2023-04-05T03:56:42Z", - "deletionTime": "2023-04-05T03:57:47Z" + "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", + "creationTime": "2023-04-04T21:02:23Z", + "deletionTime": "2023-04-04T21:20:17Z" } ] } }, { - "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", + "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", "properties": { - "accountName": "r-database-account-8806", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:11:45Z", - "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5571", + "apiType": "Sql", + "creationTime": "2023-04-04T21:44:41Z", + "deletionTime": "2023-04-04T21:45:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", - "creationTime": "2023-04-05T04:11:47Z", - "deletionTime": "2023-04-05T04:37:16Z" + "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", + "creationTime": "2023-04-04T21:44:42Z", + "deletionTime": "2023-04-04T21:45:35Z" } ] } }, { - "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", + "name": "987588f7-7709-4336-aa45-223395911848", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", "properties": { - "accountName": "restoredaccount-6850", + "accountName": "r-database-account-1689", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T22:09:17Z", + "deletionTime": "2023-04-04T22:10:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", + "creationTime": "2023-04-04T22:09:19Z", + "deletionTime": "2023-04-04T22:10:56Z" } ] } }, { - "name": "fcd234fa-a27c-4150-9595-d0db433584e6", + "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", "properties": { - "accountName": "r-database-account-705", + "accountName": "r-database-account-4876", "apiType": "Sql", - "creationTime": "2023-04-05T05:56:56Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T22:24:45Z", + "deletionTime": "2023-04-04T22:25:39Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", - "creationTime": "2023-04-05T05:56:57Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", + "creationTime": "2023-04-04T22:24:46Z", + "deletionTime": "2023-04-04T22:25:39Z" } ] } }, { - "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", "properties": { - "accountName": "r-database-account-4894", + "accountName": "r-database-account-3793", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:13:31Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T22:38:37Z", + "deletionTime": "2023-04-04T22:39:26Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", - "creationTime": "2023-04-05T06:13:32Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", + "creationTime": "2023-04-04T22:38:38Z", + "deletionTime": "2023-04-04T22:39:26Z" } ] } }, { - "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", "properties": { - "accountName": "r-database-account-3212", + "accountName": "r-database-account-2846", "apiType": "Table, Sql", - "creationTime": "2023-04-05T06:08:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T22:54:10Z", + "deletionTime": "2023-04-04T22:55:15Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", - "creationTime": "2023-04-05T06:08:09Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", + "creationTime": "2023-04-04T22:54:11Z", + "deletionTime": "2023-04-04T22:55:15Z" } ] } }, { - "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", "properties": { - "accountName": "r-database-account-9540", + "accountName": "r-database-account-121", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:53:04Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T23:09:10Z", + "deletionTime": "2023-04-04T23:26:11Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", - "creationTime": "2023-04-05T05:53:05Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", + "creationTime": "2023-04-04T23:09:11Z", + "deletionTime": "2023-04-04T23:26:11Z" } ] } }, { - "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", "properties": { - "accountName": "r-database-account-4658", + "accountName": "restoredaccount-7907", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:02:37Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", - "creationTime": "2023-04-05T06:02:38Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z" } ] } }, { - "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", "properties": { - "accountName": "r-database-account-3189", + "accountName": "r-database-account-5836", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:35:19Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T23:53:57Z", + "deletionTime": "2023-04-05T00:12:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", - "creationTime": "2023-04-05T06:35:20Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", + "creationTime": "2023-04-04T23:53:58Z", + "deletionTime": "2023-04-05T00:12:42Z" } ] } }, { - "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "name": "eda15431-8fd3-434e-a724-6478d0d766b0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", "properties": { - "accountName": "restoredaccount-7747", + "accountName": "restoredaccount-2781", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z" - } - ] + "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z" + } + ] } }, { - "name": "adc4a343-1599-470d-abcc-d951fdd50f37", + "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", "properties": { - "accountName": "r-database-account-3312", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:13:48Z", - "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-886", + "apiType": "Sql", + "creationTime": "2023-04-05T00:38:08Z", + "deletionTime": "2023-04-05T00:55:26Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", - "creationTime": "2023-04-04T17:13:49Z", - "deletionTime": "2023-04-05T06:56:38Z" + "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", + "creationTime": "2023-04-05T00:38:09Z", + "deletionTime": "2023-04-05T00:55:26Z" } ] } }, { - "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", + "name": "0461674a-5302-4644-8006-15273be1dd01", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", "properties": { - "accountName": "r-database-account-5846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:44:23Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-1331", + "apiType": "Sql", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", - "creationTime": "2023-04-04T21:44:25Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z" } ] } }, { - "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", + "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", "properties": { - "accountName": "r-database-account-2760", - "apiType": "Sql", - "creationTime": "2023-04-04T21:33:57Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5720", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:20:43Z", + "deletionTime": "2023-04-05T01:39:46Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", - "creationTime": "2023-04-04T21:33:58Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", + "creationTime": "2023-04-05T01:20:44Z", + "deletionTime": "2023-04-05T01:39:46Z" } ] } }, { - "name": "9ce35a43-8b24-4060-a058-191f976df7c1", + "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", "properties": { - "accountName": "restoredaccount-9271", - "apiType": "Sql", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-3222", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z" } ] } }, { - "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", + "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", "properties": { - "accountName": "r-database-account-9266", - "apiType": "Sql", - "creationTime": "2023-03-29T07:47:00Z", - "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7279", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:07:38Z", + "deletionTime": "2023-04-05T02:24:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", - "creationTime": "2023-03-29T07:47:01Z", - "deletionTime": "2023-04-05T06:58:41Z" + "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", + "creationTime": "2023-04-05T02:07:39Z", + "deletionTime": "2023-04-05T02:24:18Z" } ] } }, { - "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "name": "3364799a-fb66-48f3-b389-45af2e775bd2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", "properties": { - "accountName": "r-database-account-641", - "apiType": "Sql", - "creationTime": "2023-03-29T04:26:01Z", - "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-2694", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", - "creationTime": "2023-03-29T04:26:02Z", - "deletionTime": "2023-04-05T06:59:03Z" + "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z" } ] } }, { - "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", "properties": { - "accountName": "r-database-account-3287", - "apiType": "Sql", - "creationTime": "2023-03-29T07:55:06Z", - "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2111", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:52:15Z", + "deletionTime": "2023-04-05T02:53:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", - "creationTime": "2023-03-29T07:55:07Z", - "deletionTime": "2023-04-05T07:00:47Z" + "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", + "creationTime": "2023-04-05T02:52:16Z", + "deletionTime": "2023-04-05T02:53:42Z" } ] } }, { - "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "name": "1275f66f-c69b-4813-9b61-901e1ec451af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", "properties": { - "accountName": "r-database-account-3926", + "accountName": "r-database-account-4270", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:08:41Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T03:09:42Z", + "deletionTime": "2023-04-05T03:11:28Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", - "creationTime": "2023-03-29T17:08:42Z", - "deletionTime": "2023-04-05T07:01:53Z" + "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", + "creationTime": "2023-04-05T03:09:43Z", + "deletionTime": "2023-04-05T03:11:28Z" } ] } }, { - "name": "92ce3190-d16b-438f-9791-b2254a597435", + "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", "properties": { - "accountName": "r-database-account-1530", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:05:13Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6226", + "apiType": "Sql", + "creationTime": "2023-04-05T03:25:14Z", + "deletionTime": "2023-04-05T03:26:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", - "creationTime": "2023-03-31T07:05:14Z", - "deletionTime": "2023-04-05T07:01:53Z" + "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", + "creationTime": "2023-04-05T03:25:15Z", + "deletionTime": "2023-04-05T03:26:12Z" } ] } }, { - "name": "c5934152-2095-41b0-9962-72be301ec23c", + "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", "properties": { - "accountName": "r-database-account-1333", + "accountName": "r-database-account-4472", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:09:38Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T03:39:46Z", + "deletionTime": "2023-04-05T03:40:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", - "creationTime": "2023-03-30T07:09:40Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", + "creationTime": "2023-04-05T03:39:47Z", + "deletionTime": "2023-04-05T03:40:55Z" } ] } }, { - "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", + "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", "properties": { - "accountName": "r-database-account-2197", - "apiType": "Sql", - "creationTime": "2023-03-29T04:24:10Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5112", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T03:56:41Z", + "deletionTime": "2023-04-05T03:57:47Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", - "creationTime": "2023-03-29T04:24:11Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", + "creationTime": "2023-04-05T03:56:42Z", + "deletionTime": "2023-04-05T03:57:47Z" } ] } }, { - "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", "properties": { - "accountName": "r-database-account-4608", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T00:10:43Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8806", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:11:45Z", + "deletionTime": "2023-04-05T04:37:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", - "creationTime": "2023-03-30T00:10:44Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", + "creationTime": "2023-04-05T04:11:47Z", + "deletionTime": "2023-04-05T04:37:16Z" } ] } }, { - "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", "properties": { - "accountName": "r-database-account-4659", + "accountName": "restoredaccount-6850", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:19:29Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", - "creationTime": "2023-04-04T18:19:30Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "name": "fcd234fa-a27c-4150-9595-d0db433584e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", "properties": { - "accountName": "r-database-account-5637", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:25:03Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-705", + "apiType": "Sql", + "creationTime": "2023-04-05T05:56:56Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", - "creationTime": "2023-03-30T16:25:04Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", + "creationTime": "2023-04-05T05:56:57Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", "properties": { - "accountName": "r-database-account-5467", + "accountName": "r-database-account-4894", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:53:26Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T06:13:31Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", - "creationTime": "2023-04-05T04:53:27Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", + "creationTime": "2023-04-05T06:13:32Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "401f849e-50e6-483b-813a-1a5f1059006c", + "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", "properties": { - "accountName": "r-database-account-5933", - "apiType": "Sql", - "creationTime": "2023-04-04T19:13:48Z", - "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3212", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T06:08:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", - "creationTime": "2023-04-04T19:13:49Z", - "deletionTime": "2023-04-05T07:01:55Z" + "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", + "creationTime": "2023-04-05T06:08:09Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", + "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", "properties": { - "accountName": "r-database-account-1535", + "accountName": "r-database-account-9540", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:20:58Z", - "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T05:53:04Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", - "creationTime": "2023-03-30T20:21:00Z", - "deletionTime": "2023-04-05T07:01:58Z" + "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", + "creationTime": "2023-04-05T05:53:05Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", + "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", "properties": { - "accountName": "r-database-account-5305", - "apiType": "Sql", - "creationTime": "2023-03-29T02:15:48Z", - "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4658", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:02:37Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", - "creationTime": "2023-03-29T02:15:49Z", - "deletionTime": "2023-04-05T07:02:00Z" + "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", + "creationTime": "2023-04-05T06:02:38Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", + "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", "properties": { - "accountName": "restoredaccount-590", - "apiType": "Sql", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3189", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:35:19Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", + "creationTime": "2023-04-05T06:35:20Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", "properties": { - "accountName": "restoredaccount-3736", + "accountName": "restoredaccount-7747", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z" } ] } }, { - "name": "af699620-0019-4a6b-ad59-e7c6381814ba", + "name": "adc4a343-1599-470d-abcc-d951fdd50f37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", "properties": { - "accountName": "restoredaccount-7822", - "apiType": "Sql", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3312", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:13:48Z", + "deletionTime": "2023-04-05T06:56:38Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", + "creationTime": "2023-04-04T17:13:49Z", + "deletionTime": "2023-04-05T06:56:38Z" } ] } }, { - "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", + "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", "properties": { - "accountName": "restoredaccount-5262", + "accountName": "r-database-account-5846", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T21:44:23Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z" + "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", + "creationTime": "2023-04-04T21:44:25Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "05442da3-1214-4c48-9883-b06ab54491dd", + "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", "properties": { - "accountName": "r-database-account-6510", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:12:03Z", - "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2760", + "apiType": "Sql", + "creationTime": "2023-04-04T21:33:57Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", - "creationTime": "2023-04-05T16:12:04Z", - "deletionTime": "2023-04-05T16:13:54Z" + "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", + "creationTime": "2023-04-04T21:33:58Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", + "name": "9ce35a43-8b24-4060-a058-191f976df7c1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", "properties": { - "accountName": "r-database-account-6751", + "accountName": "restoredaccount-9271", "apiType": "Sql", - "creationTime": "2023-04-05T16:17:14Z", - "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", - "creationTime": "2023-04-05T16:17:16Z", - "deletionTime": "2023-04-05T16:17:54Z" + "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "554b58bc-ad47-4031-9100-02ef15baa510", + "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", "properties": { - "accountName": "r-database-account-3896", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:22:51Z", - "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9266", + "apiType": "Sql", + "creationTime": "2023-03-29T07:47:00Z", + "deletionTime": "2023-04-05T06:58:41Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", - "creationTime": "2023-04-05T16:22:52Z", - "deletionTime": "2023-04-05T16:24:03Z" + "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", + "creationTime": "2023-03-29T07:47:01Z", + "deletionTime": "2023-04-05T06:58:41Z" } ] } }, { - "name": "d97105e7-6a53-435f-9219-21b7e6ace085", + "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", "properties": { - "accountName": "r-database-account-8009", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T16:28:41Z", - "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-641", + "apiType": "Sql", + "creationTime": "2023-03-29T04:26:01Z", + "deletionTime": "2023-04-05T06:59:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", - "creationTime": "2023-04-05T16:28:42Z", - "deletionTime": "2023-04-05T16:29:40Z" + "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", + "creationTime": "2023-03-29T04:26:02Z", + "deletionTime": "2023-04-05T06:59:03Z" } ] } }, { - "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", "properties": { - "accountName": "r-database-account-5770", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:34:14Z", - "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3287", + "apiType": "Sql", + "creationTime": "2023-03-29T07:55:06Z", + "deletionTime": "2023-04-05T07:00:47Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", - "creationTime": "2023-04-05T16:34:15Z", - "deletionTime": "2023-04-05T16:51:55Z" + "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", + "creationTime": "2023-03-29T07:55:07Z", + "deletionTime": "2023-04-05T07:00:47Z" } ] } }, { - "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", "properties": { - "accountName": "restoredaccount-4079", + "accountName": "r-database-account-3926", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T17:08:41Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z" + "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", + "creationTime": "2023-03-29T17:08:42Z", + "deletionTime": "2023-04-05T07:01:53Z" } ] } }, { - "name": "a181c3ee-171b-4481-b30c-623238c24d41", + "name": "92ce3190-d16b-438f-9791-b2254a597435", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", "properties": { - "accountName": "restoredaccount-5402", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1530", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:05:13Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z" + "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", + "creationTime": "2023-03-31T07:05:14Z", + "deletionTime": "2023-04-05T07:01:53Z" } ] } }, { - "name": "115d217b-1e58-4653-af7e-756be6313d6e", + "name": "c5934152-2095-41b0-9962-72be301ec23c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", "properties": { - "accountName": "r-database-account-5935", + "accountName": "r-database-account-1333", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:56:31Z", - "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T07:09:38Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", - "creationTime": "2023-04-05T16:56:32Z", - "deletionTime": "2023-04-05T17:15:52Z" + "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", + "creationTime": "2023-03-30T07:09:40Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", "properties": { - "accountName": "r-database-account-339", + "accountName": "r-database-account-2197", "apiType": "Sql", - "creationTime": "2023-04-05T17:17:47Z", - "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T04:24:10Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", - "creationTime": "2023-04-05T17:17:48Z", - "deletionTime": "2023-04-05T17:34:52Z" + "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", + "creationTime": "2023-03-29T04:24:11Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "4350889f-8316-4611-8c7b-0de037f83cb3", + "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", "properties": { - "accountName": "restoredaccount-6292", - "apiType": "Sql", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4608", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T00:10:43Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z" + "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", + "creationTime": "2023-03-30T00:10:44Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", + "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", "properties": { - "accountName": "r-database-account-8514", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:39:47Z", - "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-4659", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T18:19:29Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", - "creationTime": "2023-04-05T17:39:48Z", - "deletionTime": "2023-04-05T17:58:43Z" + "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", + "creationTime": "2023-04-04T18:19:30Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "e39d66a9-028e-499d-b488-fde2e53814c5", + "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", "properties": { - "accountName": "restoredaccount-9641", + "accountName": "r-database-account-5637", "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-30T16:25:03Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z" + "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", + "creationTime": "2023-03-30T16:25:04Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", + "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", "properties": { - "accountName": "restoredaccount-2652", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5467", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:53:26Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z" + "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", + "creationTime": "2023-04-05T04:53:27Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "name": "401f849e-50e6-483b-813a-1a5f1059006c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", "properties": { - "accountName": "r-database-account-20", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:03:36Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5933", + "apiType": "Sql", + "creationTime": "2023-04-04T19:13:48Z", + "deletionTime": "2023-04-05T07:01:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", - "creationTime": "2023-04-05T18:03:37Z", - "deletionTime": "2023-04-05T18:21:00Z" + "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", + "creationTime": "2023-04-04T19:13:49Z", + "deletionTime": "2023-04-05T07:01:55Z" } ] } }, { - "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", + "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", "properties": { - "accountName": "r-database-account-727", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:25:45Z", - "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-1535", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:20:58Z", + "deletionTime": "2023-04-05T07:01:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", - "creationTime": "2023-04-05T18:25:47Z", - "deletionTime": "2023-04-05T18:27:03Z" + "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", + "creationTime": "2023-03-30T20:21:00Z", + "deletionTime": "2023-04-05T07:01:58Z" } ] } }, { - "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", "properties": { - "accountName": "r-database-account-2209", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:38:04Z", - "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5305", + "apiType": "Sql", + "creationTime": "2023-03-29T02:15:48Z", + "deletionTime": "2023-04-05T07:02:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", - "creationTime": "2023-04-05T18:38:05Z", - "deletionTime": "2023-04-05T18:40:00Z" + "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", + "creationTime": "2023-03-29T02:15:49Z", + "deletionTime": "2023-04-05T07:02:00Z" } ] } }, { - "name": "e106c7e7-2828-4193-b125-0540ec42f85a", + "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", "properties": { - "accountName": "r-grem-db-account-3109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:20Z", - "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-590", + "apiType": "Sql", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", - "creationTime": "2023-04-05T19:15:21Z", - "deletionTime": "2023-04-05T19:17:06Z" + "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "19b77f33-9070-4bea-89ec-83ad22c59136", + "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", "properties": { - "accountName": "r-grem-db-account-3153", + "accountName": "restoredaccount-3736", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:32:53Z", - "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", - "creationTime": "2023-04-05T19:32:54Z", - "deletionTime": "2023-04-05T19:33:59Z" + "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", + "name": "af699620-0019-4a6b-ad59-e7c6381814ba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", "properties": { - "accountName": "r-grem-db-account-6612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:47:56Z", - "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7822", + "apiType": "Sql", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", - "creationTime": "2023-04-05T19:47:57Z", - "deletionTime": "2023-04-05T20:04:52Z" + "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", "properties": { - "accountName": "restoredaccount-5075", + "accountName": "restoredaccount-5262", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z" + "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z" } ] } }, { - "name": "57958516-07cd-498b-b42b-d8bbde38fc72", + "name": "05442da3-1214-4c48-9883-b06ab54491dd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", "properties": { - "accountName": "r-grem-db-account-2460", + "accountName": "r-database-account-6510", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:32:03Z", - "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T16:12:03Z", + "deletionTime": "2023-04-05T16:13:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", - "creationTime": "2023-04-05T20:32:04Z", - "deletionTime": "2023-04-05T20:52:58Z" + "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", + "creationTime": "2023-04-05T16:12:04Z", + "deletionTime": "2023-04-05T16:13:54Z" } ] } }, { - "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", "properties": { - "accountName": "restoredaccount-9191", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6751", + "apiType": "Sql", + "creationTime": "2023-04-05T16:17:14Z", + "deletionTime": "2023-04-05T16:17:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z" + "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", + "creationTime": "2023-04-05T16:17:16Z", + "deletionTime": "2023-04-05T16:17:54Z" } ] } }, { - "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "name": "554b58bc-ad47-4031-9100-02ef15baa510", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", "properties": { - "accountName": "r-grem-db-account-917", + "accountName": "r-database-account-3896", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:20:40Z", - "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T16:22:51Z", + "deletionTime": "2023-04-05T16:24:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", - "creationTime": "2023-04-05T21:20:41Z", - "deletionTime": "2023-04-05T21:22:32Z" + "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", + "creationTime": "2023-04-05T16:22:52Z", + "deletionTime": "2023-04-05T16:24:03Z" } ] } }, { - "name": "d8af4291-a857-435c-9e68-add9be61e3e3", + "name": "d97105e7-6a53-435f-9219-21b7e6ace085", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", "properties": { - "accountName": "r-grem-db-account-4408", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:38:27Z", - "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-8009", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T16:28:41Z", + "deletionTime": "2023-04-05T16:29:40Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", - "creationTime": "2023-04-05T21:38:28Z", - "deletionTime": "2023-04-05T21:39:23Z" + "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", + "creationTime": "2023-04-05T16:28:42Z", + "deletionTime": "2023-04-05T16:29:40Z" } ] } }, { - "name": "2348e86d-d845-4023-a61c-52a7c4998681", + "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", "properties": { - "accountName": "r-grem-db-account-3493", + "accountName": "r-database-account-5770", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:53:12Z", - "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T16:34:14Z", + "deletionTime": "2023-04-05T16:51:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", - "creationTime": "2023-04-05T21:53:13Z", - "deletionTime": "2023-04-05T22:10:15Z" + "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", + "creationTime": "2023-04-05T16:34:15Z", + "deletionTime": "2023-04-05T16:51:55Z" } ] } }, { - "name": "10d05397-ea2c-4d64-a325-da1097b67a30", + "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", "properties": { - "accountName": "restoredaccount-7617", + "accountName": "restoredaccount-4079", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z" + "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z" } ] } }, { - "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "name": "a181c3ee-171b-4481-b30c-623238c24d41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", "properties": { - "accountName": "r-grem-db-account-4657", + "accountName": "restoredaccount-5402", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:37:57Z", - "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", - "creationTime": "2023-04-05T22:37:58Z", - "deletionTime": "2023-04-05T22:57:18Z" + "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z" } ] } }, { - "name": "b9c23cc0-13f3-4895-8534-809a00376677", + "name": "115d217b-1e58-4653-af7e-756be6313d6e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", "properties": { - "accountName": "restoredaccount-1097", + "accountName": "r-database-account-5935", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T16:56:31Z", + "deletionTime": "2023-04-05T17:15:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z" + "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", + "creationTime": "2023-04-05T16:56:32Z", + "deletionTime": "2023-04-05T17:15:52Z" } ] } }, { - "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", + "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", "properties": { - "accountName": "r-table-account-4377", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:25:55Z", - "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-339", + "apiType": "Sql", + "creationTime": "2023-04-05T17:17:47Z", + "deletionTime": "2023-04-05T17:34:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", - "creationTime": "2023-04-05T23:25:56Z", - "deletionTime": "2023-04-05T23:27:10Z" + "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", + "creationTime": "2023-04-05T17:17:48Z", + "deletionTime": "2023-04-05T17:34:52Z" } ] } }, { - "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", + "name": "4350889f-8316-4611-8c7b-0de037f83cb3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", "properties": { - "accountName": "r-table-account-1415", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:41:00Z", - "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-6292", + "apiType": "Sql", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", - "creationTime": "2023-04-05T23:41:01Z", - "deletionTime": "2023-04-05T23:59:07Z" + "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z" } ] } }, { - "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", + "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", "properties": { - "accountName": "restoredaccount-5386", + "accountName": "r-database-account-8514", "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T17:39:47Z", + "deletionTime": "2023-04-05T17:58:43Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z" + "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", + "creationTime": "2023-04-05T17:39:48Z", + "deletionTime": "2023-04-05T17:58:43Z" } ] } }, { - "name": "701f814c-13b7-4144-b75c-52946e6946cb", + "name": "e39d66a9-028e-499d-b488-fde2e53814c5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", "properties": { - "accountName": "r-table-account-6354", + "accountName": "restoredaccount-9641", "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:26:22Z", - "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", - "creationTime": "2023-04-06T00:26:23Z", - "deletionTime": "2023-04-06T00:43:42Z" + "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z" } ] } }, { - "name": "a96f997d-2cbf-4a64-b917-c776e6908601", + "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", "properties": { - "accountName": "restoredaccount-3726", + "accountName": "restoredaccount-2652", "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z" + "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z" } ] } }, { - "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", "properties": { - "accountName": "r-table-account-6883", + "accountName": "r-database-account-20", "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:10:50Z", - "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T18:03:36Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", - "creationTime": "2023-04-06T01:10:51Z", - "deletionTime": "2023-04-06T01:12:24Z" + "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", + "creationTime": "2023-04-05T18:03:37Z", + "deletionTime": "2023-04-05T18:21:00Z" } ] } }, { - "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", "properties": { - "accountName": "r-table-account-5301", + "accountName": "r-database-account-727", "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:30:03Z", - "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-05T18:25:45Z", + "deletionTime": "2023-04-05T18:27:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", - "creationTime": "2023-04-06T01:30:04Z", - "deletionTime": "2023-04-06T01:31:00Z" + "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", + "creationTime": "2023-04-05T18:25:47Z", + "deletionTime": "2023-04-05T18:27:03Z" } ] } }, { - "name": "999e9d75-47c8-4230-8a4e-677ee461269b", + "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", "properties": { - "accountName": "r-database-account-3960", - "apiType": "Sql", - "creationTime": "2023-04-06T02:16:51Z", - "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2209", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T18:38:04Z", + "deletionTime": "2023-04-05T18:40:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", - "creationTime": "2023-04-06T02:16:52Z", - "deletionTime": "2023-04-06T02:17:49Z" + "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", + "creationTime": "2023-04-05T18:38:05Z", + "deletionTime": "2023-04-05T18:40:00Z" } ] } }, { - "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "name": "e106c7e7-2828-4193-b125-0540ec42f85a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", "properties": { - "accountName": "r-database-account-6028", - "apiType": "Sql", - "creationTime": "2023-04-06T02:27:53Z", - "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-3109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:20Z", + "deletionTime": "2023-04-05T19:17:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", - "creationTime": "2023-04-06T02:27:54Z", - "deletionTime": "2023-04-06T02:44:39Z" + "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", + "creationTime": "2023-04-05T19:15:21Z", + "deletionTime": "2023-04-05T19:17:06Z" } ] } }, { - "name": "3065e921-a49b-43d6-84aa-037f18987a23", + "name": "19b77f33-9070-4bea-89ec-83ad22c59136", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", "properties": { - "accountName": "restoredaccount-7075", - "apiType": "Sql", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-3153", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:32:53Z", + "deletionTime": "2023-04-05T19:33:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z" + "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", + "creationTime": "2023-04-05T19:32:54Z", + "deletionTime": "2023-04-05T19:33:59Z" } ] } }, { - "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", + "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", "properties": { - "accountName": "r-database-account-5983", - "apiType": "Sql", - "creationTime": "2023-04-06T03:09:16Z", - "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-6612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:47:56Z", + "deletionTime": "2023-04-05T20:04:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", - "creationTime": "2023-04-06T03:09:18Z", - "deletionTime": "2023-04-06T03:10:13Z" + "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", + "creationTime": "2023-04-05T19:47:57Z", + "deletionTime": "2023-04-05T20:04:52Z" } ] } }, { - "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", "properties": { - "accountName": "r-database-account-7214", - "apiType": "Sql", - "creationTime": "2023-04-06T03:20:49Z", - "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-5075", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", - "creationTime": "2023-04-06T03:20:50Z", - "deletionTime": "2023-04-06T03:37:02Z" + "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z" } ] } }, { - "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", + "name": "57958516-07cd-498b-b42b-d8bbde38fc72", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", "properties": { - "accountName": "restoredaccount-1487", - "apiType": "Sql", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-2460", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:32:03Z", + "deletionTime": "2023-04-05T20:52:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z" + "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", + "creationTime": "2023-04-05T20:32:04Z", + "deletionTime": "2023-04-05T20:52:58Z" } ] } }, { - "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", + "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", "properties": { - "accountName": "r-table-account-2891", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:02:47Z", - "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-9191", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", - "creationTime": "2023-04-06T04:02:48Z", - "deletionTime": "2023-04-06T04:03:49Z" + "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z" } ] } }, { - "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", "properties": { - "accountName": "r-table-account-7603", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:18:01Z", - "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-917", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:20:40Z", + "deletionTime": "2023-04-05T21:22:32Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", - "creationTime": "2023-04-06T04:18:02Z", - "deletionTime": "2023-04-06T04:36:17Z" + "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", + "creationTime": "2023-04-05T21:20:41Z", + "deletionTime": "2023-04-05T21:22:32Z" } ] } }, { - "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", + "name": "d8af4291-a857-435c-9e68-add9be61e3e3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", "properties": { - "accountName": "restoredaccount-1355", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-4408", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:38:27Z", + "deletionTime": "2023-04-05T21:39:23Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z" + "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", + "creationTime": "2023-04-05T21:38:28Z", + "deletionTime": "2023-04-05T21:39:23Z" } ] } }, { - "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", + "name": "2348e86d-d845-4023-a61c-52a7c4998681", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", "properties": { - "accountName": "r-table-account-6373", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:05:15Z", - "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-3493", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:53:12Z", + "deletionTime": "2023-04-05T22:10:15Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", - "creationTime": "2023-04-06T05:05:16Z", - "deletionTime": "2023-04-06T05:22:50Z" + "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", + "creationTime": "2023-04-05T21:53:13Z", + "deletionTime": "2023-04-05T22:10:15Z" } ] } }, { - "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "name": "10d05397-ea2c-4d64-a325-da1097b67a30", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", "properties": { - "accountName": "restoredaccount-665", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7617", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z" + "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z" } ] } }, { - "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", + "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", "properties": { - "accountName": "r-table-account-1188", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:50:20Z", - "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-4657", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:37:57Z", + "deletionTime": "2023-04-05T22:57:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", - "creationTime": "2023-04-06T05:50:21Z", - "deletionTime": "2023-04-06T05:52:03Z" + "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", + "creationTime": "2023-04-05T22:37:58Z", + "deletionTime": "2023-04-05T22:57:18Z" } ] } }, { - "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", + "name": "b9c23cc0-13f3-4895-8534-809a00376677", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", "properties": { - "accountName": "r-table-account-5261", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:08:10Z", - "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-1097", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", - "creationTime": "2023-04-06T06:08:11Z", - "deletionTime": "2023-04-06T06:09:02Z" + "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z" } ] } }, { - "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", + "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", "properties": { - "accountName": "r-grem-db-account-723", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:39:44Z", - "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-4377", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:25:55Z", + "deletionTime": "2023-04-05T23:27:10Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", - "creationTime": "2023-04-06T06:39:45Z", - "deletionTime": "2023-04-06T06:41:33Z" + "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", + "creationTime": "2023-04-05T23:25:56Z", + "deletionTime": "2023-04-05T23:27:10Z" } ] } }, { - "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", + "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", "properties": { - "accountName": "r-grem-db-account-7969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:58:36Z", - "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-1415", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:41:00Z", + "deletionTime": "2023-04-05T23:59:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", - "creationTime": "2023-04-06T06:58:37Z", - "deletionTime": "2023-04-06T06:59:36Z" + "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", + "creationTime": "2023-04-05T23:41:01Z", + "deletionTime": "2023-04-05T23:59:07Z" } ] } }, { - "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", + "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", "properties": { - "accountName": "r-grem-db-account-2577", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:15:43Z", - "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-5386", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", - "creationTime": "2023-04-06T07:15:45Z", - "deletionTime": "2023-04-06T07:33:07Z" + "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z" } ] } }, { - "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "name": "701f814c-13b7-4144-b75c-52946e6946cb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", "properties": { - "accountName": "restoredaccount-693", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z" + "accountName": "r-table-account-6354", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:26:22Z", + "deletionTime": "2023-04-06T00:43:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", + "creationTime": "2023-04-06T00:26:23Z", + "deletionTime": "2023-04-06T00:43:42Z" } ] } }, { - "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", + "name": "a96f997d-2cbf-4a64-b917-c776e6908601", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", "properties": { - "accountName": "r-grem-db-account-4601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:00:25Z", - "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-3726", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", - "creationTime": "2023-04-06T08:00:26Z", - "deletionTime": "2023-04-06T08:20:12Z" + "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z" } ] } }, { - "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", "properties": { - "accountName": "restoredaccount-1430", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6883", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:10:50Z", + "deletionTime": "2023-04-06T01:12:24Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z" + "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", + "creationTime": "2023-04-06T01:10:51Z", + "deletionTime": "2023-04-06T01:12:24Z" } ] } }, { - "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", "properties": { - "accountName": "r-grem-db-account-7507", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:48:00Z", - "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-5301", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:30:03Z", + "deletionTime": "2023-04-06T01:31:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", - "creationTime": "2023-04-06T08:48:01Z", - "deletionTime": "2023-04-06T08:49:48Z" + "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", + "creationTime": "2023-04-06T01:30:04Z", + "deletionTime": "2023-04-06T01:31:00Z" } ] } }, { - "name": "a8bfadea-a883-491c-8311-3202491cfe5d", + "name": "999e9d75-47c8-4230-8a4e-677ee461269b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", "properties": { - "accountName": "r-grem-db-account-2606", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:05:50Z", - "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3960", + "apiType": "Sql", + "creationTime": "2023-04-06T02:16:51Z", + "deletionTime": "2023-04-06T02:17:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", - "creationTime": "2023-04-06T09:05:51Z", - "deletionTime": "2023-04-06T09:06:43Z" + "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", + "creationTime": "2023-04-06T02:16:52Z", + "deletionTime": "2023-04-06T02:17:49Z" } ] } }, { - "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", "properties": { - "accountName": "r-grem-db-account-6681", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:21:06Z", - "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-6028", + "apiType": "Sql", + "creationTime": "2023-04-06T02:27:53Z", + "deletionTime": "2023-04-06T02:44:39Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", - "creationTime": "2023-04-06T09:21:07Z", - "deletionTime": "2023-04-06T09:38:10Z" + "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", + "creationTime": "2023-04-06T02:27:54Z", + "deletionTime": "2023-04-06T02:44:39Z" } ] } }, { - "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "name": "3065e921-a49b-43d6-84aa-037f18987a23", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", "properties": { - "accountName": "restoredaccount-4215", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7075", + "apiType": "Sql", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z" + "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z" } ] } }, { - "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", + "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", "properties": { - "accountName": "r-grem-db-account-846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:06:04Z", - "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-5983", + "apiType": "Sql", + "creationTime": "2023-04-06T03:09:16Z", + "deletionTime": "2023-04-06T03:10:13Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", - "creationTime": "2023-04-06T10:06:06Z", - "deletionTime": "2023-04-06T10:25:18Z" + "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", + "creationTime": "2023-04-06T03:09:18Z", + "deletionTime": "2023-04-06T03:10:13Z" } ] } }, { - "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", "properties": { - "accountName": "restoredaccount-5193", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-7214", + "apiType": "Sql", + "creationTime": "2023-04-06T03:20:49Z", + "deletionTime": "2023-04-06T03:37:02Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z" + "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", + "creationTime": "2023-04-06T03:20:50Z", + "deletionTime": "2023-04-06T03:37:02Z" } ] } }, { - "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", "properties": { - "accountName": "r-table-account-6567", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T10:53:20Z", - "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-1487", + "apiType": "Sql", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", - "creationTime": "2023-04-06T10:53:21Z", - "deletionTime": "2023-04-06T10:54:04Z" + "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z" } ] } }, { - "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", "properties": { - "accountName": "r-table-account-6921", + "accountName": "r-table-account-2891", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:08:49Z", - "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T04:02:47Z", + "deletionTime": "2023-04-06T04:03:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", - "creationTime": "2023-04-06T11:08:51Z", - "deletionTime": "2023-04-06T11:27:03Z" + "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", + "creationTime": "2023-04-06T04:02:48Z", + "deletionTime": "2023-04-06T04:03:49Z" } ] } }, { - "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", + "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", "properties": { - "accountName": "restoredaccount-7286", + "accountName": "r-table-account-7603", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T04:18:01Z", + "deletionTime": "2023-04-06T04:36:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z" + "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", + "creationTime": "2023-04-06T04:18:02Z", + "deletionTime": "2023-04-06T04:36:17Z" } ] } }, { - "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", "properties": { - "accountName": "r-table-account-5254", + "accountName": "restoredaccount-1355", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:54:50Z", - "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", - "creationTime": "2023-04-06T11:54:51Z", - "deletionTime": "2023-04-06T12:11:56Z" + "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z" } ] } }, { - "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", "properties": { - "accountName": "restoredaccount-6482", + "accountName": "r-table-account-6373", "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T05:05:15Z", + "deletionTime": "2023-04-06T05:22:50Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z" + "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", + "creationTime": "2023-04-06T05:05:16Z", + "deletionTime": "2023-04-06T05:22:50Z" } ] } }, { - "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", "properties": { - "accountName": "r-table-account-7579", + "accountName": "restoredaccount-665", "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:39:46Z", - "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", - "creationTime": "2023-04-06T12:39:48Z", - "deletionTime": "2023-04-06T12:41:09Z" + "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z" } ] } }, { - "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", + "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", "properties": { - "accountName": "cliz2xezqib6sfs", - "apiType": "Sql", - "creationTime": "2023-04-06T17:48:58Z", - "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-1188", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T05:50:20Z", + "deletionTime": "2023-04-06T05:52:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", - "creationTime": "2023-04-06T17:48:59Z", - "deletionTime": "2023-04-06T17:51:37Z" + "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", + "creationTime": "2023-04-06T05:50:21Z", + "deletionTime": "2023-04-06T05:52:03Z" } ] } }, { - "name": "d4eb1a5c-fa82-416b-8765-73105541441a", + "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", "properties": { - "accountName": "climxyj6ppdtdi3", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:23Z", - "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-5261", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:08:10Z", + "deletionTime": "2023-04-06T06:09:02Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", - "creationTime": "2023-04-06T17:50:24Z", - "deletionTime": "2023-04-06T17:53:09Z" + "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", + "creationTime": "2023-04-06T06:08:11Z", + "deletionTime": "2023-04-06T06:09:02Z" } ] } }, { - "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", + "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", "properties": { - "accountName": "clinhlpp5ltdx45", + "accountName": "r-grem-db-account-723", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:16Z", - "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T06:39:44Z", + "deletionTime": "2023-04-06T06:41:33Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", - "creationTime": "2023-04-06T17:50:17Z", - "deletionTime": "2023-04-06T17:53:35Z" + "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", + "creationTime": "2023-04-06T06:39:45Z", + "deletionTime": "2023-04-06T06:41:33Z" } ] } }, { - "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", "properties": { - "accountName": "clicvlfgrzahmvn", + "accountName": "r-grem-db-account-7969", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:25Z", - "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T06:58:36Z", + "deletionTime": "2023-04-06T06:59:36Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T17:54:37Z" + "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", + "creationTime": "2023-04-06T06:58:37Z", + "deletionTime": "2023-04-06T06:59:36Z" } ] } }, { - "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", "properties": { - "accountName": "cli3hfttbxzir22", - "apiType": "Sql", - "creationTime": "2023-04-06T17:53:13Z", - "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-2577", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:15:43Z", + "deletionTime": "2023-04-06T07:33:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", - "creationTime": "2023-04-06T17:53:14Z", - "deletionTime": "2023-04-06T17:55:25Z" + "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", + "creationTime": "2023-04-06T07:15:45Z", + "deletionTime": "2023-04-06T07:33:07Z" } ] } }, { - "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", + "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", "properties": { - "accountName": "clioyp6agdkdrvk", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:56:23Z", - "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-693", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", - "creationTime": "2023-04-06T17:56:24Z", - "deletionTime": "2023-04-06T17:58:30Z" + "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z" } ] } }, { - "name": "c4ce576d-4033-4b12-a450-daa13093cf34", + "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", "properties": { - "accountName": "clipniczjve2l4q", + "accountName": "r-grem-db-account-4601", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:56:45Z", - "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T08:00:25Z", + "deletionTime": "2023-04-06T08:20:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", - "creationTime": "2023-04-06T17:56:46Z", - "deletionTime": "2023-04-06T17:58:52Z" + "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", + "creationTime": "2023-04-06T08:00:26Z", + "deletionTime": "2023-04-06T08:20:12Z" } ] } }, { - "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", + "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", "properties": { - "accountName": "clitae37flgxvip", - "apiType": "Sql", - "creationTime": "2023-04-06T17:57:03Z", - "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-1430", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", - "creationTime": "2023-04-06T17:57:04Z", - "deletionTime": "2023-04-06T17:58:56Z" + "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z" } ] } }, { - "name": "16cd72d1-8782-4faa-9e06-263055e4a852", + "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", "properties": { - "accountName": "cliqeiwdwhcytpv", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:06Z", - "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-7507", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:48:00Z", + "deletionTime": "2023-04-06T08:49:48Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", - "creationTime": "2023-04-06T18:02:07Z", - "deletionTime": "2023-04-06T18:02:32Z" + "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", + "creationTime": "2023-04-06T08:48:01Z", + "deletionTime": "2023-04-06T08:49:48Z" } ] } }, { - "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", + "name": "a8bfadea-a883-491c-8311-3202491cfe5d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", "properties": { - "accountName": "cling2ssmapqjtb", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:20Z", - "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-2606", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:05:50Z", + "deletionTime": "2023-04-06T09:06:43Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", - "creationTime": "2023-04-06T18:02:21Z", - "deletionTime": "2023-04-06T18:03:00Z" + "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", + "creationTime": "2023-04-06T09:05:51Z", + "deletionTime": "2023-04-06T09:06:43Z" } ] } }, { - "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", + "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", "properties": { - "accountName": "clic7r4mbsoucoq", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-6681", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:21:06Z", + "deletionTime": "2023-04-06T09:38:10Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", - "creationTime": "2023-04-06T17:50:27Z", - "deletionTime": "2023-04-06T18:04:54Z" + "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", + "creationTime": "2023-04-06T09:21:07Z", + "deletionTime": "2023-04-06T09:38:10Z" } ] } }, { - "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", + "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", "properties": { - "accountName": "cli6dll5uxhswmo", - "apiType": "Sql", - "creationTime": "2023-04-06T17:49:07Z", - "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-4215", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", - "creationTime": "2023-04-06T17:49:08Z", - "deletionTime": "2023-04-06T18:08:24Z" + "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z" } ] } }, { - "name": "12fd85da-0738-45bc-a4ca-3576006082e6", + "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", "properties": { - "accountName": "restoredaccount-7559", + "accountName": "r-grem-db-account-846", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T10:06:04Z", + "deletionTime": "2023-04-06T10:25:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z" + "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", + "creationTime": "2023-04-06T10:06:06Z", + "deletionTime": "2023-04-06T10:25:18Z" } ] } }, { - "name": "730730ee-ee98-48bf-9c87-a38abac5781d", + "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", "properties": { - "accountName": "r-grem-db-account-3799", + "accountName": "restoredaccount-5193", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:54:33Z", - "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", - "creationTime": "2023-04-06T17:54:34Z", - "deletionTime": "2023-04-06T18:11:45Z" + "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z" } ] } }, { - "name": "a331a0ab-07a6-4831-827d-30e513076c75", + "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", "properties": { - "accountName": "r-grem-db-account-8345", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:39Z", - "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6567", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T10:53:20Z", + "deletionTime": "2023-04-06T10:54:04Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", - "creationTime": "2023-04-06T18:35:40Z", - "deletionTime": "2023-04-06T18:52:37Z" + "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", + "creationTime": "2023-04-06T10:53:21Z", + "deletionTime": "2023-04-06T10:54:04Z" } ] } }, { - "name": "c20213cc-0b64-4141-abdc-45f028e756fd", + "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", "properties": { - "accountName": "restoredaccount-3447", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6921", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:08:49Z", + "deletionTime": "2023-04-06T11:27:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z" + "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", + "creationTime": "2023-04-06T11:08:51Z", + "deletionTime": "2023-04-06T11:27:03Z" } ] } }, { - "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", "properties": { - "accountName": "r-grem-db-account-6227", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:23:52Z", - "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7286", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", - "creationTime": "2023-04-06T19:23:53Z", - "deletionTime": "2023-04-06T19:41:19Z" + "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z" } ] } }, { - "name": "4228ce2e-f496-4131-a7b4-a093f4644646", + "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", "properties": { - "accountName": "restoredaccount-601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-5254", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:54:50Z", + "deletionTime": "2023-04-06T12:11:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z" + "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", + "creationTime": "2023-04-06T11:54:51Z", + "deletionTime": "2023-04-06T12:11:56Z" } ] } }, { - "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", "properties": { - "accountName": "r-database-account-3957", - "apiType": "Sql", - "creationTime": "2023-04-06T20:07:56Z", - "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-6482", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", - "creationTime": "2023-04-06T20:07:57Z", - "deletionTime": "2023-04-06T20:08:54Z" + "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z" } ] } }, { - "name": "53ad2502-1710-406d-84e3-296fce5bd44a", + "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", "properties": { - "accountName": "r-database-account-9163", - "apiType": "Sql", - "creationTime": "2023-04-06T20:19:51Z", - "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-7579", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:39:46Z", + "deletionTime": "2023-04-06T12:41:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", - "creationTime": "2023-04-06T20:19:52Z", - "deletionTime": "2023-04-06T20:36:03Z" + "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", + "creationTime": "2023-04-06T12:39:48Z", + "deletionTime": "2023-04-06T12:41:09Z" } ] } }, { - "name": "70ea9f86-be31-455a-b5be-791409c2b437", + "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", "properties": { - "accountName": "restoredaccount-7173", + "accountName": "cliz2xezqib6sfs", "apiType": "Sql", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T17:48:58Z", + "deletionTime": "2023-04-06T17:51:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z" + "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", + "creationTime": "2023-04-06T17:48:59Z", + "deletionTime": "2023-04-06T17:51:37Z" } ] } }, { - "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", + "name": "d4eb1a5c-fa82-416b-8765-73105541441a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", "properties": { - "accountName": "r-database-account-3610", - "apiType": "Sql", - "creationTime": "2023-04-06T21:00:14Z", - "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "climxyj6ppdtdi3", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:23Z", + "deletionTime": "2023-04-06T17:53:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", - "creationTime": "2023-04-06T21:00:15Z", - "deletionTime": "2023-04-06T21:01:06Z" + "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", + "creationTime": "2023-04-06T17:50:24Z", + "deletionTime": "2023-04-06T17:53:09Z" } ] } }, { - "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", "properties": { - "accountName": "r-database-account-2590", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:43Z", - "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clinhlpp5ltdx45", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:16Z", + "deletionTime": "2023-04-06T17:53:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", - "creationTime": "2023-04-06T21:11:44Z", - "deletionTime": "2023-04-06T21:29:03Z" + "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", + "creationTime": "2023-04-06T17:50:17Z", + "deletionTime": "2023-04-06T17:53:35Z" } ] } }, { - "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", "properties": { - "accountName": "restoredaccount-5783", - "apiType": "Sql", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clicvlfgrzahmvn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:25Z", + "deletionTime": "2023-04-06T17:54:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z" + "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T17:54:37Z" } ] } }, { - "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", + "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", "properties": { - "accountName": "r-grem-db-account-360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T21:54:18Z", - "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cli3hfttbxzir22", + "apiType": "Sql", + "creationTime": "2023-04-06T17:53:13Z", + "deletionTime": "2023-04-06T17:55:25Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", - "creationTime": "2023-04-06T21:54:19Z", - "deletionTime": "2023-04-06T21:55:57Z" + "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", + "creationTime": "2023-04-06T17:53:14Z", + "deletionTime": "2023-04-06T17:55:25Z" } ] } }, { - "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", + "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", "properties": { - "accountName": "r-grem-db-account-5702", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:13:06Z", - "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clioyp6agdkdrvk", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:56:23Z", + "deletionTime": "2023-04-06T17:58:30Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", - "creationTime": "2023-04-06T22:13:07Z", - "deletionTime": "2023-04-06T22:13:57Z" + "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", + "creationTime": "2023-04-06T17:56:24Z", + "deletionTime": "2023-04-06T17:58:30Z" } ] } }, { - "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "name": "c4ce576d-4033-4b12-a450-daa13093cf34", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", "properties": { - "accountName": "r-grem-db-account-7080", + "accountName": "clipniczjve2l4q", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:28:25Z", - "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T17:56:45Z", + "deletionTime": "2023-04-06T17:58:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", - "creationTime": "2023-04-06T22:28:26Z", - "deletionTime": "2023-04-06T22:45:55Z" + "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", + "creationTime": "2023-04-06T17:56:46Z", + "deletionTime": "2023-04-06T17:58:52Z" } ] } }, { - "name": "0045cc2f-f262-44f7-94be-a8a81258114b", + "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", "properties": { - "accountName": "restoredaccount-3266", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clitae37flgxvip", + "apiType": "Sql", + "creationTime": "2023-04-06T17:57:03Z", + "deletionTime": "2023-04-06T17:58:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z" + "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", + "creationTime": "2023-04-06T17:57:04Z", + "deletionTime": "2023-04-06T17:58:56Z" } ] } }, { - "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", + "name": "16cd72d1-8782-4faa-9e06-263055e4a852", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", "properties": { - "accountName": "r-grem-db-account-8379", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:13:12Z", - "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cliqeiwdwhcytpv", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:06Z", + "deletionTime": "2023-04-06T18:02:32Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", - "creationTime": "2023-04-06T23:13:14Z", - "deletionTime": "2023-04-06T23:33:31Z" + "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", + "creationTime": "2023-04-06T18:02:07Z", + "deletionTime": "2023-04-06T18:02:32Z" } ] } }, { - "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", "properties": { - "accountName": "restoredaccount-4898", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cling2ssmapqjtb", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:20Z", + "deletionTime": "2023-04-06T18:03:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z" + "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", + "creationTime": "2023-04-06T18:02:21Z", + "deletionTime": "2023-04-06T18:03:00Z" } ] } }, { - "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", "properties": { - "accountName": "r-grem-db-account-97", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:01:21Z", - "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clic7r4mbsoucoq", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T18:04:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", - "creationTime": "2023-04-07T00:01:22Z", - "deletionTime": "2023-04-07T00:03:03Z" + "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", + "creationTime": "2023-04-06T17:50:27Z", + "deletionTime": "2023-04-06T18:04:54Z" } ] } }, { - "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", + "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", "properties": { - "accountName": "r-grem-db-account-359", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:19:33Z", - "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cli6dll5uxhswmo", + "apiType": "Sql", + "creationTime": "2023-04-06T17:49:07Z", + "deletionTime": "2023-04-06T18:08:24Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", - "creationTime": "2023-04-07T00:19:34Z", - "deletionTime": "2023-04-07T00:20:32Z" + "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", + "creationTime": "2023-04-06T17:49:08Z", + "deletionTime": "2023-04-06T18:08:24Z" } ] } }, { - "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "name": "12fd85da-0738-45bc-a4ca-3576006082e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", "properties": { - "accountName": "r-grem-db-account-6322", + "accountName": "restoredaccount-7559", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:35:00Z", - "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", - "creationTime": "2023-04-07T00:35:01Z", - "deletionTime": "2023-04-07T00:51:27Z" + "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z" } ] } }, { - "name": "89acddd1-7338-4be9-b3f3-a7c060975428", + "name": "730730ee-ee98-48bf-9c87-a38abac5781d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", "properties": { - "accountName": "restoredaccount-3920", + "accountName": "r-grem-db-account-3799", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T17:54:33Z", + "deletionTime": "2023-04-06T18:11:45Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z" + "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", + "creationTime": "2023-04-06T17:54:34Z", + "deletionTime": "2023-04-06T18:11:45Z" } ] } }, { - "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "name": "a331a0ab-07a6-4831-827d-30e513076c75", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", "properties": { - "accountName": "r-grem-db-account-1985", + "accountName": "r-grem-db-account-8345", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:20:59Z", - "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:35:39Z", + "deletionTime": "2023-04-06T18:52:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", - "creationTime": "2023-04-07T01:21:01Z", - "deletionTime": "2023-04-07T01:39:59Z" + "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", + "creationTime": "2023-04-06T18:35:40Z", + "deletionTime": "2023-04-06T18:52:37Z" } ] } }, { - "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "name": "c20213cc-0b64-4141-abdc-45f028e756fd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", "properties": { - "accountName": "restoredaccount-2245", + "accountName": "restoredaccount-3447", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z" + "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z" } ] } }, { - "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", "properties": { - "accountName": "r-table-account-6589", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:08:08Z", - "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-6227", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:23:52Z", + "deletionTime": "2023-04-06T19:41:19Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", - "creationTime": "2023-04-07T02:08:09Z", - "deletionTime": "2023-04-07T02:09:18Z" + "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", + "creationTime": "2023-04-06T19:23:53Z", + "deletionTime": "2023-04-06T19:41:19Z" } ] } }, { - "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", + "name": "4228ce2e-f496-4131-a7b4-a093f4644646", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", "properties": { - "accountName": "r-table-account-455", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:23:44Z", - "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-601", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", - "creationTime": "2023-04-07T02:23:45Z", - "deletionTime": "2023-04-07T02:42:21Z" + "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z" } ] } }, { - "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", "properties": { - "accountName": "restoredaccount-27", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3957", + "apiType": "Sql", + "creationTime": "2023-04-06T20:07:56Z", + "deletionTime": "2023-04-06T20:08:54Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z" + "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", + "creationTime": "2023-04-06T20:07:57Z", + "deletionTime": "2023-04-06T20:08:54Z" } ] } }, { - "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "name": "53ad2502-1710-406d-84e3-296fce5bd44a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", "properties": { - "accountName": "r-table-account-4096", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:09:53Z", - "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-9163", + "apiType": "Sql", + "creationTime": "2023-04-06T20:19:51Z", + "deletionTime": "2023-04-06T20:36:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", - "creationTime": "2023-04-07T03:09:54Z", - "deletionTime": "2023-04-07T03:26:55Z" + "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", + "creationTime": "2023-04-06T20:19:52Z", + "deletionTime": "2023-04-06T20:36:03Z" } ] } }, { - "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", + "name": "70ea9f86-be31-455a-b5be-791409c2b437", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", "properties": { - "accountName": "restoredaccount-1168", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7173", + "apiType": "Sql", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z" + "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z" } ] } }, { - "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", + "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", "properties": { - "accountName": "r-table-account-6117", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:54:19Z", - "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-3610", + "apiType": "Sql", + "creationTime": "2023-04-06T21:00:14Z", + "deletionTime": "2023-04-06T21:01:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", - "creationTime": "2023-04-07T03:54:20Z", - "deletionTime": "2023-04-07T03:55:39Z" + "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", + "creationTime": "2023-04-06T21:00:15Z", + "deletionTime": "2023-04-06T21:01:06Z" } ] } }, { - "name": "0554d9f5-654a-4d8b-b684-27f659539579", + "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", "properties": { - "accountName": "r-table-account-5255", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:11:45Z", - "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-database-account-2590", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:43Z", + "deletionTime": "2023-04-06T21:29:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", - "creationTime": "2023-04-07T04:11:47Z", - "deletionTime": "2023-04-07T04:12:39Z" + "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", + "creationTime": "2023-04-06T21:11:44Z", + "deletionTime": "2023-04-06T21:29:03Z" } ] } }, { - "name": "fece0537-1813-4eca-ba83-43a475cc913c", + "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", "properties": { - "accountName": "r-table-account-555", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:26:38Z", - "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-5783", + "apiType": "Sql", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", - "creationTime": "2023-04-07T04:26:39Z", - "deletionTime": "2023-04-07T04:45:11Z" - } - ] + "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z" + } + ] } }, { - "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", "properties": { - "accountName": "restoredaccount-3867", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T21:54:18Z", + "deletionTime": "2023-04-06T21:55:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z" + "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", + "creationTime": "2023-04-06T21:54:19Z", + "deletionTime": "2023-04-06T21:55:57Z" } ] } }, { - "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", "properties": { - "accountName": "r-table-account-4311", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:13:59Z", - "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-5702", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:13:06Z", + "deletionTime": "2023-04-06T22:13:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", - "creationTime": "2023-04-07T05:14:00Z", - "deletionTime": "2023-04-07T05:30:58Z" + "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", + "creationTime": "2023-04-06T22:13:07Z", + "deletionTime": "2023-04-06T22:13:57Z" } ] } }, { - "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", "properties": { - "accountName": "restoredaccount-7020", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-7080", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:28:25Z", + "deletionTime": "2023-04-06T22:45:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z" + "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", + "creationTime": "2023-04-06T22:28:26Z", + "deletionTime": "2023-04-06T22:45:55Z" } ] } }, { - "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "name": "0045cc2f-f262-44f7-94be-a8a81258114b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", "properties": { - "accountName": "r-table-account-6934", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:58:40Z", - "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-3266", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", - "creationTime": "2023-04-07T05:58:41Z", - "deletionTime": "2023-04-07T06:00:10Z" + "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z" } ] } }, { - "name": "6d446c65-d616-4aa3-8138-ed609a031011", + "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", "properties": { - "accountName": "cliz4gfhacxt3ra", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:02:28Z", - "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-8379", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:13:12Z", + "deletionTime": "2023-04-06T23:33:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", - "creationTime": "2023-04-07T18:02:29Z", - "deletionTime": "2023-04-07T18:06:12Z" + "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", + "creationTime": "2023-04-06T23:13:14Z", + "deletionTime": "2023-04-06T23:33:31Z" } ] } }, { - "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", "properties": { - "accountName": "clizzr52zwge4ps", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:16:23Z", - "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-4898", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", - "creationTime": "2023-04-07T18:16:24Z", - "deletionTime": "2023-04-07T18:19:37Z" + "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z" } ] } }, { - "name": "ab946470-3753-427d-a821-ec8a57709a65", + "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", "properties": { - "accountName": "cliyfwfppqkfatd", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:23:09Z", - "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-97", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:01:21Z", + "deletionTime": "2023-04-07T00:03:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", - "creationTime": "2023-04-07T18:23:10Z", - "deletionTime": "2023-04-07T18:49:00Z" + "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", + "creationTime": "2023-04-07T00:01:22Z", + "deletionTime": "2023-04-07T00:03:03Z" } ] } }, { - "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", "properties": { - "accountName": "clinxdvetbmpu2e", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:54:49Z", - "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-359", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:19:33Z", + "deletionTime": "2023-04-07T00:20:32Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", - "creationTime": "2023-04-07T18:54:50Z", - "deletionTime": "2023-04-07T19:21:12Z" + "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", + "creationTime": "2023-04-07T00:19:34Z", + "deletionTime": "2023-04-07T00:20:32Z" } ] } }, { - "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", + "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", "properties": { - "accountName": "clilwpd6a2jivng", - "apiType": "Sql", - "creationTime": "2023-04-07T22:22:56Z", - "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-6322", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:35:00Z", + "deletionTime": "2023-04-07T00:51:27Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", - "creationTime": "2023-04-07T22:22:57Z", - "deletionTime": "2023-04-07T22:49:32Z" + "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", + "creationTime": "2023-04-07T00:35:01Z", + "deletionTime": "2023-04-07T00:51:27Z" } ] } }, { - "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", + "name": "89acddd1-7338-4be9-b3f3-a7c060975428", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", "properties": { - "accountName": "cli5ohlmiu76mcl", - "apiType": "Sql", - "creationTime": "2023-04-08T14:54:41Z", - "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-3920", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", - "creationTime": "2023-04-08T14:54:42Z", - "deletionTime": "2023-04-08T15:00:16Z" + "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z" } ] } }, { - "name": "20547469-51f9-4bd8-af49-537306f0b327", + "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", "properties": { - "accountName": "clifmmb7dwsbns2", - "apiType": "Sql", - "creationTime": "2023-04-08T15:18:01Z", - "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-grem-db-account-1985", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:20:59Z", + "deletionTime": "2023-04-07T01:39:59Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", - "creationTime": "2023-04-08T15:18:02Z", - "deletionTime": "2023-04-08T15:49:43Z" + "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", + "creationTime": "2023-04-07T01:21:01Z", + "deletionTime": "2023-04-07T01:39:59Z" } ] } }, { - "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", "properties": { - "accountName": "cliv5od2aotadzs", - "apiType": "Sql", - "creationTime": "2023-04-08T15:52:34Z", - "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-2245", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", - "creationTime": "2023-04-08T15:52:35Z", - "deletionTime": "2023-04-08T16:18:52Z" + "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z" } ] } }, { - "name": "62bf06d8-9e56-4434-9078-423179904be7", + "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", "properties": { - "accountName": "clijr7md3oh7aue", - "apiType": "Sql", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6589", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:08:08Z", + "deletionTime": "2023-04-07T02:09:18Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z" + "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", + "creationTime": "2023-04-07T02:08:09Z", + "deletionTime": "2023-04-07T02:09:18Z" } ] } }, { - "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", "properties": { - "accountName": "clidkdojm4zyywo", - "apiType": "Sql", - "creationTime": "2023-04-08T17:18:16Z", - "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-455", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:23:44Z", + "deletionTime": "2023-04-07T02:42:21Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", - "creationTime": "2023-04-08T17:18:17Z", - "deletionTime": "2023-04-08T17:22:23Z" - } - ] + "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", + "creationTime": "2023-04-07T02:23:45Z", + "deletionTime": "2023-04-07T02:42:21Z" + } + ] } }, { - "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", "properties": { - "accountName": "clidhqrfu4m2zyv", - "apiType": "Sql", - "creationTime": "2023-04-10T17:53:22Z", - "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-27", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", - "creationTime": "2023-04-10T17:53:23Z", - "deletionTime": "2023-04-10T17:56:06Z" + "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z" } ] } }, { - "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", "properties": { - "accountName": "mk-ps-pna-enabled", - "apiType": "Sql", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-4096", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:09:53Z", + "deletionTime": "2023-04-07T03:26:55Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z" + "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", + "creationTime": "2023-04-07T03:09:54Z", + "deletionTime": "2023-04-07T03:26:55Z" } ] } }, { - "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", "properties": { - "accountName": "mk-test-ps-pna-disabled", - "apiType": "Sql", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-1168", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z" + "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z" } ] } }, { - "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", "properties": { - "accountName": "mayank-test-src", - "apiType": "Sql", - "creationTime": "2023-04-12T19:51:34Z", - "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6117", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:54:19Z", + "deletionTime": "2023-04-07T03:55:39Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", - "creationTime": "2023-04-12T19:51:35Z", - "deletionTime": "2023-04-12T23:26:03Z" + "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", + "creationTime": "2023-04-07T03:54:20Z", + "deletionTime": "2023-04-07T03:55:39Z" } ] } }, { - "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "name": "0554d9f5-654a-4d8b-b684-27f659539579", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", "properties": { - "accountName": "climpgqg4rhbujz", - "apiType": "Sql", - "creationTime": "2023-04-13T13:44:29Z", - "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-5255", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:11:45Z", + "deletionTime": "2023-04-07T04:12:39Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", - "creationTime": "2023-04-13T13:44:30Z", - "deletionTime": "2023-04-13T13:48:14Z" + "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", + "creationTime": "2023-04-07T04:11:47Z", + "deletionTime": "2023-04-07T04:12:39Z" } ] } }, { - "name": "6d55af6c-8889-4938-ba25-28afb7858035", + "name": "fece0537-1813-4eca-ba83-43a475cc913c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", "properties": { - "accountName": "mayank-src", - "apiType": "Sql", - "creationTime": "2023-04-13T17:30:02Z", - "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-555", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:26:38Z", + "deletionTime": "2023-04-07T04:45:11Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", - "creationTime": "2023-04-13T17:30:03Z", - "deletionTime": "2023-04-13T18:35:56Z" + "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", + "creationTime": "2023-04-07T04:26:39Z", + "deletionTime": "2023-04-07T04:45:11Z" } ] } }, { - "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", "properties": { - "accountName": "mayank-pspreview-test", - "apiType": "Sql", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-3867", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z" + "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z" } ] } }, { - "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", "properties": { - "accountName": "r-database-account-3188", - "apiType": "Sql", - "creationTime": "2023-04-18T13:44:01Z", - "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-4311", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:13:59Z", + "deletionTime": "2023-04-07T05:30:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", - "creationTime": "2023-04-18T13:44:02Z", - "deletionTime": "2023-04-18T14:06:35Z" + "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", + "creationTime": "2023-04-07T05:14:00Z", + "deletionTime": "2023-04-07T05:30:58Z" } ] } }, { - "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", "properties": { - "accountName": "restoredaccount-5903", - "apiType": "Sql", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "restoredaccount-7020", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z" + "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z" } ] } }, { - "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", "properties": { - "accountName": "r-database-account-8442", - "apiType": "Sql", - "creationTime": "2023-04-18T18:21:09Z", - "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "r-table-account-6934", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:58:40Z", + "deletionTime": "2023-04-07T06:00:10Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", - "creationTime": "2023-04-18T18:21:10Z", - "deletionTime": "2023-04-18T18:43:26Z" + "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", + "creationTime": "2023-04-07T05:58:41Z", + "deletionTime": "2023-04-07T06:00:10Z" } ] } }, { - "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "name": "6d446c65-d616-4aa3-8138-ed609a031011", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", "properties": { - "accountName": "restoredaccount-5883", - "apiType": "Sql", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cliz4gfhacxt3ra", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:02:28Z", + "deletionTime": "2023-04-07T18:06:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z" + "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", + "creationTime": "2023-04-07T18:02:29Z", + "deletionTime": "2023-04-07T18:06:12Z" } ] } }, { - "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", "properties": { - "accountName": "r-database-account-8968", - "apiType": "Sql", - "creationTime": "2023-04-18T20:58:17Z", - "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clizzr52zwge4ps", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:16:23Z", + "deletionTime": "2023-04-07T18:19:37Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", - "creationTime": "2023-04-18T20:58:18Z", - "deletionTime": "2023-04-18T21:21:06Z" + "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", + "creationTime": "2023-04-07T18:16:24Z", + "deletionTime": "2023-04-07T18:19:37Z" } ] } }, { - "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "name": "ab946470-3753-427d-a821-ec8a57709a65", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", "properties": { - "accountName": "restoredaccount-8805", - "apiType": "Sql", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "cliyfwfppqkfatd", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:23:09Z", + "deletionTime": "2023-04-07T18:49:00Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z" + "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", + "creationTime": "2023-04-07T18:23:10Z", + "deletionTime": "2023-04-07T18:49:00Z" } ] } }, { - "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", "properties": { - "accountName": "r-database-account-7565", - "apiType": "Sql", - "creationTime": "2023-04-19T04:54:02Z", - "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clinxdvetbmpu2e", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:54:49Z", + "deletionTime": "2023-04-07T19:21:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", - "creationTime": "2023-04-19T04:54:03Z", - "deletionTime": "2023-04-19T05:17:07Z" - } - ] + "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", + "creationTime": "2023-04-07T18:54:50Z", + "deletionTime": "2023-04-07T19:21:12Z" + } + ] } }, { - "name": "a440fc94-a486-473c-bdeb-b62363814132", + "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", "properties": { - "accountName": "restoredaccount-8250", + "accountName": "clilwpd6a2jivng", "apiType": "Sql", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-07T22:22:56Z", + "deletionTime": "2023-04-07T22:49:32Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z" + "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", + "creationTime": "2023-04-07T22:22:57Z", + "deletionTime": "2023-04-07T22:49:32Z" } ] } }, { - "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", "properties": { - "accountName": "r-database-account-3177", + "accountName": "cli5ohlmiu76mcl", "apiType": "Sql", - "creationTime": "2023-04-19T07:32:19Z", - "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-08T14:54:41Z", + "deletionTime": "2023-04-08T15:00:16Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", - "creationTime": "2023-04-19T07:32:20Z", - "deletionTime": "2023-04-19T07:54:43Z" + "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", + "creationTime": "2023-04-08T14:54:42Z", + "deletionTime": "2023-04-08T15:00:16Z" } ] } }, { - "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "name": "20547469-51f9-4bd8-af49-537306f0b327", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", "properties": { - "accountName": "restoredaccount-9058", + "accountName": "clifmmb7dwsbns2", "apiType": "Sql", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-08T15:18:01Z", + "deletionTime": "2023-04-08T15:49:43Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z" + "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", + "creationTime": "2023-04-08T15:18:02Z", + "deletionTime": "2023-04-08T15:49:43Z" } ] } }, { - "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", "properties": { - "accountName": "r-database-account-9523", + "accountName": "cliv5od2aotadzs", "apiType": "Sql", - "creationTime": "2023-04-19T19:31:56Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-08T15:52:34Z", + "deletionTime": "2023-04-08T16:18:52Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", - "creationTime": "2023-04-19T19:31:57Z", - "deletionTime": "2023-04-19T23:47:56Z" + "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", + "creationTime": "2023-04-08T15:52:35Z", + "deletionTime": "2023-04-08T16:18:52Z" } ] } }, { - "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "name": "62bf06d8-9e56-4434-9078-423179904be7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", "properties": { - "accountName": "restoredaccount-4287", + "accountName": "clijr7md3oh7aue", "apiType": "Sql", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z" + "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z" } ] } }, { - "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", "properties": { - "accountName": "r-database-account-8435", + "accountName": "clidkdojm4zyywo", "apiType": "Sql", - "creationTime": "2023-04-06T02:11:39Z", - "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-08T17:18:16Z", + "deletionTime": "2023-04-08T17:22:23Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", - "creationTime": "2023-04-06T02:11:40Z", - "deletionTime": "2023-04-19T23:49:01Z" + "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", + "creationTime": "2023-04-08T17:18:17Z", + "deletionTime": "2023-04-08T17:22:23Z" } ] } }, { - "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", "properties": { - "accountName": "r-database-account-5580", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T18:31:49Z", - "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "accountName": "clidhqrfu4m2zyv", + "apiType": "Sql", + "creationTime": "2023-04-10T17:53:22Z", + "deletionTime": "2023-04-10T17:56:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", - "creationTime": "2023-04-05T18:31:50Z", - "deletionTime": "2023-04-19T23:53:21Z" + "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", + "creationTime": "2023-04-10T17:53:23Z", + "deletionTime": "2023-04-10T17:56:06Z" } ] } }, { - "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", "properties": { - "accountName": "r-database-account-163", + "accountName": "mk-ps-pna-enabled", "apiType": "Sql", - "creationTime": "2023-04-18T16:23:17Z", - "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", - "creationTime": "2023-04-18T16:23:18Z", - "deletionTime": "2023-04-19T23:54:07Z" + "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z" } ] } }, { - "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", "properties": { - "accountName": "r-database-account-8550", + "accountName": "mk-test-ps-pna-disabled", "apiType": "Sql", - "creationTime": "2023-04-06T02:07:24Z", - "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", - "creationTime": "2023-04-06T02:07:26Z", - "deletionTime": "2023-04-19T23:57:08Z" + "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z" } ] } }, { - "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", "properties": { - "accountName": "r-database-account-605", + "accountName": "mayank-test-src", "apiType": "Sql", - "creationTime": "2023-04-20T00:04:33Z", - "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T00:08:06Z", - "restorableLocations": [] + "creationTime": "2023-04-12T19:51:34Z", + "deletionTime": "2023-04-12T23:26:03Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", + "creationTime": "2023-04-12T19:51:35Z", + "deletionTime": "2023-04-12T23:26:03Z" + } + ] } }, { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", + "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", "properties": { - "accountName": "drop-continuous7", + "accountName": "climpgqg4rhbujz", "apiType": "Sql", - "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-13T13:44:29Z", + "deletionTime": "2023-04-13T13:48:14Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", - "creationTime": "2022-05-26T18:49:52Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", + "creationTime": "2023-04-13T13:44:30Z", + "deletionTime": "2023-04-13T13:48:14Z" } ] } }, { - "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "location": "East US", + "name": "6d55af6c-8889-4938-ba25-28afb7858035", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", "properties": { - "accountName": "periodicacctdrop", + "accountName": "mayank-src", "apiType": "Sql", - "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T00:08:03Z", + "creationTime": "2023-04-13T17:30:02Z", + "deletionTime": "2023-04-13T18:35:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", - "creationTime": "2022-08-24T22:57:51Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", + "creationTime": "2023-04-13T17:30:03Z", + "deletionTime": "2023-04-13T18:35:56Z" } ] } }, { - "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", - "location": "East US", + "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", "properties": { - "accountName": "periodicacctdrop2", + "accountName": "mayank-pspreview-test", "apiType": "Sql", - "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", - "creationTime": "2022-05-26T20:16:50Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z" } ] } }, { - "name": "b169ba58-4696-4196-99a4-51995d99f004", - "location": "East US", + "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", "properties": { - "accountName": "readregionrestore-1", + "accountName": "r-database-account-3188", "apiType": "Sql", - "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-18T13:44:01Z", + "deletionTime": "2023-04-18T14:06:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "Southeast Asia", - "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", - "creationTime": "2023-03-02T00:15:37Z" - }, - { - "locationName": "Central India", - "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", - "creationTime": "2023-03-02T00:38:10Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", + "creationTime": "2023-04-18T13:44:02Z", + "deletionTime": "2023-04-18T14:06:35Z" } ] } }, { - "name": "83301fff-71b5-4cb0-a399-3c6331b78411", - "location": "East US", + "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", "properties": { - "accountName": "portal-mongo-test", - "apiType": "MongoDB", - "creationTime": "2023-03-27T17:28:08Z", - "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "accountName": "restoredaccount-5903", + "apiType": "Sql", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", - "creationTime": "2023-03-27T17:28:09Z", - "deletionTime": "2023-03-27T17:30:49Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z" } ] } }, { - "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "location": "East US", + "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", "properties": { - "accountName": "amisi-8bd4a726", + "accountName": "r-database-account-8442", "apiType": "Sql", - "creationTime": "2023-03-29T07:24:07Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-18T18:21:09Z", + "deletionTime": "2023-04-18T18:43:26Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", - "creationTime": "2023-03-29T07:26:03Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", - "creationTime": "2023-03-29T07:24:08Z", - "deletionTime": "2023-03-29T07:44:16Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", + "creationTime": "2023-04-18T18:21:10Z", + "deletionTime": "2023-04-18T18:43:26Z" } ] } }, { - "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", - "location": "East US", + "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", "properties": { - "accountName": "amisi-da11000f", + "accountName": "restoredaccount-5883", "apiType": "Sql", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", - "creationTime": "2023-03-29T07:09:11Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z" } ] } }, { - "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "location": "East US", + "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", "properties": { - "accountName": "dsapaliga-restore-test2", + "accountName": "r-database-account-8968", "apiType": "Sql", - "creationTime": "2023-03-29T19:36:21Z", - "deletionTime": "2023-03-29T22:55:47Z", - "oldestRestorableTime": "2023-03-22T22:55:47Z", + "creationTime": "2023-04-18T20:58:17Z", + "deletionTime": "2023-04-18T21:21:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", - "creationTime": "2023-03-29T19:36:22Z", - "deletionTime": "2023-03-29T22:55:47Z" + "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", + "creationTime": "2023-04-18T20:58:18Z", + "deletionTime": "2023-04-18T21:21:06Z" } ] } }, { - "name": "66326971-fd72-4b66-9495-da9f95f0e86a", - "location": "East US", + "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", "properties": { - "accountName": "dsapaliga-restore-test3", + "accountName": "restoredaccount-8805", "apiType": "Sql", - "creationTime": "2023-03-29T21:45:59Z", - "deletionTime": "2023-03-29T22:55:54Z", - "oldestRestorableTime": "2023-03-22T22:55:54Z", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", - "creationTime": "2023-03-29T21:48:10Z", - "deletionTime": "2023-03-29T21:57:56Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", - "creationTime": "2023-03-29T21:46:00Z", - "deletionTime": "2023-03-29T22:55:54Z" + "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z" } ] } }, { - "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", - "location": "East US", + "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", "properties": { - "accountName": "dsapaliga-restore-test4", + "accountName": "r-database-account-7565", "apiType": "Sql", - "creationTime": "2023-03-29T22:08:33Z", - "deletionTime": "2023-03-29T22:56:00Z", - "oldestRestorableTime": "2023-03-22T22:56:00Z", + "creationTime": "2023-04-19T04:54:02Z", + "deletionTime": "2023-04-19T05:17:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", - "creationTime": "2023-03-29T22:08:34Z", - "deletionTime": "2023-03-29T22:56:00Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", + "creationTime": "2023-04-19T04:54:03Z", + "deletionTime": "2023-04-19T05:17:07Z" } ] } }, { - "name": "84a35eb5-784c-4923-a52f-60bd04765953", - "location": "East US", + "name": "a440fc94-a486-473c-bdeb-b62363814132", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", "properties": { - "accountName": "dsapaliga-restore-test6", + "accountName": "restoredaccount-8250", "apiType": "Sql", - "creationTime": "2023-03-29T22:24:23Z", - "deletionTime": "2023-03-29T22:56:18Z", - "oldestRestorableTime": "2023-03-22T22:56:18Z", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", - "creationTime": "2023-03-29T22:26:42Z", - "deletionTime": "2023-03-29T22:56:18Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", - "creationTime": "2023-03-29T22:24:24Z", - "deletionTime": "2023-03-29T22:56:18Z" + "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z" } ] } }, { - "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", - "location": "East US", + "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", "properties": { - "accountName": "dsapaliga-restored-westus-m", + "accountName": "r-database-account-3177", "apiType": "Sql", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z", - "oldestRestorableTime": "2023-03-22T22:56:46Z", + "creationTime": "2023-04-19T07:32:19Z", + "deletionTime": "2023-04-19T07:54:43Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z" + "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", + "creationTime": "2023-04-19T07:32:20Z", + "deletionTime": "2023-04-19T07:54:43Z" } ] } }, { - "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "location": "East US", + "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", "properties": { - "accountName": "cli-continuous30-sopplsfv", + "accountName": "restoredaccount-9058", "apiType": "Sql", - "creationTime": "2023-03-29T23:59:38Z", - "deletionTime": "2023-03-30T00:12:32Z", - "oldestRestorableTime": "2023-03-23T00:12:32Z", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", - "creationTime": "2023-03-30T00:02:04Z", - "deletionTime": "2023-03-30T00:12:32Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", - "creationTime": "2023-03-29T23:59:39Z", - "deletionTime": "2023-03-30T00:12:32Z" + "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z" } ] } }, { - "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "location": "East US", + "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", "properties": { - "accountName": "cli-continuous30-l5utea24-restored", + "accountName": "r-database-account-9523", "apiType": "Sql", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", + "creationTime": "2023-04-19T19:31:56Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z" + "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", + "creationTime": "2023-04-19T19:31:57Z", + "deletionTime": "2023-04-19T23:47:56Z" } ] } }, { - "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", - "location": "East US", + "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", "properties": { - "accountName": "cli-continuous30-l5utea24", + "accountName": "restoredaccount-4287", "apiType": "Sql", - "creationTime": "2023-03-30T00:33:44Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", - "creationTime": "2023-03-30T00:36:04Z", - "deletionTime": "2023-03-30T01:02:30Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", - "creationTime": "2023-03-30T00:33:45Z", - "deletionTime": "2023-03-30T01:02:30Z" + "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z" } ] } }, { - "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", - "location": "East US", + "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", "properties": { - "accountName": "cli-continuous30-3eb7aosu", + "accountName": "r-database-account-8435", "apiType": "Sql", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z", - "oldestRestorableTime": "2023-03-23T03:46:34Z", + "creationTime": "2023-04-06T02:11:39Z", + "deletionTime": "2023-04-19T23:49:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", - "creationTime": "2023-03-30T03:35:19Z", - "deletionTime": "2023-03-30T03:46:34Z" - }, + "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", + "creationTime": "2023-04-06T02:11:40Z", + "deletionTime": "2023-04-19T23:49:01Z" + } + ] + } + }, + { + "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "properties": { + "accountName": "r-database-account-5580", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T18:31:49Z", + "deletionTime": "2023-04-19T23:53:21Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", + "creationTime": "2023-04-05T18:31:50Z", + "deletionTime": "2023-04-19T23:53:21Z" } ] } }, { - "name": "856077e3-8335-4b95-9577-2ebf016ee892", - "location": "East US", + "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", "properties": { - "accountName": "cli-continuous30-tqwxb6nj", + "accountName": "r-database-account-163", "apiType": "Sql", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z", - "oldestRestorableTime": "2023-03-23T04:05:05Z", + "creationTime": "2023-04-18T16:23:17Z", + "deletionTime": "2023-04-19T23:54:07Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", - "creationTime": "2023-03-30T03:53:50Z", - "deletionTime": "2023-03-30T04:05:05Z" - }, + "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", + "creationTime": "2023-04-18T16:23:18Z", + "deletionTime": "2023-04-19T23:54:07Z" + } + ] + } + }, + { + "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "properties": { + "accountName": "r-database-account-8550", + "apiType": "Sql", + "creationTime": "2023-04-06T02:07:24Z", + "deletionTime": "2023-04-19T23:57:08Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", + "creationTime": "2023-04-06T02:07:26Z", + "deletionTime": "2023-04-19T23:57:08Z" } ] } }, { - "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "location": "East US", + "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", "properties": { - "accountName": "cli-continuous30-cmjnvki7", + "accountName": "r-database-account-605", "apiType": "Sql", - "creationTime": "2023-03-30T04:58:52Z", - "deletionTime": "2023-03-30T05:12:19Z", - "oldestRestorableTime": "2023-03-23T05:12:19Z", + "creationTime": "2023-04-20T00:04:33Z", + "deletionTime": "2023-04-20T00:05:28Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", - "creationTime": "2023-03-30T05:01:09Z", - "deletionTime": "2023-03-30T05:12:19Z" - }, + "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", + "creationTime": "2023-04-20T00:04:34Z", + "deletionTime": "2023-04-20T00:05:28Z" + } + ] + } + }, + { + "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", + "properties": { + "accountName": "r-database-account-1077", + "apiType": "Sql", + "creationTime": "2023-04-20T00:07:31Z", + "deletionTime": "2023-04-20T00:30:02Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", - "creationTime": "2023-03-30T04:58:53Z", - "deletionTime": "2023-03-30T05:12:19Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", + "creationTime": "2023-04-20T00:07:32Z", + "deletionTime": "2023-04-20T00:30:02Z" } ] } }, { - "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "location": "East US", + "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", "properties": { - "accountName": "cli-continuous30-pmjqwgr5-restored", + "accountName": "restoredaccount-5322", "apiType": "Sql", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z" + "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z" } ] } }, { - "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", - "location": "East US", + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", "properties": { - "accountName": "cli-continuous30-pmjqwgr5", + "accountName": "r-database-account-5132", "apiType": "Sql", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", - "creationTime": "2023-03-30T14:12:07Z", - "deletionTime": "2023-03-30T14:38:59Z" - }, + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" + } + ] + } + }, + { + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" } ] } }, { - "name": "f68b64bb-38f3-429b-be8f-81e44763929d", - "location": "East US", + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", "properties": { - "accountName": "cli-continuous30-ta4jrave", + "accountName": "restoredaccount-1053", "apiType": "Sql", - "creationTime": "2023-03-30T14:48:08Z", - "deletionTime": "2023-03-30T15:16:54Z", - "oldestRestorableTime": "2023-03-23T15:16:54Z", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", - "creationTime": "2023-03-30T14:50:33Z", - "deletionTime": "2023-03-30T15:16:54Z" - }, + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", - "creationTime": "2023-03-30T14:48:09Z", - "deletionTime": "2023-03-30T15:16:54Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" } ] } }, { - "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "location": "East US", + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", "properties": { - "accountName": "amisi-8bd4a726-restored", + "accountName": "r-database-account-59", "apiType": "Sql", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T20:02:03Z", + "deletionTime": "2023-04-20T20:02:53Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z", + "deletionTime": "2023-04-20T20:02:53Z" } ] } }, { - "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", - "location": "East US", + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", "properties": { - "accountName": "amisi-765b8849", + "accountName": "mayank-test-source", "apiType": "Sql", - "creationTime": "2023-03-30T20:15:03Z", - "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T00:08:03Z", + "creationTime": "2023-04-20T15:57:14Z", + "deletionTime": "2023-04-20T20:28:56Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", - "creationTime": "2023-03-30T20:15:04Z", - "deletionTime": "2023-03-31T06:20:15Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z", + "deletionTime": "2023-04-20T20:28:56Z" } ] } }, { - "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "location": "Qatar Central", + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "accountName": "mks-ps-pna-disable", "apiType": "Sql", - "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", - "creationTime": "2022-09-29T05:44:13Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z" } ] } }, { - "name": "a672303a-644d-4996-9d49-b3d2eddea72d", - "location": "Qatar Central", + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "accountName": "mks-cli-pna-disabled", "apiType": "Sql", - "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T00:08:04Z", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", "restorableLocations": [ { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", - "creationTime": "2023-03-10T00:42:29Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z" } ] } - } - ] + }, + { + "name": "73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "properties": { + "accountName": "r-database-account-8662", + "apiType": "Sql", + "creationTime": "2023-04-21T01:11:02Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40ae612c-e5a5-4567-a7b3-d8cf456914e8", + "creationTime": "2023-04-21T01:11:03Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "4aaae931-db25-42d9-bd13-139f4758eded", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aaae931-db25-42d9-bd13-139f4758eded", + "properties": { + "accountName": "r-database-account-1680", + "apiType": "Sql", + "creationTime": "2023-04-20T20:13:32Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e356dbef-401c-495f-8395-51811a45809b", + "creationTime": "2023-04-20T20:13:33Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "deletionTime": "2023-04-21T01:12:01Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z", + "deletionTime": "2023-04-21T01:12:01Z" + } + ] + } + }, + { + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "properties": { + "accountName": "r-database-account-7671", + "apiType": "Sql", + "creationTime": "2023-04-20T15:44:05Z", + "deletionTime": "2023-04-21T01:12:12Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z", + "deletionTime": "2023-04-21T01:12:12Z" + } + ] + } + }, + { + "name": "b2935e20-0e04-4401-95bb-ca4d1256fb91", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b2935e20-0e04-4401-95bb-ca4d1256fb91", + "properties": { + "accountName": "r-database-account-6490", + "apiType": "Sql", + "creationTime": "2023-04-21T01:24:42Z", + "deletionTime": "2023-04-21T01:25:42Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4edd06be-b84f-43ea-9e41-e5987414c359", + "creationTime": "2023-04-21T01:24:43Z", + "deletionTime": "2023-04-21T01:25:42Z" + } + ] + } + }, + { + "name": "b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "properties": { + "accountName": "r-database-account-6025", + "apiType": "Sql", + "creationTime": "2023-04-21T01:36:17Z", + "deletionTime": "2023-04-21T01:59:57Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b210a4f2-0986-4cc5-a19a-9d2ff1376993", + "creationTime": "2023-04-21T01:36:18Z", + "deletionTime": "2023-04-21T01:59:57Z" + } + ] + } + }, + { + "name": "4e75098e-0b3e-4837-8426-7db845b314f8", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e75098e-0b3e-4837-8426-7db845b314f8", + "properties": { + "accountName": "restoredaccount-6934", + "apiType": "Sql", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6d90e3e7-84e4-4ea4-95a1-db32358e16b9", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z" + } + ] + } + }, + { + "name": "9189867f-ed3f-449a-a9ad-79a2d72fef11", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9189867f-ed3f-449a-a9ad-79a2d72fef11", + "properties": { + "accountName": "r-database-account-5595", + "apiType": "Sql", + "creationTime": "2023-04-21T09:24:31Z", + "deletionTime": "2023-04-21T09:25:21Z", + "oldestRestorableTime": "2023-03-22T09:36:04Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "158154f2-ba43-42d9-b432-506f23f61772", + "creationTime": "2023-04-21T09:24:32Z", + "deletionTime": "2023-04-21T09:25:21Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "properties": { + "accountName": "drop-continuous7", + "apiType": "Sql", + "creationTime": "2022-05-26T18:49:51Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", + "creationTime": "2022-05-26T18:49:52Z" + } + ] + } + }, + { + "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "properties": { + "accountName": "periodicacctdrop", + "apiType": "Sql", + "creationTime": "2022-08-24T22:57:51Z", + "oldestRestorableTime": "2023-04-14T09:36:01Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", + "creationTime": "2022-08-24T22:57:51Z" + } + ] + } + }, + { + "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "properties": { + "accountName": "periodicacctdrop2", + "apiType": "Sql", + "creationTime": "2022-05-26T20:16:50Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", + "creationTime": "2022-05-26T20:16:50Z" + } + ] + } + }, + { + "name": "b169ba58-4696-4196-99a4-51995d99f004", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "properties": { + "accountName": "readregionrestore-1", + "apiType": "Sql", + "creationTime": "2023-03-02T00:15:37Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "Southeast Asia", + "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", + "creationTime": "2023-03-02T00:15:37Z" + }, + { + "locationName": "Central India", + "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", + "creationTime": "2023-03-02T00:38:10Z" + } + ] + } + }, + { + "name": "83301fff-71b5-4cb0-a399-3c6331b78411", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "properties": { + "accountName": "portal-mongo-test", + "apiType": "MongoDB", + "creationTime": "2023-03-27T17:28:08Z", + "deletionTime": "2023-03-27T17:30:49Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", + "creationTime": "2023-03-27T17:28:09Z", + "deletionTime": "2023-03-27T17:30:49Z" + } + ] + } + }, + { + "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "properties": { + "accountName": "amisi-8bd4a726", + "apiType": "Sql", + "creationTime": "2023-03-29T07:24:07Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", + "creationTime": "2023-03-29T07:26:03Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", + "creationTime": "2023-03-29T07:24:08Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "properties": { + "accountName": "amisi-da11000f", + "apiType": "Sql", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", + "creationTime": "2023-03-29T07:09:11Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "properties": { + "accountName": "dsapaliga-restore-test2", + "apiType": "Sql", + "creationTime": "2023-03-29T19:36:21Z", + "deletionTime": "2023-03-29T22:55:47Z", + "oldestRestorableTime": "2023-03-22T22:55:47Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", + "creationTime": "2023-03-29T19:36:22Z", + "deletionTime": "2023-03-29T22:55:47Z" + } + ] + } + }, + { + "name": "66326971-fd72-4b66-9495-da9f95f0e86a", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "properties": { + "accountName": "dsapaliga-restore-test3", + "apiType": "Sql", + "creationTime": "2023-03-29T21:45:59Z", + "deletionTime": "2023-03-29T22:55:54Z", + "oldestRestorableTime": "2023-03-22T22:55:54Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", + "creationTime": "2023-03-29T21:48:10Z", + "deletionTime": "2023-03-29T21:57:56Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", + "creationTime": "2023-03-29T21:46:00Z", + "deletionTime": "2023-03-29T22:55:54Z" + } + ] + } + }, + { + "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "properties": { + "accountName": "dsapaliga-restore-test4", + "apiType": "Sql", + "creationTime": "2023-03-29T22:08:33Z", + "deletionTime": "2023-03-29T22:56:00Z", + "oldestRestorableTime": "2023-03-22T22:56:00Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", + "creationTime": "2023-03-29T22:08:34Z", + "deletionTime": "2023-03-29T22:56:00Z" + } + ] + } + }, + { + "name": "84a35eb5-784c-4923-a52f-60bd04765953", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "properties": { + "accountName": "dsapaliga-restore-test6", + "apiType": "Sql", + "creationTime": "2023-03-29T22:24:23Z", + "deletionTime": "2023-03-29T22:56:18Z", + "oldestRestorableTime": "2023-03-22T22:56:18Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", + "creationTime": "2023-03-29T22:26:42Z", + "deletionTime": "2023-03-29T22:56:18Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", + "creationTime": "2023-03-29T22:24:24Z", + "deletionTime": "2023-03-29T22:56:18Z" + } + ] + } + }, + { + "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "properties": { + "accountName": "dsapaliga-restored-westus-m", + "apiType": "Sql", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z", + "oldestRestorableTime": "2023-03-22T22:56:46Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z" + } + ] + } + }, + { + "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "properties": { + "accountName": "cli-continuous30-sopplsfv", + "apiType": "Sql", + "creationTime": "2023-03-29T23:59:38Z", + "deletionTime": "2023-03-30T00:12:32Z", + "oldestRestorableTime": "2023-03-23T00:12:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", + "creationTime": "2023-03-30T00:02:04Z", + "deletionTime": "2023-03-30T00:12:32Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", + "creationTime": "2023-03-29T23:59:39Z", + "deletionTime": "2023-03-30T00:12:32Z" + } + ] + } + }, + { + "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "properties": { + "accountName": "cli-continuous30-l5utea24-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "properties": { + "accountName": "cli-continuous30-l5utea24", + "apiType": "Sql", + "creationTime": "2023-03-30T00:33:44Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", + "creationTime": "2023-03-30T00:36:04Z", + "deletionTime": "2023-03-30T01:02:30Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", + "creationTime": "2023-03-30T00:33:45Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "properties": { + "accountName": "cli-continuous30-3eb7aosu", + "apiType": "Sql", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z", + "oldestRestorableTime": "2023-03-23T03:46:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", + "creationTime": "2023-03-30T03:35:19Z", + "deletionTime": "2023-03-30T03:46:34Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z" + } + ] + } + }, + { + "name": "856077e3-8335-4b95-9577-2ebf016ee892", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "properties": { + "accountName": "cli-continuous30-tqwxb6nj", + "apiType": "Sql", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z", + "oldestRestorableTime": "2023-03-23T04:05:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", + "creationTime": "2023-03-30T03:53:50Z", + "deletionTime": "2023-03-30T04:05:05Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z" + } + ] + } + }, + { + "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "properties": { + "accountName": "cli-continuous30-cmjnvki7", + "apiType": "Sql", + "creationTime": "2023-03-30T04:58:52Z", + "deletionTime": "2023-03-30T05:12:19Z", + "oldestRestorableTime": "2023-03-23T05:12:19Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", + "creationTime": "2023-03-30T05:01:09Z", + "deletionTime": "2023-03-30T05:12:19Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", + "creationTime": "2023-03-30T04:58:53Z", + "deletionTime": "2023-03-30T05:12:19Z" + } + ] + } + }, + { + "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5", + "apiType": "Sql", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", + "creationTime": "2023-03-30T14:12:07Z", + "deletionTime": "2023-03-30T14:38:59Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "f68b64bb-38f3-429b-be8f-81e44763929d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "properties": { + "accountName": "cli-continuous30-ta4jrave", + "apiType": "Sql", + "creationTime": "2023-03-30T14:48:08Z", + "deletionTime": "2023-03-30T15:16:54Z", + "oldestRestorableTime": "2023-03-23T15:16:54Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", + "creationTime": "2023-03-30T14:50:33Z", + "deletionTime": "2023-03-30T15:16:54Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", + "creationTime": "2023-03-30T14:48:09Z", + "deletionTime": "2023-03-30T15:16:54Z" + } + ] + } + }, + { + "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "properties": { + "accountName": "amisi-8bd4a726-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z" + } + ] + } + }, + { + "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "properties": { + "accountName": "amisi-765b8849", + "apiType": "Sql", + "creationTime": "2023-03-30T20:15:03Z", + "deletionTime": "2023-03-31T06:20:15Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", + "creationTime": "2023-03-30T20:15:04Z", + "deletionTime": "2023-03-31T06:20:15Z" + } + ] + } + }, + { + "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "apiType": "Sql", + "creationTime": "2022-09-29T05:44:13Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", + "creationTime": "2022-09-29T05:44:13Z" + } + ] + } + }, + { + "name": "a672303a-644d-4996-9d49-b3d2eddea72d", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "apiType": "Sql", + "creationTime": "2023-03-10T00:42:29Z", + "oldestRestorableTime": "2023-03-22T09:36:01Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", + "creationTime": "2023-03-10T00:42:29Z" + } + ] + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "120", + "Content-Type": "application/json", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-c5e073b25475cea3-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "725aca4e647eebf04886abfcac741d25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-database-2969" + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:06 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969/operationResults/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eca9de8f-a949-4664-88a6-9c383e1514e8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "a7d81811-1645-4f5a-b739-82216c05872f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093606Z:eca9de8f-a949-4664-88a6-9c383e1514e8" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-f6b4b492a1c68e87-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "82f2c04054b05d7e3fdbcfc01f096a22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4a880a45-0794-4532-bdb3-dd8f41125d85", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "4a880a45-0794-4532-bdb3-dd8f41125d85", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093606Z:4a880a45-0794-4532-bdb3-dd8f41125d85" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-1e88754f6806a0f3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8c3098694cb1baee05087993557a26c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:07 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bb8a9844-698e-4b1d-ac05-a40a659ad823", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "bb8a9844-698e-4b1d-ac05-a40a659ad823", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093607Z:bb8a9844-698e-4b1d-ac05-a40a659ad823" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-5796a1de93aec851-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ebbb26169a81607407b1dccdc30432ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:08 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "63666f37-9c62-42a5-b8ba-21c152023a61", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "63666f37-9c62-42a5-b8ba-21c152023a61", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093608Z:63666f37-9c62-42a5-b8ba-21c152023a61" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-dfeba46c9e7bf65c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2b0cec80e34df4d4d2377da8daea07c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3bef01c7-e4f0-44d0-bc90-c27fb1755beb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "3bef01c7-e4f0-44d0-bc90-c27fb1755beb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093609Z:3bef01c7-e4f0-44d0-bc90-c27fb1755beb" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-de005579804e622a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f9aa06b57e4ecea024d085ff6f21f600", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9210edc-4529-4ae4-bff5-f271ce82e351", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "d9210edc-4529-4ae4-bff5-f271ce82e351", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093612Z:d9210edc-4529-4ae4-bff5-f271ce82e351" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-30edd05f989698d8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "69128ad6fa6d327b51c6194a1ccc851c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "916365ac-c494-474f-a613-5776ba9d94b8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "916365ac-c494-474f-a613-5776ba9d94b8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093616Z:916365ac-c494-474f-a613-5776ba9d94b8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a7d81811-1645-4f5a-b739-82216c05872f?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-21d8ab403294e63f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bd1817a9385a02a14b3e077d5ed485b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8e098722-1738-46cc-910a-1d652a798368", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "8e098722-1738-46cc-910a-1d652a798368", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093624Z:8e098722-1738-46cc-910a-1d652a798368" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-78ee1fac22e6542fff6eea0fccfaef25-fac1ead9969dde99-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "50d27d419dd8ba578a77a7876556b157", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "479", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3b9e4c51-ad98-42de-8e9a-b27053b2eee4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "3b9e4c51-ad98-42de-8e9a-b27053b2eee4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093624Z:3b9e4c51-ad98-42de-8e9a-b27053b2eee4" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", + "name": "sql-database-2969", + "properties": { + "resource": { + "id": "sql-database-2969", + "_rid": "erVRAA==", + "_self": "dbs/erVRAA==/", + "_etag": "\u00220000c501-0000-0700-0000-6442590d0000\u0022", + "_colls": "colls/", + "_users": "users/", + "_ts": 1682069773 + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969/containers/sql-container-3155?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "489", + "Content-Type": "application/json", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-b20cbdd8c261ee2a-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "08585668a539e99d101e2ff2fed47c41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-container-3155", + "indexingPolicy": { + "automatic": true, + "indexingMode": "consistent", + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point" + ] + } + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + } + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:24 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969/containers/sql-container-3155/operationResults/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b95962a7-b66a-4b2d-a77f-f25799ad3e7b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "dd4309b0-e579-4203-82f2-f1c212626420", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093625Z:b95962a7-b66a-4b2d-a77f-f25799ad3e7b" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-f16e23cf17129176-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ef531b0a82cd7073467c87f28c78ba2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:24 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "31d2cfda-4c5d-4ced-8e22-19bd302946ac", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "31d2cfda-4c5d-4ced-8e22-19bd302946ac", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093625Z:31d2cfda-4c5d-4ced-8e22-19bd302946ac" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-ec032fcf86c95379-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4dfe452b5d1224164a98aa06c20ccf73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:25 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d4e34eeb-a614-4efb-b312-28f1611c1596", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d4e34eeb-a614-4efb-b312-28f1611c1596", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093626Z:d4e34eeb-a614-4efb-b312-28f1611c1596" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-b4891f93af1a0189-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cd42a22afedfbf1501c7c5cd7b8c9696", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:26 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c8a51cac-68f6-4093-9b5c-4db6bbb62c5b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "c8a51cac-68f6-4093-9b5c-4db6bbb62c5b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093627Z:c8a51cac-68f6-4093-9b5c-4db6bbb62c5b" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-646fe41e760f7e5a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d46640a7a69e53791bd03493fd011428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f751488-a86d-485f-942c-00039562a79f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "4f751488-a86d-485f-942c-00039562a79f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093628Z:4f751488-a86d-485f-942c-00039562a79f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-8b19f891f0c7ca88-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85545498be842cc3303e4c4b9748a9bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:30 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "890c6372-d175-4f7f-a6cb-44fb075dff90", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "890c6372-d175-4f7f-a6cb-44fb075dff90", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093630Z:890c6372-d175-4f7f-a6cb-44fb075dff90" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-8f5a6b0ff8ca7f4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "825f1402faa683d528efb10fc981c1ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7821ef8d-3eff-4fa6-b44b-494fc6093756", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "7821ef8d-3eff-4fa6-b44b-494fc6093756", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093634Z:7821ef8d-3eff-4fa6-b44b-494fc6093756" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd4309b0-e579-4203-82f2-f1c212626420?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-b9a867f344eda63d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "26359db21137e8117d39a45f592ebbd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "83ed91fb-f3a9-4f7b-8456-6c83c085a2b2", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "83ed91fb-f3a9-4f7b-8456-6c83c085a2b2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093642Z:83ed91fb-f3a9-4f7b-8456-6c83c085a2b2" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969/containers/sql-container-3155?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-753f3481aa2f9bfe5833036b3dac000c-24b7ba8f50dc5bba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e891772692a29d827fd15c950db363ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "1374", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:36:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aa4e2d2b-b806-4b32-bcd9-5a8d67eeb85f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "aa4e2d2b-b806-4b32-bcd9-5a8d67eeb85f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T093643Z:aa4e2d2b-b806-4b32-bcd9-5a8d67eeb85f" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525/sqlDatabases/sql-database-2969/containers/sql-container-3155", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", + "name": "sql-container-3155", + "properties": { + "resource": { + "id": "sql-container-3155", + "indexingPolicy": { + "indexingMode": "consistent", + "automatic": true, + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + }, + { + "path": "/\u0022_etag\u0022/?" + } + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point", + "LineString", + "Polygon", + "MultiPolygon" + ] + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + }, + "uniqueKeyPolicy": { + "uniqueKeys": [] + }, + "conflictResolutionPolicy": { + "mode": "LastWriterWins", + "conflictResolutionPath": "/_ts", + "conflictResolutionProcedure": "" + }, + "backupPolicy": { + "type": 1 + }, + "geospatialConfig": { + "type": "Geography" + }, + "_rid": "erVRALk5bCw=", + "_ts": 1682069792, + "_self": "dbs/erVRAA==/colls/erVRALk5bCw=/", + "_etag": "\u00220000cd01-0000-0700-0000-644259200000\u0022", + "_docs": "docs/", + "_sprocs": "sprocs/", + "_triggers": "triggers/", + "_udfs": "udfs/", + "_conflicts": "conflicts/", + "statistics": [ + { + "id": "0", + "sizeInKB": 0, + "documentCount": 0, + "sampledDistinctPartitionKeyCount": 0, + "partitionKeys": [] + } + ] + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "515", + "Content-Type": "application/json", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-a5a65bb0f795c69c-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "12fa984d858203f177056c55752afa33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "location": "westus", + "properties": { + "locations": [ + { + "locationName": "westus", + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "createMode": "Restore", + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "restoreTimestampInUtc": "2023-04-21T09:39:50.0000000Z" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2778", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:50 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007/operationResults/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c989f5eb-82f9-4d6b-aa50-f36167f9de77", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "23cace76-4cc1-4044-82a8-1f3595654112", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094450Z:c989f5eb-82f9-4d6b-aa50-f36167f9de77" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007", + "name": "restoredaccount-9007", + "location": "West US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-21T09:44:47.1342732Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "restoreTimestampInUtc": "2023-04-21T09:39:50Z", + "sourceBackupLocation": "West US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-21T09:44:47.1342732Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-21T09:44:47.1342732Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-21T09:44:47.1342732Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-21T09:44:47.1342732Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-976c7c5a15ca0b26-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "960ce2f6c0c1f1a4a0e52a8d154809a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:50 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af6e1dbd-78d7-4c71-b3e5-f1f976223c8e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "af6e1dbd-78d7-4c71-b3e5-f1f976223c8e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094450Z:af6e1dbd-78d7-4c71-b3e5-f1f976223c8e" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-cb33e725fb00d39c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb2e6162bf10efa477df7ada1f3c869c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "93446fd9-8b4d-4f65-b9a1-72191f08f5b9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "93446fd9-8b4d-4f65-b9a1-72191f08f5b9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094451Z:93446fd9-8b4d-4f65-b9a1-72191f08f5b9" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-6d9f40d4f9c40577-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "925f963b631d1e7244614ef23292054f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0462e4b-ddaa-4dc7-886b-7ed6e6c4cbda", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "e0462e4b-ddaa-4dc7-886b-7ed6e6c4cbda", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094452Z:e0462e4b-ddaa-4dc7-886b-7ed6e6c4cbda" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-7ebffbf9f6a1649f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a51bf9efeac36c53e1d1ee245c9d263", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "59d38e21-16f4-4a3c-85fb-f254d2bdea74", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "59d38e21-16f4-4a3c-85fb-f254d2bdea74", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094453Z:59d38e21-16f4-4a3c-85fb-f254d2bdea74" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-01c242bce63d23c0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e518e5f76e8fe89ef1086af70b1bce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:44:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8aef148-23c7-405f-9793-13c902c78785", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f8aef148-23c7-405f-9793-13c902c78785", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094456Z:f8aef148-23c7-405f-9793-13c902c78785" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-d4149e42528bfe82-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5f3c2ada6ceb3cefd1285400458fd87a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:45:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "119f7e37-f12d-42c4-ab82-35b173716f3b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "119f7e37-f12d-42c4-ab82-35b173716f3b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094500Z:119f7e37-f12d-42c4-ab82-35b173716f3b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-3b6c0d3f7073b428-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a493eb8f8640276636532b9b7716c68d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:45:08 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "19dd3cfc-f6ec-4141-96e0-990b8f1a3a12", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "19dd3cfc-f6ec-4141-96e0-990b8f1a3a12", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094508Z:19dd3cfc-f6ec-4141-96e0-990b8f1a3a12" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-9c391024e2bc60b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1b073961728df2789e15adc02288b95f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:45:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "26288b56-3b23-42ce-992f-90eb2d9e97d3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "26288b56-3b23-42ce-992f-90eb2d9e97d3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094524Z:26288b56-3b23-42ce-992f-90eb2d9e97d3" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-bf88fd1b63e5fc05-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85200c38181d53a3c31428984154c5bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:45:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f7c8cf40-a07b-4609-bde9-d5f70db37a3a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "f7c8cf40-a07b-4609-bde9-d5f70db37a3a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094556Z:f7c8cf40-a07b-4609-bde9-d5f70db37a3a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-5c316682548d769d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0b9fc661bc881cec72a0052bd9a605ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:46:27 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e166669d-fc3e-4989-a18d-810330d62c60", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "e166669d-fc3e-4989-a18d-810330d62c60", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094628Z:e166669d-fc3e-4989-a18d-810330d62c60" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-98075eec888e1387-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6b63cb9941f6487095b457794ae0b14a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:47:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dcec4bce-79fc-49ca-abef-f6454c73ed0a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "dcec4bce-79fc-49ca-abef-f6454c73ed0a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094700Z:dcec4bce-79fc-49ca-abef-f6454c73ed0a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-80a8463374fd6100-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b5ef24fade97bd71f03127c12777a1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:47:32 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07c6e003-2692-4a45-8c2c-a5eb936b3da8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "07c6e003-2692-4a45-8c2c-a5eb936b3da8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094732Z:07c6e003-2692-4a45-8c2c-a5eb936b3da8" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-34525c6505533051-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "75fe7a0e5af020c4565675d36573d191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:48:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee4db43a-dc01-49e3-8053-4798247c1e5f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "ee4db43a-dc01-49e3-8053-4798247c1e5f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094805Z:ee4db43a-dc01-49e3-8053-4798247c1e5f" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-b61a99ab5dc8982e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e6dcbaefa948ecc4f4e74bf22ef3361d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:48:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3938cff8-570c-4864-b8e5-cb20dee680ae", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "3938cff8-570c-4864-b8e5-cb20dee680ae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094837Z:3938cff8-570c-4864-b8e5-cb20dee680ae" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-13284af88e2fc484-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cf6a3a393ce2f55a2d3e0593370316ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:49:08 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4d3a42a3-abb9-40ee-9307-3ee9657e96d9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "4d3a42a3-abb9-40ee-9307-3ee9657e96d9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094909Z:4d3a42a3-abb9-40ee-9307-3ee9657e96d9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-89e00d401cf51ba8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "578c8031939b64d4b61181090ed2f162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:49:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0c7aaf2c-c5d9-46f9-9add-7b62c50ba17b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "0c7aaf2c-c5d9-46f9-9add-7b62c50ba17b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T094941Z:0c7aaf2c-c5d9-46f9-9add-7b62c50ba17b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-2dda054423db852d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2a9a571f0208b3af60e6b90aa430b4f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:50:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "345e5ae1-4902-4366-b5e8-836f3c69039d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "345e5ae1-4902-4366-b5e8-836f3c69039d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095013Z:345e5ae1-4902-4366-b5e8-836f3c69039d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-1bbff3be35fd3823-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aec09fd1de66a582650618d0ba50e75a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:50:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f10ec925-0911-42d1-9086-f8ae9fdad798", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "f10ec925-0911-42d1-9086-f8ae9fdad798", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095045Z:f10ec925-0911-42d1-9086-f8ae9fdad798" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-b887938dcb8e6ce1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e073a24ceb682fa3d1d9f7b5dacac086", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:51:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "483d52c1-2aec-47f0-8917-38818ab9a7a0", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "483d52c1-2aec-47f0-8917-38818ab9a7a0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095117Z:483d52c1-2aec-47f0-8917-38818ab9a7a0" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-f0f893e22cc2ee82-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f37905d431141fbd5f5c502eadef80f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:51:50 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "96f480fa-252b-4980-b191-8fcaed5004fa", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "96f480fa-252b-4980-b191-8fcaed5004fa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095150Z:96f480fa-252b-4980-b191-8fcaed5004fa" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-c47ab93d8b054b50-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01bd5effd4bde687fb91dc8de7cccb9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:52:22 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "532b5229-20c6-404c-8403-c0a85fe7a2e6", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "532b5229-20c6-404c-8403-c0a85fe7a2e6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095222Z:532b5229-20c6-404c-8403-c0a85fe7a2e6" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-05c703a52a176e1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2973924577190949a7310a7325a145f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:52:54 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43994349-fc4b-45b2-bc28-c7fde2e74c7a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "43994349-fc4b-45b2-bc28-c7fde2e74c7a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095254Z:43994349-fc4b-45b2-bc28-c7fde2e74c7a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-4b4dcf51f6b41122-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7bb5e7e0be0c88c809517380666e5a08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:53:26 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a42331d-d10f-4fee-a85b-32a8c4863072", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "0a42331d-d10f-4fee-a85b-32a8c4863072", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095326Z:0a42331d-d10f-4fee-a85b-32a8c4863072" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-6e719ae3e2e4a896-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "57bc2929cf6b87f615b45a8bca13c05a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:53:58 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b19529cc-43e1-43f3-8fc3-bc63a92e5467", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "b19529cc-43e1-43f3-8fc3-bc63a92e5467", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095358Z:b19529cc-43e1-43f3-8fc3-bc63a92e5467" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-6ce562261c23cb2f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fface94c5017878ec9ea20c804c8a238", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:54:31 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "28cedab2-f169-4f94-bd76-3032d56e0678", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "28cedab2-f169-4f94-bd76-3032d56e0678", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095431Z:28cedab2-f169-4f94-bd76-3032d56e0678" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-24def1320ee1c7f0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fc4a01d7ede41188f12e6558633dbef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:55:03 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5177eae0-c996-421f-b0d9-50c9b1558e89", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "5177eae0-c996-421f-b0d9-50c9b1558e89", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095503Z:5177eae0-c996-421f-b0d9-50c9b1558e89" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-420c1079711d7edc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7d3319915bc2d9f19a348d80ae2e834d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:55:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "87a88c6a-b85f-46a4-829b-0026669659f3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "87a88c6a-b85f-46a4-829b-0026669659f3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095535Z:87a88c6a-b85f-46a4-829b-0026669659f3" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-bd4804ae8e507d8b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c8b42111c4c95e75619a0de8eb36248c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:56:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2462800b-f6b8-4ca8-bc04-2246a0591915", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "2462800b-f6b8-4ca8-bc04-2246a0591915", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095607Z:2462800b-f6b8-4ca8-bc04-2246a0591915" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-aa57d1840e513aa8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ea362a2b25947c76107161af5f0763c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:56:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a358a71e-8865-4c92-8229-f303dcc62ce9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a358a71e-8865-4c92-8229-f303dcc62ce9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095639Z:a358a71e-8865-4c92-8229-f303dcc62ce9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-da5615214ace7547-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "414717aaf689cd2ca3d51c274d08ed64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:57:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "906334ee-9279-4a99-9821-e4871b450aea", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "906334ee-9279-4a99-9821-e4871b450aea", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095711Z:906334ee-9279-4a99-9821-e4871b450aea" + }, + "ResponseBody": { + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "120", - "Content-Type": "application/json", - "traceparent": "00-fda23b547d927675cb188831b892ff75-629bc06d67e0d1d0-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8425c666c057ba9a6e86b92778203207", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-af587e06e871134d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8354011098f7ebb8ab38b85862c6ff59", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-database-1826" - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:08 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826/operationResults/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 09:57:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d235bf20-1329-4d49-a276-fb0ff270bae0", + "x-ms-correlation-request-id": "cf4be3b8-df91-4e28-a1e5-5a822311ee6d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "1f751b4f-e650-4c70-966c-8e4e80a6299e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000808Z:d235bf20-1329-4d49-a276-fb0ff270bae0" + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "cf4be3b8-df91-4e28-a1e5-5a822311ee6d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095743Z:cf4be3b8-df91-4e28-a1e5-5a822311ee6d" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-2645d9e1c00c9904-00", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-a5ae7ac7296a7f1c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0344ee49e04f835656939d6950f7db58", + "x-ms-client-request-id": "d33d4a37e2ef3503fe6947bf094e2e07", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -14805,91 +17362,241 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:08 GMT", + "Date": "Fri, 21 Apr 2023 09:58:15 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e0fe58d-0a4e-4a17-a246-2fc4f5e47e32", + "x-ms-correlation-request-id": "bab20d33-dd7e-4fb7-8d3c-1e4be846d59a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "3e0fe58d-0a4e-4a17-a246-2fc4f5e47e32", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000809Z:3e0fe58d-0a4e-4a17-a246-2fc4f5e47e32" + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "bab20d33-dd7e-4fb7-8d3c-1e4be846d59a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095815Z:bab20d33-dd7e-4fb7-8d3c-1e4be846d59a" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/23cace76-4cc1-4044-82a8-1f3595654112?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-b58f30da8e5a5a01-00", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-2510d9c936ef02dd-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "522df9a21e66eb54ddb758a7041295fa", + "x-ms-client-request-id": "5d9efc83dfb212cc5f5b96503ed36add", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "21", + "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:09 GMT", + "Date": "Fri, 21 Apr 2023 09:58:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "309a47b4-5887-468e-9f94-49f701f12adc", + "x-ms-correlation-request-id": "776aa4c0-b458-4609-9d07-18fc172d7aa5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "309a47b4-5887-468e-9f94-49f701f12adc", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000810Z:309a47b4-5887-468e-9f94-49f701f12adc" + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "776aa4c0-b458-4609-9d07-18fc172d7aa5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095848Z:776aa4c0-b458-4609-9d07-18fc172d7aa5" }, "ResponseBody": { - "status": "Enqueued" + "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-f59e90e25eae78d6-00", + "traceparent": "00-2ed6e43996774cb016c9dd23d39b34fc-6a85c556ad4854a4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8addd81a2edc68b79f423179dc801e34", + "x-ms-client-request-id": "02f0c2d51aca2e74fe1f858d51f8e15c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "3102", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 09:58:48 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07c29018-c851-4c67-9890-63498f40df06", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "07c29018-c851-4c67-9890-63498f40df06", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095848Z:07c29018-c851-4c67-9890-63498f40df06" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007", + "name": "restoredaccount-9007", + "location": "West US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-21T09:58:12.695055Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://restoredaccount-9007.documents.azure.com:443/", + "sqlEndpoint": "https://restoredaccount-9007.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-9007-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-9007-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-9007-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-9007-westus", + "locationName": "West US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "restoreTimestampInUtc": "2023-04-21T09:39:50Z", + "sourceBackupLocation": "West US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-21T09:58:12.695055Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-21T09:58:12.695055Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-21T09:58:12.695055Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-21T09:58:12.695055Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1525?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-02a33e0334508755-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "65d5b109a12758a67e2b73934cb2f62a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:10 GMT", + "Date": "Fri, 21 Apr 2023 09:58:49 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec4fedf5-ab1f-4c56-8f7e-da96b478dc2b", + "x-ms-correlation-request-id": "74431971-c826-43ed-8424-181017b88d73", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "ec4fedf5-ab1f-4c56-8f7e-da96b478dc2b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000811Z:ec4fedf5-ab1f-4c56-8f7e-da96b478dc2b" + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "8d2a1bab-df5a-47a1-9778-f1c10ae22f23", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095849Z:74431971-c826-43ed-8424-181017b88d73" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-1a9ba1d30a767376-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-aec4d7c28bf3c4f4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2ce563d41a462a7a9958269888af7f44", + "x-ms-client-request-id": "8c47397904fe34b51b98849ea6e1e24c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -14898,29 +17605,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:11 GMT", + "Date": "Fri, 21 Apr 2023 09:58:49 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "123128d0-730d-4c0e-bf07-7776def5309f", + "x-ms-correlation-request-id": "28ae4e85-cb63-47cb-8859-9c2499e92fe8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "123128d0-730d-4c0e-bf07-7776def5309f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000812Z:123128d0-730d-4c0e-bf07-7776def5309f" + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "28ae4e85-cb63-47cb-8859-9c2499e92fe8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095849Z:28ae4e85-cb63-47cb-8859-9c2499e92fe8" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-e32ad8c9eed6646c-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-ff42829e39fb06e5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "784fa3fd5119747c41c4b224ecdb0f5c", + "x-ms-client-request-id": "e78d5a289a0eddfe746cddb74113fe3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -14929,29 +17636,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:13 GMT", + "Date": "Fri, 21 Apr 2023 09:58:50 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b79263d1-a2d0-4a3b-acd9-d6f6792d0d84", + "x-ms-correlation-request-id": "1107039e-3c70-4d34-bff9-ab0216be2429", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "b79263d1-a2d0-4a3b-acd9-d6f6792d0d84", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000814Z:b79263d1-a2d0-4a3b-acd9-d6f6792d0d84" + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "1107039e-3c70-4d34-bff9-ab0216be2429", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095850Z:1107039e-3c70-4d34-bff9-ab0216be2429" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-13362182dae004a1-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-93b3ff69c1143944-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a0d22398692cffb35db2f083071fe0f0", + "x-ms-client-request-id": "121a0c6b6a6afb2cb4b52bc5a79dc1a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -14960,191 +17667,122 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:17 GMT", + "Date": "Fri, 21 Apr 2023 09:58:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e58a10b-e3c2-464d-8fb9-ab0581835919", + "x-ms-correlation-request-id": "40322e02-112f-4d6f-82f8-105cbe464c65", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "0e58a10b-e3c2-464d-8fb9-ab0581835919", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000818Z:0e58a10b-e3c2-464d-8fb9-ab0581835919" + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "40322e02-112f-4d6f-82f8-105cbe464c65", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095851Z:40322e02-112f-4d6f-82f8-105cbe464c65" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1f751b4f-e650-4c70-966c-8e4e80a6299e?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-a34e7dc54d7ead51-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-44f058197e48edff-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "397bedc2a631831be771ea8268563ebd", + "x-ms-client-request-id": "ff6a138dd8b1de573b69189126fdf207", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:25 GMT", + "Date": "Fri, 21 Apr 2023 09:58:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d22791e-9a3d-4eeb-bfb3-2fdb81a3e774", + "x-ms-correlation-request-id": "5ea95107-3dd0-4ee8-9970-51dc0d02149a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "2d22791e-9a3d-4eeb-bfb3-2fdb81a3e774", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000826Z:2d22791e-9a3d-4eeb-bfb3-2fdb81a3e774" + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "5ea95107-3dd0-4ee8-9970-51dc0d02149a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095852Z:5ea95107-3dd0-4ee8-9970-51dc0d02149a" }, "ResponseBody": { - "status": "Succeeded" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fda23b547d927675cb188831b892ff75-71a0f60f51420a72-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-976fa0544c8717b4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "64ffc949dedd9418ef4f1a6660f86c21", + "x-ms-client-request-id": "9a33459acfc7bee12e9233596f3836d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "479", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:26 GMT", + "Date": "Fri, 21 Apr 2023 09:58:54 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1b3c182-1d98-492e-9d1a-1bb3f21f44d9", + "x-ms-correlation-request-id": "d4bb86ca-c649-4f7e-8396-1f1de31b1938", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "d1b3c182-1d98-492e-9d1a-1bb3f21f44d9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000827Z:d1b3c182-1d98-492e-9d1a-1bb3f21f44d9" + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "d4bb86ca-c649-4f7e-8396-1f1de31b1938", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095854Z:d4bb86ca-c649-4f7e-8396-1f1de31b1938" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", - "name": "sql-database-1826", - "properties": { - "resource": { - "id": "sql-database-1826", - "_rid": "VNAgAA==", - "_self": "dbs/VNAgAA==/", - "_etag": "\u002200005d04-0000-0700-0000-6440826f0000\u0022", - "_colls": "colls/", - "_users": "users/", - "_ts": 1681949295 - } - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826/containers/sql-container-1559?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "489", - "Content-Type": "application/json", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-eb91827ae11b4b9d-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5fff62c22bd507f14fb9bb7e31970674", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-container-1559", - "indexingPolicy": { - "automatic": true, - "indexingMode": "consistent", - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point" - ] - } - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - } - }, - "options": { - "throughput": 700 - } - } + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-48a15df3a3b20eb2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2e2937abfea9938db43bd700519ad4b6", + "x-ms-return-client-request-id": "true" }, - "StatusCode": 202, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:27 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826/containers/sql-container-1559/operationResults/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 09:58:58 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e123ce8a-19a7-443b-8f1b-b86215d8f310", + "x-ms-correlation-request-id": "fecc7ebb-f7ff-428e-9f6f-82ddae01349c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "078df232-7081-4609-a3cc-0f4023deb626", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000828Z:e123ce8a-19a7-443b-8f1b-b86215d8f310" + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "fecc7ebb-f7ff-428e-9f6f-82ddae01349c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095859Z:fecc7ebb-f7ff-428e-9f6f-82ddae01349c" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-3a04397f19f08b29-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-e545ebf92085ab79-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f4a69dc95d3f9e730e5c8e255c15beb7", + "x-ms-client-request-id": "612b23c2276abedf32abd11fa4fe6f02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15153,29 +17791,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:27 GMT", + "Date": "Fri, 21 Apr 2023 09:59:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8b02205-434a-4ed0-b753-5f72d9bf016f", + "x-ms-correlation-request-id": "cba49f31-6a5c-4a44-8fd5-bd8f916fbbfe", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "f8b02205-434a-4ed0-b753-5f72d9bf016f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000828Z:f8b02205-434a-4ed0-b753-5f72d9bf016f" + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "cba49f31-6a5c-4a44-8fd5-bd8f916fbbfe", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095907Z:cba49f31-6a5c-4a44-8fd5-bd8f916fbbfe" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-5afb2fe044fd77a2-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-f38954db045bf92f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "bd2df214012eaf687d2a788b4966532c", + "x-ms-client-request-id": "efe64033c4d49b5db7a0e58bf7e06c93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15184,29 +17822,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:28 GMT", + "Date": "Fri, 21 Apr 2023 09:59:22 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "549e2fdb-432b-47cf-a1ff-4f7aea90c932", + "x-ms-correlation-request-id": "4a9e67f1-824b-4e2b-9581-9d13fdde669c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "549e2fdb-432b-47cf-a1ff-4f7aea90c932", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000829Z:549e2fdb-432b-47cf-a1ff-4f7aea90c932" + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "4a9e67f1-824b-4e2b-9581-9d13fdde669c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095923Z:4a9e67f1-824b-4e2b-9581-9d13fdde669c" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-f35471c2ec798d29-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-a238ae27314394e0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "93b4b6ca12f1d535c79f111e83be78d1", + "x-ms-client-request-id": "4b977dbdd40c836d576bfbfe2d6eeeb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15215,29 +17853,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:29 GMT", + "Date": "Fri, 21 Apr 2023 09:59:54 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d95f789d-b646-4926-8305-b5e8697cfc92", + "x-ms-correlation-request-id": "c3de2b04-83e1-42e0-9d13-c9440fc61b56", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "d95f789d-b646-4926-8305-b5e8697cfc92", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000830Z:d95f789d-b646-4926-8305-b5e8697cfc92" + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c3de2b04-83e1-42e0-9d13-c9440fc61b56", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T095955Z:c3de2b04-83e1-42e0-9d13-c9440fc61b56" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-a28d9d0f0a4d87a5-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-069d10439a777efb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c277298b31f5c7d635f67614e5e754a7", + "x-ms-client-request-id": "10cdd5cbe5b3fde2c590aac94253c651", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15246,29 +17884,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:30 GMT", + "Date": "Fri, 21 Apr 2023 10:00:26 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "669cdf29-1c86-451f-96d3-3b53a2db4611", + "x-ms-correlation-request-id": "aa0d69f6-42e8-45bc-83e2-49853cf5a0a7", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "669cdf29-1c86-451f-96d3-3b53a2db4611", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000831Z:669cdf29-1c86-451f-96d3-3b53a2db4611" + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "aa0d69f6-42e8-45bc-83e2-49853cf5a0a7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100027Z:aa0d69f6-42e8-45bc-83e2-49853cf5a0a7" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-8320cafe99f4f8da-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-a1c8f43f9da9d893-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a65a62092a6101c6bc57f68ef0492bbf", + "x-ms-client-request-id": "26613d3e24675ff6d3629768c85e6d48", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15277,29 +17915,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:32 GMT", + "Date": "Fri, 21 Apr 2023 10:00:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d8e4900-32b4-422f-8d51-aa9d9accad08", + "x-ms-correlation-request-id": "f8b49b2f-5e90-427f-8ccb-5ea603bd128b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "3d8e4900-32b4-422f-8d51-aa9d9accad08", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000833Z:3d8e4900-32b4-422f-8d51-aa9d9accad08" + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f8b49b2f-5e90-427f-8ccb-5ea603bd128b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100059Z:f8b49b2f-5e90-427f-8ccb-5ea603bd128b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-9d01776a7907e608-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-70ed9b736317d6fb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "20ffa6b191ee9836dfed5efb9c20f0df", + "x-ms-client-request-id": "22c02eb15c13d8e09b99857b29a34103", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15308,349 +17946,153 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:36 GMT", + "Date": "Fri, 21 Apr 2023 10:01:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55eaba61-83ab-4cd8-9f28-1f7902092930", + "x-ms-correlation-request-id": "9f33b999-5616-4084-8e44-3266681105e3", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "55eaba61-83ab-4cd8-9f28-1f7902092930", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000837Z:55eaba61-83ab-4cd8-9f28-1f7902092930" + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "9f33b999-5616-4084-8e44-3266681105e3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100131Z:9f33b999-5616-4084-8e44-3266681105e3" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/078df232-7081-4609-a3cc-0f4023deb626?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-a11c26de57d52b7a-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-67629ee46d0d6c4c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2115694bd26361706376059d3a48d7eb", + "x-ms-client-request-id": "f0c0aaa4c70da74fdf6d3d514d793566", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:45 GMT", + "Date": "Fri, 21 Apr 2023 10:02:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a663a99d-2a91-4f2f-bdb3-299b9a5088ea", + "x-ms-correlation-request-id": "f70ae31e-3d69-40bf-afb9-0e90e8afdd5d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "a663a99d-2a91-4f2f-bdb3-299b9a5088ea", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000845Z:a663a99d-2a91-4f2f-bdb3-299b9a5088ea" + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "f70ae31e-3d69-40bf-afb9-0e90e8afdd5d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100203Z:f70ae31e-3d69-40bf-afb9-0e90e8afdd5d" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826/containers/sql-container-1559?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d7ae3823aaec98a405ff7cf00239366-98792ebe87c444b4-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-db51f43438f75b8f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3e63b7ca34e878b92bc1c673ccca659b", + "x-ms-client-request-id": "13186122a493e23e5d888bce9e7a3530", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "1374", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:08:46 GMT", + "Date": "Fri, 21 Apr 2023 10:02:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebc25546-0c92-48fe-82f4-2bafde212b00", + "x-ms-correlation-request-id": "fb0c0ca6-b68e-4dd5-9cad-8df6aeb6e94d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "ebc25546-0c92-48fe-82f4-2bafde212b00", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T000846Z:ebc25546-0c92-48fe-82f4-2bafde212b00" + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "fb0c0ca6-b68e-4dd5-9cad-8df6aeb6e94d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100235Z:fb0c0ca6-b68e-4dd5-9cad-8df6aeb6e94d" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077/sqlDatabases/sql-database-1826/containers/sql-container-1559", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", - "name": "sql-container-1559", - "properties": { - "resource": { - "id": "sql-container-1559", - "indexingPolicy": { - "indexingMode": "consistent", - "automatic": true, - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - }, - { - "path": "/\u0022_etag\u0022/?" - } - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point", - "LineString", - "Polygon", - "MultiPolygon" - ] - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - }, - "uniqueKeyPolicy": { - "uniqueKeys": [] - }, - "conflictResolutionPolicy": { - "mode": "LastWriterWins", - "conflictResolutionPath": "/_ts", - "conflictResolutionProcedure": "" - }, - "backupPolicy": { - "type": 1 - }, - "geospatialConfig": { - "type": "Geography" - }, - "_rid": "VNAgAIyQMGk=", - "_ts": 1681949314, - "_self": "dbs/VNAgAA==/colls/VNAgAIyQMGk=/", - "_etag": "\u002200006204-0000-0700-0000-644082820000\u0022", - "_docs": "docs/", - "_sprocs": "sprocs/", - "_triggers": "triggers/", - "_udfs": "udfs/", - "_conflicts": "conflicts/", - "statistics": [ - { - "id": "0", - "sizeInKB": 0, - "documentCount": 0, - "sampledDistinctPartitionKeyCount": 0, - "partitionKeys": [] - } - ] - } - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "515", - "Content-Type": "application/json", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-8c1cf28da6440422-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "348642175b0a36df9ebc788b985e9715", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-83a43853325e5ec8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ec494207d9ee93bdf1843a51e8e8b22", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "location": "westus", - "properties": { - "locations": [ - { - "locationName": "westus", - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "createMode": "Restore", - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", - "restoreTimestampInUtc": "2023-04-20T00:12:22.0000000Z" - } - } - }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2778", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:53 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322/operationResults/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:03:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe405d36-c7e3-4d42-9bb3-a9c00a2d5358", + "x-ms-correlation-request-id": "2fc2dd1b-214c-4181-8a72-093d4db0c381", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1eb06f94-31b2-48dc-bba3-925b206ff248", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001654Z:fe405d36-c7e3-4d42-9bb3-a9c00a2d5358" + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "2fc2dd1b-214c-4181-8a72-093d4db0c381", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100308Z:2fc2dd1b-214c-4181-8a72-093d4db0c381" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322", - "name": "restoredaccount-5322", - "location": "West US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T00:16:51.3489866Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "f3db04bc-7552-4f70-af65-a7be0274a695", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", - "restoreTimestampInUtc": "2023-04-20T00:12:22Z", - "sourceBackupLocation": "West US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T00:16:51.3489866Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T00:16:51.3489866Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:16:51.3489866Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:16:51.3489866Z" - } - } - }, - "identity": { - "type": "None" - } + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-57f197b214cad7f8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c8581e632d8aff706bde92843c800964", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:03:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b8b3304d-77bd-48cd-b112-99e826d6ee3b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "b8b3304d-77bd-48cd-b112-99e826d6ee3b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100340Z:b8b3304d-77bd-48cd-b112-99e826d6ee3b" + }, + "ResponseBody": { + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-d5383882ed584053-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-63c7383d0061012e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "05233669b7515bc08307497740ec9263", + "x-ms-client-request-id": "b8300d3716b4a5c8252e347a6198c3ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15659,29 +18101,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:53 GMT", + "Date": "Fri, 21 Apr 2023 10:04:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b87f6b2e-9422-45c4-9db1-e81d47a20603", + "x-ms-correlation-request-id": "cecceb46-e2ae-4e40-9507-8a2e26b74714", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "b87f6b2e-9422-45c4-9db1-e81d47a20603", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001654Z:b87f6b2e-9422-45c4-9db1-e81d47a20603" + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "cecceb46-e2ae-4e40-9507-8a2e26b74714", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100412Z:cecceb46-e2ae-4e40-9507-8a2e26b74714" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-8ce6c13df3651c91-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-911289dc7f926b45-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9a595d2ede7f20b52ad59714b9d33909", + "x-ms-client-request-id": "7f6a69fd6d21f3a523c4b2c0eab7ad5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15690,29 +18132,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:54 GMT", + "Date": "Fri, 21 Apr 2023 10:04:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b13933f-4f49-438a-b462-d3a41d71ccc6", + "x-ms-correlation-request-id": "03a35fe5-176d-4ead-8637-f7014ea33a39", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "9b13933f-4f49-438a-b462-d3a41d71ccc6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001655Z:9b13933f-4f49-438a-b462-d3a41d71ccc6" + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "03a35fe5-176d-4ead-8637-f7014ea33a39", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100444Z:03a35fe5-176d-4ead-8637-f7014ea33a39" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-27240894996d0b28-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-cc37aeb2f2d9afb3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "62216723913abac470893aaaad9f70af", + "x-ms-client-request-id": "116ede0fd25e4c6d56b3a25cf9f59ed3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15721,29 +18163,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:55 GMT", + "Date": "Fri, 21 Apr 2023 10:05:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b714c15-59eb-454f-90a6-9b518128f2e7", + "x-ms-correlation-request-id": "e38b67e0-763f-4bbd-b198-571013b74ea9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5b714c15-59eb-454f-90a6-9b518128f2e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001656Z:5b714c15-59eb-454f-90a6-9b518128f2e7" + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "e38b67e0-763f-4bbd-b198-571013b74ea9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100516Z:e38b67e0-763f-4bbd-b198-571013b74ea9" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-c7fd7e9341b14771-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-d039636fa793dcb4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9edc3e63fe3b8b918003db7b1faca2af", + "x-ms-client-request-id": "d386c41a8916ca43673d94f06408ba6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15752,29 +18194,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:56 GMT", + "Date": "Fri, 21 Apr 2023 10:05:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adb85479-f0eb-45f4-8bd9-e3cf779d2931", + "x-ms-correlation-request-id": "88fecde5-cdb0-4f1e-be52-541be822aec2", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "adb85479-f0eb-45f4-8bd9-e3cf779d2931", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001657Z:adb85479-f0eb-45f4-8bd9-e3cf779d2931" + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "88fecde5-cdb0-4f1e-be52-541be822aec2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100548Z:88fecde5-cdb0-4f1e-be52-541be822aec2" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-5c6c42e071af9afa-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-0754e82428dada9a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d85440ce2fcb9d28999e2af6a30b728a", + "x-ms-client-request-id": "826ad680b12a2b70fb1d296dcb48f92e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15783,29 +18225,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:16:58 GMT", + "Date": "Fri, 21 Apr 2023 10:06:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7b4a1a5-c3a8-40f9-9978-3c972d08426f", + "x-ms-correlation-request-id": "1a924056-fa81-4e0c-a7d9-0f007e065d96", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "f7b4a1a5-c3a8-40f9-9978-3c972d08426f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001659Z:f7b4a1a5-c3a8-40f9-9978-3c972d08426f" + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "1a924056-fa81-4e0c-a7d9-0f007e065d96", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100620Z:1a924056-fa81-4e0c-a7d9-0f007e065d96" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-151c1ec819d2d84a-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-5424d87dc1e458d3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7bb0e7659af725cdd695e237b6499bc3", + "x-ms-client-request-id": "26a5df25da3086489ba3a9203d7ce84d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15814,29 +18256,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:17:04 GMT", + "Date": "Fri, 21 Apr 2023 10:06:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc20b6f0-8581-4352-97a2-5f18418969f7", + "x-ms-correlation-request-id": "0bd9919c-0b23-4fa1-bd39-bd26956eb510", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "cc20b6f0-8581-4352-97a2-5f18418969f7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001704Z:cc20b6f0-8581-4352-97a2-5f18418969f7" + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "0bd9919c-0b23-4fa1-bd39-bd26956eb510", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100652Z:0bd9919c-0b23-4fa1-bd39-bd26956eb510" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-6ea37c020b91c2b7-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-a2f991dc6dce89ad-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6ddc8ae7974b33e4153f059cd49ae875", + "x-ms-client-request-id": "23db33f81c8a69a9535bd7f85fd5ff1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15845,29 +18287,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:17:12 GMT", + "Date": "Fri, 21 Apr 2023 10:07:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb072571-830d-441b-b833-a3e9fb5c038f", + "x-ms-correlation-request-id": "b8d97e7f-b307-4344-a22c-217756f8a4f0", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "bb072571-830d-441b-b833-a3e9fb5c038f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001712Z:bb072571-830d-441b-b833-a3e9fb5c038f" + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "b8d97e7f-b307-4344-a22c-217756f8a4f0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100725Z:b8d97e7f-b307-4344-a22c-217756f8a4f0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-1a018b0f588c7fb0-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-2d1fe174044dbe2d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3816509027fb33b8722f01354df1e650", + "x-ms-client-request-id": "84cb66439463a63e8de4e786084fee7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15876,29 +18318,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:17:28 GMT", + "Date": "Fri, 21 Apr 2023 10:07:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "884286fb-7bf3-4758-8951-c32c6aea3b93", + "x-ms-correlation-request-id": "b3e4823e-ccad-470f-b4be-008b7ff02a57", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "884286fb-7bf3-4758-8951-c32c6aea3b93", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001728Z:884286fb-7bf3-4758-8951-c32c6aea3b93" + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b3e4823e-ccad-470f-b4be-008b7ff02a57", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100757Z:b3e4823e-ccad-470f-b4be-008b7ff02a57" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-cfa40cbd33788dec-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-c4ad1d88f5f041d6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "180f6603052fcd3f037c66b79531513b", + "x-ms-client-request-id": "9774dc35d66d09a3363bd2d5034f26c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15907,60 +18349,93 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:17:59 GMT", + "Date": "Fri, 21 Apr 2023 10:08:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef081d90-86d6-4b0d-af93-73926dcfd1b0", + "x-ms-correlation-request-id": "f2f45855-bef2-43c7-8fd2-2c8629b13a1e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "ef081d90-86d6-4b0d-af93-73926dcfd1b0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001800Z:ef081d90-86d6-4b0d-af93-73926dcfd1b0" + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f2f45855-bef2-43c7-8fd2-2c8629b13a1e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100829Z:f2f45855-bef2-43c7-8fd2-2c8629b13a1e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d2a1bab-df5a-47a1-9778-f1c10ae22f23?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-bb8c0b727cc54c5c-00", + "traceparent": "00-fb0e5338b8d40397fd93062ee947e854-4e0b014a937868eb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "66a76dad6232c0c7d2a8fa1c95aee623", + "x-ms-client-request-id": "d6dd8aa463b164eaf53595a634226004", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:09:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "77a034b1-d48a-4307-bc25-df99e4909748", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "77a034b1-d48a-4307-bc25-df99e4909748", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100901Z:77a034b1-d48a-4307-bc25-df99e4909748" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-3324/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-9007?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-29cfb8e7c86e93d4-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "83c3586d67606db1c3c14e27c169a23e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:18:31 GMT", + "Date": "Fri, 21 Apr 2023 10:09:02 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20075841-7c35-4709-8d55-b17b946a1b92", + "x-ms-correlation-request-id": "8753fa5a-ff98-463e-bf8a-429c7643712c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "20075841-7c35-4709-8d55-b17b946a1b92", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001832Z:20075841-7c35-4709-8d55-b17b946a1b92" + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "d6516b83-0acc-4cef-8863-2bcfc8c045cb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100902Z:8753fa5a-ff98-463e-bf8a-429c7643712c" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-2c92bb59192612ab-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-f747ef6479e36eeb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6d98b558cf8b8a451049357ec1009d40", + "x-ms-client-request-id": "ab67cedba28c3c64d86f13f014c2a38b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15969,29 +18444,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:19:03 GMT", + "Date": "Fri, 21 Apr 2023 10:09:02 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f42a4de-a9ba-4140-9111-6f6159339fa3", + "x-ms-correlation-request-id": "bf06ee68-58a6-4445-8240-8f4f80a0e7c1", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "8f42a4de-a9ba-4140-9111-6f6159339fa3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001904Z:8f42a4de-a9ba-4140-9111-6f6159339fa3" + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "bf06ee68-58a6-4445-8240-8f4f80a0e7c1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100902Z:bf06ee68-58a6-4445-8240-8f4f80a0e7c1" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-cb67d2c7b7eaddd9-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-980323bb6e52df6b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e088c6de8049a11d9e4f46860a223754", + "x-ms-client-request-id": "12e75792e34055918af19151c57a2cc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16000,29 +18475,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:19:36 GMT", + "Date": "Fri, 21 Apr 2023 10:09:03 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5ab4b92-6c29-409b-8265-9ed8a3e100cf", + "x-ms-correlation-request-id": "c60718fc-0e79-47ee-8e4f-0b52abe17b9b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "f5ab4b92-6c29-409b-8265-9ed8a3e100cf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T001936Z:f5ab4b92-6c29-409b-8265-9ed8a3e100cf" + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "c60718fc-0e79-47ee-8e4f-0b52abe17b9b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100903Z:c60718fc-0e79-47ee-8e4f-0b52abe17b9b" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-5862767bea17ff27-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-bb671ba6d12f2f8f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "df5e4296e399deaf271c55e82d48fed1", + "x-ms-client-request-id": "f24c3aecf7011bb1bda5a50204ddbc2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16031,29 +18506,60 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:20:08 GMT", + "Date": "Fri, 21 Apr 2023 10:09:04 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ad7a00c-d3a9-4e87-a493-d8e564dbbbaf", + "x-ms-correlation-request-id": "8c02d5e8-5fbf-4161-8a70-be67ebc093d6", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "8ad7a00c-d3a9-4e87-a493-d8e564dbbbaf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002008Z:8ad7a00c-d3a9-4e87-a493-d8e564dbbbaf" + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "8c02d5e8-5fbf-4161-8a70-be67ebc093d6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100904Z:8c02d5e8-5fbf-4161-8a70-be67ebc093d6" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-67124267c86e041e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e9a5166cc215f7d33d12209a1113765e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:09:05 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c053f250-44bd-40e4-ada6-04bfba5f5eba", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "c053f250-44bd-40e4-ada6-04bfba5f5eba", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100906Z:c053f250-44bd-40e4-ada6-04bfba5f5eba" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-a93c9fdd4dbecf56-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-656e3473428988c2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cf3eb90b0526d8da97f7ce3c88bf7fed", + "x-ms-client-request-id": "d9034d43b1769b8aa5cc549a3e8e51ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16062,29 +18568,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:20:40 GMT", + "Date": "Fri, 21 Apr 2023 10:09:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1383d59e-5a1f-453b-805b-2f1217984f6c", + "x-ms-correlation-request-id": "5dd74442-125d-4cc7-a9ed-e93f7267315c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "1383d59e-5a1f-453b-805b-2f1217984f6c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002040Z:1383d59e-5a1f-453b-805b-2f1217984f6c" + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "5dd74442-125d-4cc7-a9ed-e93f7267315c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100908Z:5dd74442-125d-4cc7-a9ed-e93f7267315c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-0747510c22702380-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-fa87c73780a5b172-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7ee8e012bea2faa716a9b92c2a347355", + "x-ms-client-request-id": "afe4613542d429b06754b5efd61709a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16093,29 +18599,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:21:12 GMT", + "Date": "Fri, 21 Apr 2023 10:09:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f392acc-0b91-40b2-9633-4592a703490a", + "x-ms-correlation-request-id": "8d113de4-7c7c-4e9b-80a9-8d49d3c9f685", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "4f392acc-0b91-40b2-9633-4592a703490a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002112Z:4f392acc-0b91-40b2-9633-4592a703490a" + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "8d113de4-7c7c-4e9b-80a9-8d49d3c9f685", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100912Z:8d113de4-7c7c-4e9b-80a9-8d49d3c9f685" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-23fc148145a0d209-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-ef7cfebaed97accd-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "517b745067e4912d678547a214735568", + "x-ms-client-request-id": "b6bf462ee2d9bab98b0a43486d39b9ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16124,29 +18630,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:21:44 GMT", + "Date": "Fri, 21 Apr 2023 10:09:19 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad5bb785-b7b7-4261-a37b-54b8492bee82", + "x-ms-correlation-request-id": "78c7da84-928d-459e-a4f1-fb4824352a22", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "ad5bb785-b7b7-4261-a37b-54b8492bee82", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002145Z:ad5bb785-b7b7-4261-a37b-54b8492bee82" + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "78c7da84-928d-459e-a4f1-fb4824352a22", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100920Z:78c7da84-928d-459e-a4f1-fb4824352a22" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-1f64d426971b43b2-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-fcbf16c5102a467e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4cd6689d7f604d2e1243b97d4cadae62", + "x-ms-client-request-id": "af6573c0c72e00899dd97221fb9bc48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16155,29 +18661,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:22:16 GMT", + "Date": "Fri, 21 Apr 2023 10:09:35 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0402242-70cc-44dc-a500-0e09bbea82cd", + "x-ms-correlation-request-id": "d117203d-9ea8-4fd5-adf6-a72e16e9785a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "f0402242-70cc-44dc-a500-0e09bbea82cd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002217Z:f0402242-70cc-44dc-a500-0e09bbea82cd" + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "d117203d-9ea8-4fd5-adf6-a72e16e9785a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T100936Z:d117203d-9ea8-4fd5-adf6-a72e16e9785a" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-702c29b6ab2e1007-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-2fc7ee04fa4d245a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "13ec79832e43aa09b256171c7605e5a2", + "x-ms-client-request-id": "f76babc29acf52d3a82a23cafe67bc2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16186,29 +18692,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:22:49 GMT", + "Date": "Fri, 21 Apr 2023 10:10:07 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c2d17e1-818b-4238-9e47-7f06c7afb9c6", + "x-ms-correlation-request-id": "6796773f-1fca-46e3-a470-4d2802e61963", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "7c2d17e1-818b-4238-9e47-7f06c7afb9c6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002249Z:7c2d17e1-818b-4238-9e47-7f06c7afb9c6" + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "6796773f-1fca-46e3-a470-4d2802e61963", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101008Z:6796773f-1fca-46e3-a470-4d2802e61963" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-7d3fbc18d4f623e2-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-e0ae0b65cf44ba8f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c28f5153265ed0f5452e3fa0aeb044ba", + "x-ms-client-request-id": "622e079a5ab1667bbdbe19006f98bff0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16217,29 +18723,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:23:20 GMT", + "Date": "Fri, 21 Apr 2023 10:10:40 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5a1a58b-0b16-4f0f-add5-6f6242d7cabb", + "x-ms-correlation-request-id": "8ec30879-af82-4110-817a-f6d62d4783e4", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b5a1a58b-0b16-4f0f-add5-6f6242d7cabb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002321Z:b5a1a58b-0b16-4f0f-add5-6f6242d7cabb" + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "8ec30879-af82-4110-817a-f6d62d4783e4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101040Z:8ec30879-af82-4110-817a-f6d62d4783e4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-c7e8cdab9d469334-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-61af9122a308f115-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9b1ee5d642866e245f2b9a096811d60c", + "x-ms-client-request-id": "c285b545c2ce25dea0120704a4be0135", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16248,29 +18754,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:23:52 GMT", + "Date": "Fri, 21 Apr 2023 10:11:12 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddc377d2-6505-447e-9b2f-69f94de5ab31", + "x-ms-correlation-request-id": "60aa8f41-900f-4afd-8a31-e0f698823fe0", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "ddc377d2-6505-447e-9b2f-69f94de5ab31", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002353Z:ddc377d2-6505-447e-9b2f-69f94de5ab31" + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "60aa8f41-900f-4afd-8a31-e0f698823fe0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101112Z:60aa8f41-900f-4afd-8a31-e0f698823fe0" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-adbbd4db5398b899-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-50e861b2cf631b86-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fb29165dec1d5c04831ccd15ef68fc02", + "x-ms-client-request-id": "f486451d616d68dc30043a1181d3e210", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16279,29 +18785,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:24:24 GMT", + "Date": "Fri, 21 Apr 2023 10:11:44 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a80bb71-ce93-425e-a553-bb045755740c", + "x-ms-correlation-request-id": "edef9e86-05b4-48c6-921f-3da1b3e0d76e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "0a80bb71-ce93-425e-a553-bb045755740c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002425Z:0a80bb71-ce93-425e-a553-bb045755740c" + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "edef9e86-05b4-48c6-921f-3da1b3e0d76e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101145Z:edef9e86-05b4-48c6-921f-3da1b3e0d76e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-9664f96a8d30f25d-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-7172e63282fb3d1f-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "90465c124ae7111c2c2063328ceb6733", + "x-ms-client-request-id": "4985326af9e1d85f2808c29f5276c2fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16310,29 +18816,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:24:57 GMT", + "Date": "Fri, 21 Apr 2023 10:12:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29b7a50c-cf21-411c-bcda-6746d900eac8", + "x-ms-correlation-request-id": "5c9ef4de-8d10-4d87-a78b-b9a9c6052c16", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "29b7a50c-cf21-411c-bcda-6746d900eac8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002457Z:29b7a50c-cf21-411c-bcda-6746d900eac8" + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "5c9ef4de-8d10-4d87-a78b-b9a9c6052c16", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101217Z:5c9ef4de-8d10-4d87-a78b-b9a9c6052c16" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-13aab26657bca907-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-67c03b10785c83fe-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "974332574987ea9ce0c1176a740e7ff6", + "x-ms-client-request-id": "2ae3e3bcca11e383d81c92c988cda4cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16341,29 +18847,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:25:29 GMT", + "Date": "Fri, 21 Apr 2023 10:12:49 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ea73c54-b09b-4ef1-9f0d-9b6575d875d7", + "x-ms-correlation-request-id": "5621db34-3c7b-4c2e-a2ae-4e4716bd18ee", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "9ea73c54-b09b-4ef1-9f0d-9b6575d875d7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002529Z:9ea73c54-b09b-4ef1-9f0d-9b6575d875d7" + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "5621db34-3c7b-4c2e-a2ae-4e4716bd18ee", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101249Z:5621db34-3c7b-4c2e-a2ae-4e4716bd18ee" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-b04ddb3c7978e2de-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-761cbd6feedb3b66-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0bf7972f46cb1325fa18cefc89d2cf98", + "x-ms-client-request-id": "7199f72fb8392354e6aecb649e3d16b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16372,29 +18878,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:26:01 GMT", + "Date": "Fri, 21 Apr 2023 10:13:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8aa01fc7-c202-4aef-b025-4ee690c664b3", + "x-ms-correlation-request-id": "7323ce5b-497f-4bfe-8056-42bcb5bbd52c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "8aa01fc7-c202-4aef-b025-4ee690c664b3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002601Z:8aa01fc7-c202-4aef-b025-4ee690c664b3" + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7323ce5b-497f-4bfe-8056-42bcb5bbd52c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101321Z:7323ce5b-497f-4bfe-8056-42bcb5bbd52c" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-a1a103069c2be902-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-dfd768e86c2b7309-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "bcbe99b56425c87ac05bb02532b19c1e", + "x-ms-client-request-id": "9e543b42b8ef9ffeafa170c46795505b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16403,29 +18909,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:26:33 GMT", + "Date": "Fri, 21 Apr 2023 10:13:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9613039f-3b72-4f6a-9b31-5f5c4aa6130f", + "x-ms-correlation-request-id": "de7085b1-0f72-497a-b1e8-c832f84f9e02", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "9613039f-3b72-4f6a-9b31-5f5c4aa6130f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002634Z:9613039f-3b72-4f6a-9b31-5f5c4aa6130f" + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "de7085b1-0f72-497a-b1e8-c832f84f9e02", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101353Z:de7085b1-0f72-497a-b1e8-c832f84f9e02" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-888c786059cc89e4-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-5f7a9797709a4ea0-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f4026ca15bf311670d2f9d6e7b9f610e", + "x-ms-client-request-id": "5b6ff56450dc04c58fbf4363ff1e449b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16434,29 +18940,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:27:06 GMT", + "Date": "Fri, 21 Apr 2023 10:14:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06411288-0db4-4ff5-af6f-4db0cc847b5a", + "x-ms-correlation-request-id": "ba944a53-b2e9-4bc3-9855-5825e4089ce1", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "06411288-0db4-4ff5-af6f-4db0cc847b5a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002706Z:06411288-0db4-4ff5-af6f-4db0cc847b5a" + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "ba944a53-b2e9-4bc3-9855-5825e4089ce1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101425Z:ba944a53-b2e9-4bc3-9855-5825e4089ce1" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-a4dc38ccf80c607d-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-c95e7947a6c1c381-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dab57ff1c24fcad11d2f4b709500e048", + "x-ms-client-request-id": "4c87d806057977ddf8f9c297478fbc51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16465,29 +18971,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:27:37 GMT", + "Date": "Fri, 21 Apr 2023 10:14:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c45999b-1d15-4535-b1ce-598ea32f0701", + "x-ms-correlation-request-id": "2668a3de-176b-4482-bf6e-c22bb3bcd858", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "2c45999b-1d15-4535-b1ce-598ea32f0701", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002738Z:2c45999b-1d15-4535-b1ce-598ea32f0701" + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "2668a3de-176b-4482-bf6e-c22bb3bcd858", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101457Z:2668a3de-176b-4482-bf6e-c22bb3bcd858" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-9a4598b3bc52eb3a-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-25c8e5e3d46da057-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1c5bb07bdbcf59a431adaff5c70b4d20", + "x-ms-client-request-id": "a9006f5ebbcdf1dc764f0f30749ba090", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16496,29 +19002,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:28:09 GMT", + "Date": "Fri, 21 Apr 2023 10:15:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "095a0fa1-f493-44a3-b16d-5e0658755925", + "x-ms-correlation-request-id": "dba5acca-35a5-4f16-bb7d-a37a7275c809", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "095a0fa1-f493-44a3-b16d-5e0658755925", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002810Z:095a0fa1-f493-44a3-b16d-5e0658755925" + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "dba5acca-35a5-4f16-bb7d-a37a7275c809", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101530Z:dba5acca-35a5-4f16-bb7d-a37a7275c809" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-21477be5028fcead-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-49461ddbf9450c61-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b333a1fac2fcdfce9a37d7c410f77b0d", + "x-ms-client-request-id": "8ebed45c030d5ee218f762e28d2dbdff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16527,29 +19033,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:28:42 GMT", + "Date": "Fri, 21 Apr 2023 10:16:01 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53f6c0be-7c86-49ff-aa22-5411c0a627d8", + "x-ms-correlation-request-id": "8eb48778-b46a-4fb6-8d28-a12b1dae29f6", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "53f6c0be-7c86-49ff-aa22-5411c0a627d8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002842Z:53f6c0be-7c86-49ff-aa22-5411c0a627d8" + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "8eb48778-b46a-4fb6-8d28-a12b1dae29f6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101602Z:8eb48778-b46a-4fb6-8d28-a12b1dae29f6" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-3f22748d9a1134e8-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-62526b80864fac9e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "caf3554f4444163eda5ba8a212dc0311", + "x-ms-client-request-id": "8f05f2039b1e4bcdfb95d529f6ac025d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16558,270 +19064,180 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:14 GMT", + "Date": "Fri, 21 Apr 2023 10:16:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c406286d-a4c9-4d2d-ae33-90e183f01836", + "x-ms-correlation-request-id": "1f504e1e-956f-43d3-83c2-b707956bccb9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "c406286d-a4c9-4d2d-ae33-90e183f01836", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002914Z:c406286d-a4c9-4d2d-ae33-90e183f01836" + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "1f504e1e-956f-43d3-83c2-b707956bccb9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101634Z:1f504e1e-956f-43d3-83c2-b707956bccb9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb06f94-31b2-48dc-bba3-925b206ff248?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-79f36180dcd53bac-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-12dda6a2f44bde7e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f3762ae12dccb94be17b829703df493a", + "x-ms-client-request-id": "723b31592dd05a438da190d559fa6449", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:46 GMT", + "Date": "Fri, 21 Apr 2023 10:17:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76ba66a3-0b3b-4742-88d1-b1e08bf3c8e7", + "x-ms-correlation-request-id": "ec9b87da-3973-4c29-904b-ecd2a60a3f4b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "76ba66a3-0b3b-4742-88d1-b1e08bf3c8e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002946Z:76ba66a3-0b3b-4742-88d1-b1e08bf3c8e7" + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "ec9b87da-3973-4c29-904b-ecd2a60a3f4b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101706Z:ec9b87da-3973-4c29-904b-ecd2a60a3f4b" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-138ebe6e24bc4459f3e537ca32aa460b-8a4b086471fba2b2-00", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-b4cc776e54250039-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "72a6a2318218b5dc631cd8a1192bccbe", + "x-ms-client-request-id": "812c0f921096c172077392772db9686b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "3107", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:46 GMT", + "Date": "Fri, 21 Apr 2023 10:17:37 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69e0aa4f-4e5d-465c-80b5-40f916e7fc09", + "x-ms-correlation-request-id": "1ccdbb8b-5d04-4107-bcf3-ab2ea219b579", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "69e0aa4f-4e5d-465c-80b5-40f916e7fc09", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002946Z:69e0aa4f-4e5d-465c-80b5-40f916e7fc09" + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "1ccdbb8b-5d04-4107-bcf3-ab2ea219b579", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101738Z:1ccdbb8b-5d04-4107-bcf3-ab2ea219b579" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322", - "name": "restoredaccount-5322", - "location": "West US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T00:29:32.3525066Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://restoredaccount-5322.documents.azure.com:443/", - "sqlEndpoint": "https://restoredaccount-5322.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "f3db04bc-7552-4f70-af65-a7be0274a695", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-5322-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-5322-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-5322-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-5322-westus", - "locationName": "West US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", - "restoreTimestampInUtc": "2023-04-20T00:12:22Z", - "sourceBackupLocation": "West US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T00:29:32.3525066Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T00:29:32.3525066Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:29:32.3525066Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:29:32.3525066Z" - } - } - }, - "identity": { - "type": "None" - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1077?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-13fcd8250bf48a838adef432a6123fd0-d7ec467c2e72bab2-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e5e3c634878121400939e8c8c2a713fa", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-d6acfbfbba5790ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5c8904f54af2d52fafaa027c0af7f101", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/edcfd3fb-8bdb-472d-a476-c8a1958cc3ca?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:47 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/edcfd3fb-8bdb-472d-a476-c8a1958cc3ca?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:18:10 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9315f1cc-660b-4d07-b9ef-ee9059e3ccd3", + "x-ms-correlation-request-id": "927682e6-5c04-4172-bf8f-f4ac3aa624a3", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "edcfd3fb-8bdb-472d-a476-c8a1958cc3ca", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002948Z:9315f1cc-660b-4d07-b9ef-ee9059e3ccd3" + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "927682e6-5c04-4172-bf8f-f4ac3aa624a3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101810Z:927682e6-5c04-4172-bf8f-f4ac3aa624a3" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-5322?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ef7de0d1821574570c14770dcbd229be-e1ec605190f6745a-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3c63c3ae64fca9b9628469de9913f3bb", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-c7afbf951701c004-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e7968c31807f49c7be7a6b5d9bcb2cd3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/13b3ca25-c80c-4900-b7e3-0f5530b3c63b?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:48 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/13b3ca25-c80c-4900-b7e3-0f5530b3c63b?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:18:42 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2d44a64-bfde-4dc4-b1b1-545cd6d623a2", + "x-ms-correlation-request-id": "b21fca68-ff51-490b-92f1-addd5ceb0a64", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "13b3ca25-c80c-4900-b7e3-0f5530b3c63b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002949Z:a2d44a64-bfde-4dc4-b1b1-545cd6d623a2" + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "b21fca68-ff51-490b-92f1-addd5ceb0a64", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101842Z:b21fca68-ff51-490b-92f1-addd5ceb0a64" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6516b83-0acc-4cef-8863-2bcfc8c045cb?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4dc167a0aaa30523f7f86a3afc453509-471c070e4408aedf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "54e0253907714857e057d2eb0df6b60f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:19:14 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "883ec224-cff0-4cb6-b6b7-65d91f33d462", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "883ec224-cff0-4cb6-b6b7-65d91f33d462", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T101914Z:883ec224-cff0-4cb6-b6b7-65d91f33d462" + }, + "ResponseBody": { + "status": "Succeeded" } } ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "117015425", + "RandomSeed": "1959787869", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccountAsync.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccountAsync.json index 00781321631d..c6ddc4991f59 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccountAsync.json +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/RestoreSqlDatabaseAccountAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6716?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6972?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c08e1494c3cafd2d81aa4eb72ea9ea47-6dc701aa70a4bd79-00", + "traceparent": "00-0cfee2b49c282ec29e18525311935702-46b25f11a71abaa6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4ddfcb0387e38f5a9422edb01426a450", + "x-ms-client-request-id": "86fc8577b5b6b45e6df23c09b217c1af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:00:09 GMT", + "Date": "Fri, 21 Apr 2023 10:30:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f48c2590-c955-4787-8c76-e84c07ff81e7", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "f48c2590-c955-4787-8c76-e84c07ff81e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030009Z:f48c2590-c955-4787-8c76-e84c07ff81e7" + "x-ms-correlation-request-id": "e5c729cb-4158-43cd-be26-8e789a1097d2", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "e5c729cb-4158-43cd-be26-8e789a1097d2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103051Z:e5c729cb-4158-43cd-be26-8e789a1097d2" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716", - "name": "dbaccount-6716", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972", + "name": "dbaccount-6972", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615?api-version=2022-11-15-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-06c9cd07c7df3b7f-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-71eb6bcae35fc5d1-00", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d63c986394f173c3c74f5e6efa627da2", + "x-ms-client-request-id": "e85c9701485a72d83796b9301ef01351", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -85,31 +85,31 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "2410", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:16 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/operationResults/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:30:57 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/operationResults/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f77f9d2-2f44-41bb-a67f-7584fc5fd698", + "x-ms-correlation-request-id": "18e6c937-47f2-4f6f-b3bb-34dbdb12f1c6", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030016Z:4f77f9d2-2f44-41bb-a67f-7584fc5fd698" + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "8b0e2bd5-36e5-4854-9436-2fed16205aaf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103057Z:18e6c937-47f2-4f6f-b3bb-34dbdb12f1c6" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663", - "name": "r-database-account-3663", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615", + "name": "r-database-account-9615", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T03:00:14.5472158Z" + "createdAt": "2023-04-21T10:30:55.5328693Z" }, "properties": { "provisioningState": "Creating", @@ -126,7 +126,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "instanceId": "22172c01-16ea-46c3-87fb-5c261b8068db", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -144,7 +144,7 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -153,7 +153,7 @@ ], "readLocations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -162,7 +162,7 @@ ], "locations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", "provisioningState": "Creating", "failoverPriority": 0, @@ -171,7 +171,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", "failoverPriority": 0 } @@ -195,16 +195,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T03:00:14.5472158Z" + "generationTime": "2023-04-21T10:30:55.5328693Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T03:00:14.5472158Z" + "generationTime": "2023-04-21T10:30:55.5328693Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:00:14.5472158Z" + "generationTime": "2023-04-21T10:30:55.5328693Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:00:14.5472158Z" + "generationTime": "2023-04-21T10:30:55.5328693Z" } } }, @@ -214,13 +214,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-a8f9fc42f9a0eb85-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-9e29023de91289fb-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "991f4385d8c537121cd91c37fb209abf", + "x-ms-client-request-id": "e3cbf56ab7583d1d24137e1ea4844e02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -229,29 +229,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:16 GMT", + "Date": "Fri, 21 Apr 2023 10:30:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eea8e8a1-8d41-4e07-a2f1-993b06c2b185", + "x-ms-correlation-request-id": "b9338565-dde7-4850-a48b-e6d434a458bd", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "eea8e8a1-8d41-4e07-a2f1-993b06c2b185", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030016Z:eea8e8a1-8d41-4e07-a2f1-993b06c2b185" + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "b9338565-dde7-4850-a48b-e6d434a458bd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103057Z:b9338565-dde7-4850-a48b-e6d434a458bd" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-49534cf02b79d617-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-146cb14a335b1a3e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "01830e6fd61df74bbe7d0b65c3b404ac", + "x-ms-client-request-id": "b6b3b829e5e326c4a7a3959c79bfb8d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,29 +260,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:17 GMT", + "Date": "Fri, 21 Apr 2023 10:30:58 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f07f117-dbfa-499b-8657-26a69bb6b521", + "x-ms-correlation-request-id": "3721e5a9-1bce-4362-b355-2d8192ab72e4", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "3f07f117-dbfa-499b-8657-26a69bb6b521", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030017Z:3f07f117-dbfa-499b-8657-26a69bb6b521" + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "3721e5a9-1bce-4362-b355-2d8192ab72e4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103058Z:3721e5a9-1bce-4362-b355-2d8192ab72e4" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-6825ce72621bc742-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-2a21216c46297118-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b6e8a192e343b8dc124f5cba4fa2c2a9", + "x-ms-client-request-id": "28c54f572f2547f843a0a51d5dd113ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -291,29 +291,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:18 GMT", + "Date": "Fri, 21 Apr 2023 10:30:59 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22bcd90c-3f7b-4c92-bb8a-b1136bbc4475", + "x-ms-correlation-request-id": "2ece8260-a9ba-4a06-9219-eb24db6dd8af", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "22bcd90c-3f7b-4c92-bb8a-b1136bbc4475", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030018Z:22bcd90c-3f7b-4c92-bb8a-b1136bbc4475" + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "2ece8260-a9ba-4a06-9219-eb24db6dd8af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103059Z:2ece8260-a9ba-4a06-9219-eb24db6dd8af" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-213f07aea90a6eb9-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-9b3d326dc3877890-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "609e10f1bb97ae9ff827db47ccac7367", + "x-ms-client-request-id": "02efcc6e88ab858530a53bb52280c364", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -322,29 +322,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:19 GMT", + "Date": "Fri, 21 Apr 2023 10:31:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4daf870c-fe85-45ac-8d7a-792fa70e44d7", + "x-ms-correlation-request-id": "9e1cb528-ec09-4cf0-add6-7df9be409f0e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "4daf870c-fe85-45ac-8d7a-792fa70e44d7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030019Z:4daf870c-fe85-45ac-8d7a-792fa70e44d7" + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "9e1cb528-ec09-4cf0-add6-7df9be409f0e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103100Z:9e1cb528-ec09-4cf0-add6-7df9be409f0e" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-413daa7771a3a8de-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-d93561688efb3e2b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5aa46fd5e3388c7b31caeecd7a90a71b", + "x-ms-client-request-id": "55c7a65b25befaddc06c73433fa7c9d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -353,29 +353,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:21 GMT", + "Date": "Fri, 21 Apr 2023 10:31:02 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2e59f44-2819-4e62-a242-f107aca5dd68", + "x-ms-correlation-request-id": "cb86ebac-b4c1-4ebf-a0cb-90c29a727b70", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "e2e59f44-2819-4e62-a242-f107aca5dd68", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030021Z:e2e59f44-2819-4e62-a242-f107aca5dd68" + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "cb86ebac-b4c1-4ebf-a0cb-90c29a727b70", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103102Z:cb86ebac-b4c1-4ebf-a0cb-90c29a727b70" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-9a1e84852b2fad19-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-dee1725bf52b5393-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b27462baa415d6140139bd1b0895ec66", + "x-ms-client-request-id": "ad2dc68fb6d0ce2cca40f87ff34225c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -384,29 +384,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:25 GMT", + "Date": "Fri, 21 Apr 2023 10:31:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3464f87e-92e6-4a9c-9788-2cff730a2701", + "x-ms-correlation-request-id": "31a8cef1-5508-4c1e-8034-0fb8d1d75f64", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "3464f87e-92e6-4a9c-9788-2cff730a2701", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030026Z:3464f87e-92e6-4a9c-9788-2cff730a2701" + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "31a8cef1-5508-4c1e-8034-0fb8d1d75f64", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103106Z:31a8cef1-5508-4c1e-8034-0fb8d1d75f64" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-58a720d150fed64e-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-a92ca133a9f6e211-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dfe4f4db68fd0d7194122ecccdd13467", + "x-ms-client-request-id": "b6c241dcbe0a480feff5423f15424589", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -415,29 +415,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:33 GMT", + "Date": "Fri, 21 Apr 2023 10:31:14 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86711544-34ba-4c1b-9c1d-4676da59e488", + "x-ms-correlation-request-id": "87c97fc9-a712-409b-a853-5a0dd08d234d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "86711544-34ba-4c1b-9c1d-4676da59e488", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030034Z:86711544-34ba-4c1b-9c1d-4676da59e488" + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "87c97fc9-a712-409b-a853-5a0dd08d234d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103114Z:87c97fc9-a712-409b-a853-5a0dd08d234d" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-94d69e80e6d2d0f2-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-3324c8303cb95e13-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6a8cbf7fc03731525ace58fe255f839c", + "x-ms-client-request-id": "5b2565db1652a49479f88b7e2d5d067d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -446,29 +446,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:00:50 GMT", + "Date": "Fri, 21 Apr 2023 10:31:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "936d70f8-b254-42a1-8d42-dfe9f9953512", + "x-ms-correlation-request-id": "a11879d8-46f8-4678-b6b3-bcabc7e5aa7b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "936d70f8-b254-42a1-8d42-dfe9f9953512", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030050Z:936d70f8-b254-42a1-8d42-dfe9f9953512" + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "a11879d8-46f8-4678-b6b3-bcabc7e5aa7b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103130Z:a11879d8-46f8-4678-b6b3-bcabc7e5aa7b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-3629a83d00b05acc-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-bdfa2541bc5090b5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "85f187dec8ac521ef0661e027548082f", + "x-ms-client-request-id": "fe66b04712e4d0cbb6e4bddb74ecb987", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -477,29 +477,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:01:22 GMT", + "Date": "Fri, 21 Apr 2023 10:32:02 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "408230a4-08ea-41b7-a322-49c9a1cc1361", + "x-ms-correlation-request-id": "acf6f184-12b9-4414-aaa3-03302b623336", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "408230a4-08ea-41b7-a322-49c9a1cc1361", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030122Z:408230a4-08ea-41b7-a322-49c9a1cc1361" + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "acf6f184-12b9-4414-aaa3-03302b623336", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103203Z:acf6f184-12b9-4414-aaa3-03302b623336" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-7aec567b07298c0a-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-e7265c385dae0a2c-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "499c560481081b2ea2b3842f0f73e834", + "x-ms-client-request-id": "8ea46efac91dc570ac1d3c1133911b91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -508,29 +508,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:01:54 GMT", + "Date": "Fri, 21 Apr 2023 10:32:34 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86edde1f-8216-4e77-b918-6bdc4fd35ae4", + "x-ms-correlation-request-id": "2aa0b8c4-edea-4b99-b64a-1e8298ce4a84", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "86edde1f-8216-4e77-b918-6bdc4fd35ae4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030154Z:86edde1f-8216-4e77-b918-6bdc4fd35ae4" + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "2aa0b8c4-edea-4b99-b64a-1e8298ce4a84", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103235Z:2aa0b8c4-edea-4b99-b64a-1e8298ce4a84" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-9fc4921a616546e6-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-deccb9c6a30160aa-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "46ed928fafe0b7bba03a7ad1a24fbb12", + "x-ms-client-request-id": "65f8c4ee47dbc9a59955a56d58b9308d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -539,29 +539,60 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:02:26 GMT", + "Date": "Fri, 21 Apr 2023 10:33:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9242bbd-900b-46cd-bbc8-40edc90c3024", + "x-ms-correlation-request-id": "5c309059-18e6-45d2-a51d-1a2830d5d93d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "a9242bbd-900b-46cd-bbc8-40edc90c3024", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030226Z:a9242bbd-900b-46cd-bbc8-40edc90c3024" + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "5c309059-18e6-45d2-a51d-1a2830d5d93d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103307Z:5c309059-18e6-45d2-a51d-1a2830d5d93d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-dbff5be572c38430-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bf83033f78b97e603fa151c6d6ba9d25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:33:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c7d9c6d4-8217-4737-890b-6cc9e50346eb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "c7d9c6d4-8217-4737-890b-6cc9e50346eb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103339Z:c7d9c6d4-8217-4737-890b-6cc9e50346eb" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e501ec8-d5bb-4017-bfef-5b3d09f9f7b5?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b0e2bd5-36e5-4854-9436-2fed16205aaf?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-147cf1e05c5e1615-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-8fd0d143d3ce2868-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cff928c539c35d9358d6e2f843ee427d", + "x-ms-client-request-id": "afec2bc954f4b3acc9daf4c724026df3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,62 +601,62 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:02:58 GMT", + "Date": "Fri, 21 Apr 2023 10:34:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0320bd54-83ec-4108-886f-fb3de90b5ef7", + "x-ms-correlation-request-id": "3ce39067-694c-4c04-bf68-8adc73a283f9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "0320bd54-83ec-4108-886f-fb3de90b5ef7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030259Z:0320bd54-83ec-4108-886f-fb3de90b5ef7" + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "3ce39067-694c-4c04-bf68-8adc73a283f9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103411Z:3ce39067-694c-4c04-bf68-8adc73a283f9" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96533ba214c197e1bf4843c0b8c1bb97-066d165ebe6fbdd4-00", + "traceparent": "00-484e45a8e8f7e7ff003d17ea7c83e796-92a7fce9bb75d737-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e373e97ec25a554f9ae4a8ce075d7852", + "x-ms-client-request-id": "30d2afed5b0e75d8647a253af5def3df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "2838", + "Content-Length": "2828", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:02:58 GMT", + "Date": "Fri, 21 Apr 2023 10:34:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f43945b-bf35-4bc7-a8d6-563f4879e926", + "x-ms-correlation-request-id": "0524d4cb-c2f2-4f5d-bd2e-086cda59034b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "0f43945b-bf35-4bc7-a8d6-563f4879e926", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030259Z:0f43945b-bf35-4bc7-a8d6-563f4879e926" + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "0524d4cb-c2f2-4f5d-bd2e-086cda59034b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103411Z:0524d4cb-c2f2-4f5d-bd2e-086cda59034b" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663", - "name": "r-database-account-3663", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615", + "name": "r-database-account-9615", "location": "West US", "type": "Microsoft.DocumentDB/databaseAccounts", "kind": "GlobalDocumentDB", "tags": {}, "systemData": { - "createdAt": "2023-04-20T03:02:47.0431787Z" + "createdAt": "2023-04-21T10:33:39.57992Z" }, "properties": { "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-3663.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-3663.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-9615.documents.azure.com:443/", + "sqlEndpoint": "https://r-database-account-9615.documents.azure.com:443/", "publicNetworkAccess": "Enabled", "enableAutomaticFailover": false, "enableMultipleWriteLocations": false, @@ -639,7 +670,7 @@ "analyticalStorageConfiguration": { "schemaType": "WellDefined" }, - "instanceId": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "instanceId": "22172c01-16ea-46c3-87fb-5c261b8068db", "createMode": "Default", "databaseAccountOfferType": "Standard", "enableMaterializedViews": false, @@ -657,9 +688,9 @@ "configurationOverrides": {}, "writeLocations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-3663-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-9615-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -667,9 +698,9 @@ ], "readLocations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-3663-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-9615-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -677,9 +708,9 @@ ], "locations": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", - "documentEndpoint": "https://r-database-account-3663-westus.documents.azure.com:443/", + "documentEndpoint": "https://r-database-account-9615-westus.documents.azure.com:443/", "provisioningState": "Succeeded", "failoverPriority": 0, "isZoneRedundant": false @@ -687,7 +718,7 @@ ], "failoverPolicies": [ { - "id": "r-database-account-3663-westus", + "id": "r-database-account-9615-westus", "locationName": "West US", "failoverPriority": 0 } @@ -711,16 +742,16 @@ }, "keysMetadata": { "primaryMasterKey": { - "generationTime": "2023-04-20T03:02:47.0431787Z" + "generationTime": "2023-04-21T10:33:39.57992Z" }, "secondaryMasterKey": { - "generationTime": "2023-04-20T03:02:47.0431787Z" + "generationTime": "2023-04-21T10:33:39.57992Z" }, "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:02:47.0431787Z" + "generationTime": "2023-04-21T10:33:39.57992Z" }, "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:02:47.0431787Z" + "generationTime": "2023-04-21T10:33:39.57992Z" } } }, @@ -735,9 +766,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f9c53119d6657cd097d3133f3123a94d-d3cc9f55cf806203-00", + "traceparent": "00-5f33f6b0475982173f90a131523fce16-fdbcbc3dddf07dd8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e66972f718795671fe90ed09ccc273b2", + "x-ms-client-request-id": "2ca37fb881cceb9856cff6de8498593c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -746,15 +777,15 @@ "Cache-Control": "no-cache", "Content-Length": "454", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:02:58 GMT", + "Date": "Fri, 21 Apr 2023 10:34:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eb9c6de-06fc-47e3-91e2-3af42155c231", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6eb9c6de-06fc-47e3-91e2-3af42155c231", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030259Z:6eb9c6de-06fc-47e3-91e2-3af42155c231" + "x-ms-correlation-request-id": "b7745233-822e-4a89-83bd-aa7b3fa349e0", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "b7745233-822e-4a89-83bd-aa7b3fa349e0", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103411Z:b7745233-822e-4a89-83bd-aa7b3fa349e0" }, "ResponseBody": { "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", @@ -782,21 +813,21 @@ "Accept": "application/json", "Authorization": "Sanitized", "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b953fdf8d8dc03b8d9a434df90c555fb", + "x-ms-client-request-id": "26d95e336ce76e1653764a7a2e72bdea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "470003", + "Content-Length": "493608", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:03:03 GMT", + "Date": "Fri, 21 Apr 2023 10:34:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ce450c0-4ba5-4b4c-89ca-43855b4746d1", + "x-ms-correlation-request-id": "6a50fce6-8290-40b4-b392-05ed0445a0e1", "x-ms-original-request-ids": [ "", "", @@ -837,9 +868,9 @@ "", "" ], - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "3ce450c0-4ba5-4b4c-89ca-43855b4746d1", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030304Z:3ce450c0-4ba5-4b4c-89ca-43855b4746d1" + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "6a50fce6-8290-40b4-b392-05ed0445a0e1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103416Z:6a50fce6-8290-40b4-b392-05ed0445a0e1" }, "ResponseBody": { "value": [ @@ -852,7 +883,7 @@ "accountName": "barprod-systemid-sw-1109027095", "apiType": "Sql", "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -871,7 +902,7 @@ "accountName": "barprod-systemid-sw-1109027095-rl1", "apiType": "Sql", "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -890,7 +921,7 @@ "accountName": "barprod-systemid-sw-1305567950", "apiType": "Sql", "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -909,7 +940,7 @@ "accountName": "barprod-systemid-sw-1305567950-rl1", "apiType": "Sql", "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -928,7 +959,7 @@ "accountName": "vinh-restore-fail", "apiType": "Sql", "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -947,7 +978,7 @@ "accountName": "vinh-restore-fail2", "apiType": "Sql", "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -966,7 +997,7 @@ "accountName": "vinh-restore-not-fail3", "apiType": "Sql", "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -985,7 +1016,7 @@ "accountName": "barprod-systemid-sw-1525116479", "apiType": "Sql", "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1004,7 +1035,7 @@ "accountName": "barprod-systemid-sw-1526492563", "apiType": "Sql", "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1023,7 +1054,7 @@ "accountName": "barprod-systemid-sw-1526492563-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1042,7 +1073,7 @@ "accountName": "barprod-systemid-sw-1525116479-rl1", "apiType": "Sql", "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1061,7 +1092,7 @@ "accountName": "vinh-restore-fail-2identities", "apiType": "Sql", "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1080,7 +1111,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns", "apiType": "Sql", "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1104,7 +1135,7 @@ "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", "apiType": "Sql", "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1114,44 +1145,6 @@ ] } }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, { "name": "2217666b-a543-4788-adf9-f8059e864343", "location": "West Central US", @@ -1204,7 +1197,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T15:41:19Z", "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1231,7 +1224,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T17:50:09Z", "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1306,7 +1299,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T19:55:04Z", "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1333,7 +1326,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T22:30:52Z", "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1354,7 +1347,7 @@ "apiType": "Sql", "creationTime": "2023-04-06T21:11:17Z", "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1444,7 +1437,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T20:14:52Z", "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1465,7 +1458,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T21:36:53Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1486,7 +1479,7 @@ "apiType": "Sql", "creationTime": "2023-04-07T22:53:05Z", "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1507,7 +1500,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T15:47:08Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1528,7 +1521,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T14:28:30Z", "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1555,7 +1548,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T17:43:02Z", "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1576,7 +1569,7 @@ "apiType": "Sql", "creationTime": "2023-04-10T18:59:04Z", "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1597,7 +1590,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T21:49:40Z", "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1618,7 +1611,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T20:29:55Z", "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1645,7 +1638,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T22:00:54Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1666,7 +1659,7 @@ "apiType": "Sql", "creationTime": "2023-04-14T23:17:22Z", "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -1714,7 +1707,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:11:24Z", "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1735,7 +1728,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T19:41:46Z", "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1756,7 +1749,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:39:56Z", "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1777,7 +1770,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:20:01Z", "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1798,7 +1791,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:44:28Z", "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1819,7 +1812,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:20:58Z", "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1840,7 +1833,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:38:00Z", "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1861,7 +1854,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T23:57:24Z", "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1882,7 +1875,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:12:13Z", "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1903,7 +1896,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T00:34:02Z", "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1924,7 +1917,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:04:49Z", "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1945,7 +1938,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T01:21:53Z", "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1966,7 +1959,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T02:09:18Z", "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -1987,7 +1980,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T03:25:35Z", "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2008,7 +2001,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T13:32:30Z", "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2029,7 +2022,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:55:26Z", "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2050,7 +2043,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:11:57Z", "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2071,7 +2064,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:27:03Z", "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2092,7 +2085,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T17:45:32Z", "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2113,7 +2106,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T18:09:59Z", "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2134,7 +2127,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T19:06:06Z", "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2155,7 +2148,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:22:32Z", "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2176,7 +2169,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T20:47:01Z", "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2197,7 +2190,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T22:42:05Z", "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2218,7 +2211,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T23:07:37Z", "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2239,7 +2232,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T03:02:08Z", "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2260,7 +2253,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:18:33Z", "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2281,7 +2274,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T04:42:38Z", "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2302,7 +2295,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T05:41:29Z", "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2323,7 +2316,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T06:58:18Z", "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2344,7 +2337,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T07:21:28Z", "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2365,7 +2358,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T17:40:33Z", "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2386,7 +2379,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T18:56:48Z", "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2407,7 +2400,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:21:04Z", "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2428,7 +2421,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:56:22Z", "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2449,7 +2442,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:12:50Z", "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2470,7 +2463,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:36:04Z", "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2491,7 +2484,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:39:20Z", "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2512,7 +2505,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T20:20:11Z", "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2533,7 +2526,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:35:24Z", "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2554,7 +2547,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T02:38:50Z", "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2575,7 +2568,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:29:22Z", "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2596,7 +2589,7 @@ "apiType": "Sql", "creationTime": "2023-04-18T16:25:48Z", "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2617,7 +2610,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:54:36Z", "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2638,7 +2631,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T23:51:43Z", "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2659,7 +2652,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T22:38:31Z", "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2680,7 +2673,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T19:54:34Z", "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2701,7 +2694,7 @@ "apiType": "Sql", "creationTime": "2023-04-19T22:47:58Z", "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2722,7 +2715,7 @@ "apiType": "Sql", "creationTime": "2023-04-17T21:38:01Z", "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2743,7 +2736,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T00:32:15Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West Central US", @@ -2764,7 +2757,7 @@ "apiType": "Sql", "creationTime": "2023-04-20T01:47:59Z", "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", @@ -2776,12131 +2769,14653 @@ } }, { - "name": "d88e6a3c-687d-4990-a516-da739070bf81", - "location": "North Central US", + "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", "properties": { - "accountName": "kal-continuous7", + "accountName": "r-database-account-1146", "apiType": "Sql", - "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", - "creationTime": "2022-06-07T20:09:39Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", + "creationTime": "2023-04-20T03:27:39Z", + "deletionTime": "2023-04-20T04:45:45Z" } ] } }, { - "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "location": "North Central US", + "name": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", "properties": { - "accountName": "kal-continuous7-restored1", + "accountName": "restoredaccount-2866", "apiType": "Sql", - "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", - "creationTime": "2022-06-10T19:23:44Z" + "regionalDatabaseAccountInstanceId": "cbb65938-c76d-49f6-87da-00bc071cc767", + "creationTime": "2023-04-20T04:44:54Z", + "deletionTime": "2023-04-20T04:45:46Z" } ] } }, { - "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", - "location": "North Central US", + "name": "aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aed4714e-56e1-4bc3-ac1a-c69d9072b7fc", "properties": { - "accountName": "kal-continuous7-demorestore", + "accountName": "r-database-account-2733", "apiType": "Sql", - "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-20T15:57:02Z", + "deletionTime": "2023-04-20T17:15:49Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", - "creationTime": "2022-06-10T21:20:46Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "35c8d554-7f7d-4273-baad-ef52cbb3d186", + "creationTime": "2023-04-20T15:57:03Z", + "deletionTime": "2023-04-20T17:15:49Z" } ] } }, { - "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "location": "North Central US", + "name": "aaf1a04f-5121-4222-8ef8-3c9b0d24406f", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/aaf1a04f-5121-4222-8ef8-3c9b0d24406f", "properties": { - "accountName": "test-billing-continuous30", + "accountName": "restoredaccount-3296", "apiType": "Sql", - "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", - "creationTime": "2022-07-28T21:54:21Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", - "creationTime": "2022-08-31T21:09:14Z" - }, - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", - "creationTime": "2022-08-31T22:24:21Z" + "regionalDatabaseAccountInstanceId": "306c8ee5-a4a1-4fe0-a1fb-eba679f71ab9", + "creationTime": "2023-04-20T17:15:18Z", + "deletionTime": "2023-04-20T17:26:01Z" } ] } }, { - "name": "e84733a9-ee18-456c-b12b-1d37e542608b", - "location": "North Central US", + "name": "d5715bc5-52a2-42de-8b05-2ff98a11af42", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d5715bc5-52a2-42de-8b05-2ff98a11af42", "properties": { - "accountName": "new-cosmsosdb-account", + "accountName": "r-database-account-1488", "apiType": "Sql", - "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T17:39:33Z", + "deletionTime": "2023-04-20T18:58:46Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", - "creationTime": "2022-08-31T20:34:40Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "dde70db7-9b6d-4445-98d9-c1985f4d9298", + "creationTime": "2023-04-20T17:39:34Z", + "deletionTime": "2023-04-20T18:58:46Z" } ] } }, { - "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", - "location": "North Central US", + "name": "7eacbb40-8bdb-406d-8575-558cd9b354f9", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7eacbb40-8bdb-406d-8575-558cd9b354f9", "properties": { - "accountName": "amisitestpitracc", + "accountName": "restoredaccount-2310", "apiType": "Sql", - "creationTime": "2023-03-29T04:22:22Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", - "creationTime": "2023-03-29T04:22:23Z", - "deletionTime": "2023-03-30T19:57:43Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", - "creationTime": "2023-03-29T07:29:18Z", - "deletionTime": "2023-04-07T16:42:28Z" + "regionalDatabaseAccountInstanceId": "f9737a8e-afaf-4854-8c7b-f329e07f46f9", + "creationTime": "2023-04-20T18:58:17Z", + "deletionTime": "2023-04-20T19:08:59Z" } ] } }, { - "name": "2414c009-8022-442c-9ab6-81c276eb2a99", - "location": "Central US", + "name": "f591e4b2-9c04-469d-afe6-a2b193a58e47", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f591e4b2-9c04-469d-afe6-a2b193a58e47", "properties": { - "accountName": "vinh-periodic", + "accountName": "r-database-account-4943", "apiType": "Sql", - "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-20T20:19:57Z", + "deletionTime": "2023-04-20T21:39:27Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", - "creationTime": "2022-06-06T19:53:54Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "92e8f4e6-8eda-4927-b6ac-c1c04818becd", + "creationTime": "2023-04-20T20:19:58Z", + "deletionTime": "2023-04-20T21:39:27Z" } ] } }, { - "name": "5716280d-381e-4045-b936-d0edbfc7317b", - "location": "Central US", + "name": "fe240915-dab9-40fb-8e13-34442caac7ad", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fe240915-dab9-40fb-8e13-34442caac7ad", "properties": { - "accountName": "databaseaccount9284", + "accountName": "restoredaccount-5177", "apiType": "Sql", - "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", - "creationTime": "2022-09-20T05:50:06Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "27017eec-528f-405d-bf07-b58a96de8c58", + "creationTime": "2023-04-20T21:38:36Z", + "deletionTime": "2023-04-20T21:49:42Z" } ] } }, { - "name": "34a9cb27-53a5-4143-9af7-810285110075", - "location": "Central US", + "name": "fc8a93ba-d66c-4139-b534-19b8fa2609fb", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fc8a93ba-d66c-4139-b534-19b8fa2609fb", "properties": { - "accountName": "databaseaccount6234", + "accountName": "r-database-account-8195", "apiType": "Sql", - "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T19:59:26Z", + "deletionTime": "2023-04-21T01:12:17Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", - "creationTime": "2022-09-20T09:04:23Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "2171a2ce-7bd7-4717-bb55-72c70c284d52", + "creationTime": "2023-04-20T19:59:27Z", + "deletionTime": "2023-04-21T01:12:17Z" } ] } }, { - "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "location": "Central US", + "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", "properties": { - "accountName": "databaseaccount8251", + "accountName": "r-database-account-7066", "apiType": "Sql", - "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-19T23:41:57Z", + "deletionTime": "2023-04-21T01:12:23Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", - "creationTime": "2022-09-20T16:29:45Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", + "creationTime": "2023-04-19T23:41:58Z", + "deletionTime": "2023-04-21T01:12:23Z" } ] } }, { - "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", - "location": "Central US", + "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", "properties": { - "accountName": "sql-portal-test", + "accountName": "r-database-account-6809", "apiType": "Sql", - "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-17T19:29:22Z", + "deletionTime": "2023-04-21T01:12:28Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", - "creationTime": "2023-03-08T18:47:23Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", + "creationTime": "2023-04-17T19:29:23Z", + "deletionTime": "2023-04-21T01:12:28Z" } ] } }, { - "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "location": "Central US", + "name": "144aa61f-d16f-4aae-a275-11ef72fb1190", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/144aa61f-d16f-4aae-a275-11ef72fb1190", "properties": { - "accountName": "dsapaliga-xrr-cu", + "accountName": "r-database-account-4142", "apiType": "Sql", - "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-21T06:00:50Z", + "deletionTime": "2023-04-21T07:19:35Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", - "creationTime": "2023-03-30T15:10:47Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", - "creationTime": "2023-03-30T15:13:00Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8db86752-ff62-4c0e-9333-bdefa734e812", + "creationTime": "2023-04-21T06:00:51Z", + "deletionTime": "2023-04-21T07:19:35Z" } ] } }, { - "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", - "location": "West US 2", + "name": "c687e62c-ec09-4efc-9342-23ae350e7740", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c687e62c-ec09-4efc-9342-23ae350e7740", "properties": { - "accountName": "databaseaccount2058", - "apiType": "MongoDB", - "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "restoredaccount-1645", + "apiType": "Sql", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", - "creationTime": "2022-04-14T02:10:49Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "6e66835c-deac-47de-95da-b865c7b0a129", + "creationTime": "2023-04-21T07:19:04Z", + "deletionTime": "2023-04-21T07:30:18Z" } ] } }, { - "name": "fce807d5-4358-4ea1-8130-0439181f6be0", - "location": "West US 2", + "name": "fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fdd8eae7-6bf6-4f30-8e7b-6c3bbe76b9da", "properties": { - "accountName": "vinh-demo-periodic", + "accountName": "r-database-account-2653", "apiType": "Sql", - "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-21T07:42:52Z", + "deletionTime": "2023-04-21T09:02:00Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", - "creationTime": "2022-05-26T04:53:41Z" + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "49d49eef-34f6-4e5e-8adf-82c0fbbf381b", + "creationTime": "2023-04-21T07:42:53Z", + "deletionTime": "2023-04-21T09:02:00Z" } ] } }, { - "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "location": "West US 2", + "name": "59716638-e531-4fc3-b214-f841cd6c1a32", + "location": "West Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/59716638-e531-4fc3-b214-f841cd6c1a32", "properties": { - "accountName": "vinh-demo-continous30", + "accountName": "restoredaccount-4970", "apiType": "Sql", - "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", - "creationTime": "2022-05-26T03:29:42Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "7f2297ad-a930-4a38-aedc-cbe192ccb9eb", + "creationTime": "2023-04-21T09:01:02Z", + "deletionTime": "2023-04-21T09:12:13Z" } ] } }, { - "name": "9177692a-0db9-4c0c-af1d-af0310418b43", - "location": "West US 2", + "name": "d88e6a3c-687d-4990-a516-da739070bf81", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", "properties": { - "accountName": "vinh-demo-continous7", + "accountName": "kal-continuous7", "apiType": "Sql", - "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2022-06-07T20:09:38Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", - "creationTime": "2022-05-26T04:14:50Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", + "creationTime": "2022-06-07T20:09:39Z" } ] } }, { - "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", - "location": "West US 2", + "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", "properties": { - "accountName": "vinh-demo-periodic2", + "accountName": "kal-continuous7-restored1", "apiType": "Sql", - "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2022-06-10T19:23:44Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", - "creationTime": "2022-05-26T18:12:07Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", + "creationTime": "2022-06-10T19:23:44Z" } ] } }, { - "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "location": "West US 2", + "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", "properties": { - "accountName": "vinh-demo-continous7-2", + "accountName": "kal-continuous7-demorestore", "apiType": "Sql", - "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2022-06-10T21:20:46Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", - "creationTime": "2022-05-26T18:05:53Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", + "creationTime": "2022-06-10T21:20:46Z" } ] } }, { - "name": "9484f425-a747-4e73-b8c4-04983e984315", - "location": "West US 2", + "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", "properties": { - "accountName": "clip2dbd2gollbc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "test-billing-continuous30", + "apiType": "Sql", + "creationTime": "2022-07-28T21:54:20Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", + "creationTime": "2022-07-28T21:54:21Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", + "creationTime": "2022-08-31T21:09:14Z" + }, + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", + "creationTime": "2022-08-31T22:24:21Z" } ] } }, { - "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", - "location": "West US 2", + "name": "e84733a9-ee18-456c-b12b-1d37e542608b", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", "properties": { - "accountName": "cli3fpzmlckewgo", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:36:38Z", - "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "new-cosmsosdb-account", + "apiType": "Sql", + "creationTime": "2022-08-31T20:34:40Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", - "creationTime": "2023-04-07T19:36:40Z", - "deletionTime": "2023-04-07T19:56:52Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", + "creationTime": "2022-08-31T20:34:40Z" } ] } }, { - "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", - "location": "West US 2", + "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", + "location": "North Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", "properties": { - "accountName": "cliftacbeowmtnb", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "amisitestpitracc", + "apiType": "Sql", + "creationTime": "2023-03-29T04:22:22Z", + "deletionTime": "2023-04-07T16:42:28Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", + "creationTime": "2023-03-29T04:22:23Z", + "deletionTime": "2023-03-30T19:57:43Z" + }, + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", + "creationTime": "2023-03-29T07:29:18Z", + "deletionTime": "2023-04-07T16:42:28Z" } ] } }, { - "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "location": "West US 2", + "name": "2414c009-8022-442c-9ab6-81c276eb2a99", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", "properties": { - "accountName": "clipofi2jwwbtu4", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:22:17Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "vinh-periodic", + "apiType": "Sql", + "creationTime": "2022-06-06T19:53:54Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", - "creationTime": "2023-04-07T21:22:18Z", - "deletionTime": "2023-04-07T21:42:59Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", + "creationTime": "2022-06-06T19:53:54Z" } ] } }, { - "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", - "location": "West US 2", + "name": "5716280d-381e-4045-b936-d0edbfc7317b", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", "properties": { - "accountName": "cliwq55chmmvzvu", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T13:41:40Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "databaseaccount9284", + "apiType": "Sql", + "creationTime": "2022-09-20T05:50:05Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", - "creationTime": "2023-04-14T13:41:42Z", - "deletionTime": "2023-04-14T14:02:52Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", + "creationTime": "2022-09-20T05:50:06Z" } ] } }, { - "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "location": "West US 2", + "name": "34a9cb27-53a5-4143-9af7-810285110075", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", "properties": { - "accountName": "clixsitnvbfssqd", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "databaseaccount6234", + "apiType": "Sql", + "creationTime": "2022-09-20T09:04:22Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", + "creationTime": "2022-09-20T09:04:23Z" } ] } }, { - "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", - "location": "West US 2", + "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", "properties": { - "accountName": "clinwxgmq26mrzy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T14:50:51Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "databaseaccount8251", + "apiType": "Sql", + "creationTime": "2022-09-20T16:29:44Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", - "creationTime": "2023-04-14T14:50:52Z", - "deletionTime": "2023-04-14T15:10:01Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", + "creationTime": "2022-09-20T16:29:45Z" } ] } }, { - "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", - "location": "West US 2", + "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", "properties": { - "accountName": "clibaor2akp53uy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "accountName": "sql-portal-test", + "apiType": "Sql", + "creationTime": "2023-03-08T18:47:23Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", + "creationTime": "2023-03-08T18:47:23Z" } ] } }, { - "name": "40dbd153-3d36-42b7-8649-48e6307849f9", - "location": "East US 2", + "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", + "location": "Central US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", "properties": { - "accountName": "cliiumnemwk33v5", + "accountName": "dsapaliga-xrr-cu", "apiType": "Sql", - "creationTime": "2023-04-14T16:48:09Z", - "oldestRestorableTime": "2023-04-14T16:48:09Z", + "creationTime": "2023-03-30T15:10:46Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", - "creationTime": "2023-04-14T16:48:10Z" + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", + "creationTime": "2023-03-30T15:10:47Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", + "creationTime": "2023-03-30T15:13:00Z" } ] } }, { - "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "location": "East US 2", + "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", "properties": { - "accountName": "cli-continuous30-cylyo7wg-restored", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "databaseaccount2058", + "apiType": "MongoDB", + "creationTime": "2022-04-14T02:10:48Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", + "creationTime": "2022-04-14T02:10:49Z" } ] } }, { - "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", - "location": "East US 2", + "name": "fce807d5-4358-4ea1-8130-0439181f6be0", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", "properties": { - "accountName": "cli-continuous30-cylyo7wg", + "accountName": "vinh-demo-periodic", "apiType": "Sql", - "creationTime": "2023-03-24T15:42:44Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2022-05-26T04:53:41Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", - "creationTime": "2023-03-24T15:42:45Z", - "deletionTime": "2023-03-24T16:01:53Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", + "creationTime": "2022-05-26T04:53:41Z" } ] } }, { - "name": "8c9286c5-c880-449c-9030-327de00e36b6", - "location": "East US 2", + "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", "properties": { - "accountName": "cli-continuous30-wuye4s75", + "accountName": "vinh-demo-continous30", "apiType": "Sql", - "creationTime": "2023-03-24T16:04:54Z", - "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2022-05-26T03:29:41Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", - "creationTime": "2023-03-24T16:04:55Z", - "deletionTime": "2023-03-24T16:12:17Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", + "creationTime": "2022-05-26T03:29:42Z" } ] } }, { - "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "location": "East US 2", + "name": "9177692a-0db9-4c0c-af1d-af0310418b43", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", "properties": { - "accountName": "cli-continuous30-qpysbnmc", + "accountName": "vinh-demo-continous7", "apiType": "Sql", - "creationTime": "2023-03-24T16:45:16Z", - "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2022-05-26T04:14:49Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", - "creationTime": "2023-03-24T16:45:17Z", - "deletionTime": "2023-03-24T16:52:22Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", + "creationTime": "2022-05-26T04:14:50Z" } ] } }, { - "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "location": "East US 2", + "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", "properties": { - "accountName": "cli-continuous30-4uv42csa", + "accountName": "vinh-demo-periodic2", "apiType": "Sql", - "creationTime": "2023-03-24T17:01:08Z", - "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2022-05-26T18:12:07Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", - "creationTime": "2023-03-24T17:01:09Z", - "deletionTime": "2023-03-24T17:07:36Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", + "creationTime": "2022-05-26T18:12:07Z" } ] } }, { - "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "location": "East US 2", + "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", "properties": { - "accountName": "cli-continuous30-e6tglvvh", + "accountName": "vinh-demo-continous7-2", "apiType": "Sql", - "creationTime": "2023-03-24T19:18:31Z", - "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2022-05-26T18:05:53Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", - "creationTime": "2023-03-24T19:18:32Z", - "deletionTime": "2023-03-24T19:24:33Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", + "creationTime": "2022-05-26T18:05:53Z" } ] } }, { - "name": "bbc21107-730f-460e-a806-f73643e95a9b", - "location": "East US 2", + "name": "9484f425-a747-4e73-b8c4-04983e984315", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", "properties": { - "accountName": "cli-continuous30-mgbfodqo", - "apiType": "Sql", - "creationTime": "2023-03-29T20:28:56Z", - "deletionTime": "2023-03-29T20:31:58Z", - "oldestRestorableTime": "2023-03-22T20:31:58Z", + "accountName": "clip2dbd2gollbc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", - "creationTime": "2023-03-29T20:28:57Z", - "deletionTime": "2023-03-29T20:31:58Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", + "creationTime": "2023-04-07T19:56:09Z", + "deletionTime": "2023-04-07T19:56:51Z" } ] } }, { - "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "location": "East US 2", + "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", "properties": { - "accountName": "cli-continuous30-pqnqtvrw", - "apiType": "Sql", - "creationTime": "2023-03-29T20:35:21Z", - "deletionTime": "2023-03-29T20:38:56Z", - "oldestRestorableTime": "2023-03-22T20:38:56Z", + "accountName": "cli3fpzmlckewgo", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T19:36:38Z", + "deletionTime": "2023-04-07T19:56:52Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", - "creationTime": "2023-03-29T20:37:50Z", - "deletionTime": "2023-03-29T20:38:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", - "creationTime": "2023-03-29T20:35:22Z", - "deletionTime": "2023-03-29T20:38:56Z" + "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", + "creationTime": "2023-04-07T19:36:40Z", + "deletionTime": "2023-04-07T19:56:52Z" } ] } }, { - "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", - "location": "East US 2", + "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", "properties": { - "accountName": "cli-continuous30-nbcgdudl", - "apiType": "Sql", - "creationTime": "2023-03-29T20:49:15Z", - "deletionTime": "2023-03-29T20:52:54Z", - "oldestRestorableTime": "2023-03-22T20:52:54Z", + "accountName": "cliftacbeowmtnb", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", - "creationTime": "2023-03-29T20:51:44Z", - "deletionTime": "2023-03-29T20:52:54Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", - "creationTime": "2023-03-29T20:49:16Z", - "deletionTime": "2023-03-29T20:52:54Z" + "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", + "creationTime": "2023-04-07T21:41:14Z", + "deletionTime": "2023-04-07T21:42:59Z" } ] } }, { - "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "location": "East US 2", + "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", "properties": { - "accountName": "cli-continuous30-fvguiiqd", - "apiType": "Sql", - "creationTime": "2023-03-29T20:58:03Z", - "deletionTime": "2023-03-29T21:26:03Z", - "oldestRestorableTime": "2023-03-22T21:26:03Z", + "accountName": "clipofi2jwwbtu4", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:22:17Z", + "deletionTime": "2023-04-07T21:42:59Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", - "creationTime": "2023-03-29T21:00:45Z", - "deletionTime": "2023-03-29T21:26:03Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", - "creationTime": "2023-03-29T20:58:04Z", - "deletionTime": "2023-03-29T21:26:03Z" + "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", + "creationTime": "2023-04-07T21:22:18Z", + "deletionTime": "2023-04-07T21:42:59Z" } ] } }, { - "name": "648c8b93-36da-440c-801c-19d18e3b3f21", - "location": "East US 2", + "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", "properties": { - "accountName": "cli-continuous30-of2nmx5u", - "apiType": "Sql", - "creationTime": "2023-03-29T22:12:53Z", - "deletionTime": "2023-03-29T22:16:03Z", - "oldestRestorableTime": "2023-03-22T22:16:03Z", + "accountName": "cliwq55chmmvzvu", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T13:41:40Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", - "creationTime": "2023-03-29T22:12:54Z", - "deletionTime": "2023-03-29T22:16:03Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", + "creationTime": "2023-04-14T13:41:42Z", + "deletionTime": "2023-04-14T14:02:52Z" } ] } }, { - "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "location": "East US 2", + "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", "properties": { - "accountName": "cli-continuous30-guwsy4ak", - "apiType": "Sql", - "creationTime": "2023-03-29T22:43:18Z", - "deletionTime": "2023-03-29T22:48:52Z", - "oldestRestorableTime": "2023-03-22T22:48:52Z", + "accountName": "clixsitnvbfssqd", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", - "creationTime": "2023-03-29T22:45:41Z", - "deletionTime": "2023-03-29T22:48:52Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", - "creationTime": "2023-03-29T22:43:19Z", - "deletionTime": "2023-03-29T22:48:52Z" - } - ] - } + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", + "creationTime": "2023-04-14T14:01:14Z", + "deletionTime": "2023-04-14T14:02:52Z" + } + ] + } }, { - "name": "751f535c-90ad-422c-8791-d85058c83f19", - "location": "East US 2", + "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "clinwxgmq26mrzy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T14:50:51Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", + "creationTime": "2023-04-14T14:50:52Z", + "deletionTime": "2023-04-14T15:10:01Z" } ] } }, { - "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", - "location": "East US 2", + "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", + "location": "West US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h", - "apiType": "Sql", - "creationTime": "2023-04-05T22:25:06Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "clibaor2akp53uy", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", - "creationTime": "2023-04-05T22:25:07Z", - "deletionTime": "2023-04-05T22:47:27Z" + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", + "creationTime": "2023-04-14T15:09:14Z", + "deletionTime": "2023-04-14T15:10:01Z" } ] } }, { - "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", + "name": "40dbd153-3d36-42b7-8649-48e6307849f9", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", "properties": { - "accountName": "cli-systemid-pml7r44tlwdv-restored", + "accountName": "cliiumnemwk33v5", "apiType": "Sql", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-14T16:48:09Z", + "oldestRestorableTime": "2023-04-14T16:48:09Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z" + "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", + "creationTime": "2023-04-14T16:48:10Z" } ] } }, { - "name": "9962f6da-506f-408b-927f-4eb07a12c382", + "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", "properties": { - "accountName": "cli-systemid-pml7r44tlwdv", + "accountName": "cli-continuous30-cylyo7wg-restored", "apiType": "Sql", - "creationTime": "2023-04-07T15:43:38Z", - "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", - "creationTime": "2023-04-07T15:43:39Z", - "deletionTime": "2023-04-07T16:06:55Z" + "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", + "creationTime": "2023-03-24T16:01:18Z", + "deletionTime": "2023-03-24T16:01:53Z" } ] } }, { - "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", + "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", "properties": { - "accountName": "cli-continuous30-5xp42uvg", + "accountName": "cli-continuous30-cylyo7wg", "apiType": "Sql", - "creationTime": "2023-04-07T16:35:15Z", - "deletionTime": "2023-04-07T16:38:01Z", - "oldestRestorableTime": "2023-03-31T16:38:01Z", + "creationTime": "2023-03-24T15:42:44Z", + "deletionTime": "2023-03-24T16:01:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", - "creationTime": "2023-04-07T16:35:16Z", - "deletionTime": "2023-04-07T16:38:01Z" + "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", + "creationTime": "2023-03-24T15:42:45Z", + "deletionTime": "2023-03-24T16:01:53Z" } ] } }, { - "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", + "name": "8c9286c5-c880-449c-9030-327de00e36b6", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", "properties": { - "accountName": "cli-continuous7-kadtogihc", + "accountName": "cli-continuous30-wuye4s75", "apiType": "Sql", - "creationTime": "2023-04-07T16:56:03Z", - "deletionTime": "2023-04-07T16:57:45Z", - "oldestRestorableTime": "2023-03-31T16:56:56Z", + "creationTime": "2023-03-24T16:04:54Z", + "deletionTime": "2023-03-24T16:12:17Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", - "creationTime": "2023-04-07T16:56:04Z", - "deletionTime": "2023-04-07T16:57:45Z" + "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", + "creationTime": "2023-03-24T16:04:55Z", + "deletionTime": "2023-03-24T16:12:17Z" } ] } }, { - "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", + "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", "properties": { - "accountName": "cli-continuous7-ghrp5g2r3", + "accountName": "cli-continuous30-qpysbnmc", "apiType": "Sql", - "creationTime": "2023-04-07T17:01:55Z", - "deletionTime": "2023-04-07T17:04:46Z", - "oldestRestorableTime": "2023-03-31T17:04:46Z", + "creationTime": "2023-03-24T16:45:16Z", + "deletionTime": "2023-03-24T16:52:22Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", - "creationTime": "2023-04-07T17:01:56Z", - "deletionTime": "2023-04-07T17:04:46Z" + "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", + "creationTime": "2023-03-24T16:45:17Z", + "deletionTime": "2023-03-24T16:52:22Z" } ] } }, { - "name": "53c25e9f-44ca-4509-adcd-23802185cba8", + "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", "properties": { - "accountName": "cli-periodic-d6qxquiv72md", + "accountName": "cli-continuous30-4uv42csa", "apiType": "Sql", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z", - "oldestRestorableTime": "2023-04-07T17:18:47Z", + "creationTime": "2023-03-24T17:01:08Z", + "deletionTime": "2023-03-24T17:07:36Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z" + "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", + "creationTime": "2023-03-24T17:01:09Z", + "deletionTime": "2023-03-24T17:07:36Z" } ] } }, { - "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", "properties": { - "accountName": "cliufubmalcsuyb", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-e6tglvvh", + "apiType": "Sql", + "creationTime": "2023-03-24T19:18:31Z", + "deletionTime": "2023-03-24T19:24:33Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z" + "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", + "creationTime": "2023-03-24T19:18:32Z", + "deletionTime": "2023-03-24T19:24:33Z" } ] } }, { - "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", + "name": "bbc21107-730f-460e-a806-f73643e95a9b", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", "properties": { - "accountName": "clitfyptqa45syc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:33:20Z", - "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-mgbfodqo", + "apiType": "Sql", + "creationTime": "2023-03-29T20:28:56Z", + "deletionTime": "2023-03-29T20:31:58Z", + "oldestRestorableTime": "2023-03-22T20:31:58Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", - "creationTime": "2023-04-07T17:33:21Z", - "deletionTime": "2023-04-07T17:52:53Z" + "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", + "creationTime": "2023-03-29T20:28:57Z", + "deletionTime": "2023-03-29T20:31:58Z" } ] } }, { - "name": "329d5785-2f04-451c-a748-f79d0f562ff9", + "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", "properties": { - "accountName": "cliahilffivwqwi", - "apiType": "MongoDB", - "creationTime": "2023-04-07T19:26:23Z", - "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-pqnqtvrw", + "apiType": "Sql", + "creationTime": "2023-03-29T20:35:21Z", + "deletionTime": "2023-03-29T20:38:56Z", + "oldestRestorableTime": "2023-03-22T20:38:56Z", "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", + "creationTime": "2023-03-29T20:37:50Z", + "deletionTime": "2023-03-29T20:38:56Z" + }, { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", - "creationTime": "2023-04-07T19:26:24Z", - "deletionTime": "2023-04-07T19:31:01Z" + "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", + "creationTime": "2023-03-29T20:35:22Z", + "deletionTime": "2023-03-29T20:38:56Z" } ] } }, { - "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", "properties": { - "accountName": "cli5nu6pl77n5ia", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:12:03Z", - "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-nbcgdudl", + "apiType": "Sql", + "creationTime": "2023-03-29T20:49:15Z", + "deletionTime": "2023-03-29T20:52:54Z", + "oldestRestorableTime": "2023-03-22T20:52:54Z", "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", + "creationTime": "2023-03-29T20:51:44Z", + "deletionTime": "2023-03-29T20:52:54Z" + }, { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", - "creationTime": "2023-04-07T20:12:04Z", - "deletionTime": "2023-04-07T20:16:06Z" + "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", + "creationTime": "2023-03-29T20:49:16Z", + "deletionTime": "2023-03-29T20:52:54Z" } ] } }, { - "name": "ced5610b-4422-469f-a9ca-f83235fea285", + "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", "properties": { - "accountName": "clisrkiadnudmcc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:25:32Z", - "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-fvguiiqd", + "apiType": "Sql", + "creationTime": "2023-03-29T20:58:03Z", + "deletionTime": "2023-03-29T21:26:03Z", + "oldestRestorableTime": "2023-03-22T21:26:03Z", "restorableLocations": [ + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", + "creationTime": "2023-03-29T21:00:45Z", + "deletionTime": "2023-03-29T21:26:03Z" + }, { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", - "creationTime": "2023-04-07T20:25:33Z", - "deletionTime": "2023-04-07T20:29:54Z" + "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", + "creationTime": "2023-03-29T20:58:04Z", + "deletionTime": "2023-03-29T21:26:03Z" } ] } }, { - "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "name": "648c8b93-36da-440c-801c-19d18e3b3f21", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", "properties": { - "accountName": "cliypixaxarcyzp", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:36:05Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-of2nmx5u", + "apiType": "Sql", + "creationTime": "2023-03-29T22:12:53Z", + "deletionTime": "2023-03-29T22:16:03Z", + "oldestRestorableTime": "2023-03-22T22:16:03Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", - "creationTime": "2023-04-07T20:36:06Z", - "deletionTime": "2023-04-07T20:56:57Z" + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", + "creationTime": "2023-03-29T22:12:54Z", + "deletionTime": "2023-03-29T22:16:03Z" } ] } }, { - "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", + "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", "properties": { - "accountName": "clilnfxvj3jbdds", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous30-guwsy4ak", + "apiType": "Sql", + "creationTime": "2023-03-29T22:43:18Z", + "deletionTime": "2023-03-29T22:48:52Z", + "oldestRestorableTime": "2023-03-22T22:48:52Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", + "creationTime": "2023-03-29T22:45:41Z", + "deletionTime": "2023-03-29T22:48:52Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", + "creationTime": "2023-03-29T22:43:19Z", + "deletionTime": "2023-03-29T22:48:52Z" } ] } }, { - "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", + "name": "751f535c-90ad-422c-8791-d85058c83f19", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", "properties": { - "accountName": "cliwoaphmlu77h5", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:56:14Z", - "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-systemid-kq6yvu46yp4h-restored", + "apiType": "Sql", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", - "creationTime": "2023-04-07T21:56:15Z", - "deletionTime": "2023-04-07T21:59:20Z" + "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", + "creationTime": "2023-04-05T22:46:48Z", + "deletionTime": "2023-04-05T22:47:27Z" } ] } }, { - "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", "properties": { - "accountName": "clioh53zckfrcxk", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T22:04:54Z", - "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-systemid-kq6yvu46yp4h", + "apiType": "Sql", + "creationTime": "2023-04-05T22:25:06Z", + "deletionTime": "2023-04-05T22:47:27Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", - "creationTime": "2023-04-07T22:04:55Z", - "deletionTime": "2023-04-07T22:09:53Z" + "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", + "creationTime": "2023-04-05T22:25:07Z", + "deletionTime": "2023-04-05T22:47:27Z" } ] } }, { - "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", + "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", "properties": { - "accountName": "cli7cixib236qbg", + "accountName": "cli-systemid-pml7r44tlwdv-restored", "apiType": "Sql", - "creationTime": "2023-04-08T17:25:42Z", - "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", - "creationTime": "2023-04-08T17:25:44Z", - "deletionTime": "2023-04-08T17:29:36Z" + "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", + "creationTime": "2023-04-07T16:05:21Z", + "deletionTime": "2023-04-07T16:06:54Z" } ] } }, { - "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "name": "9962f6da-506f-408b-927f-4eb07a12c382", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", "properties": { - "accountName": "cli-continuous7-hfvk4t4fj", + "accountName": "cli-systemid-pml7r44tlwdv", "apiType": "Sql", - "creationTime": "2023-04-13T14:48:07Z", - "deletionTime": "2023-04-13T14:49:43Z", - "oldestRestorableTime": "2023-04-06T14:49:43Z", + "creationTime": "2023-04-07T15:43:38Z", + "deletionTime": "2023-04-07T16:06:55Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", - "creationTime": "2023-04-13T14:48:08Z", - "deletionTime": "2023-04-13T14:49:43Z" + "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", + "creationTime": "2023-04-07T15:43:39Z", + "deletionTime": "2023-04-07T16:06:55Z" } ] } }, { - "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", + "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", "properties": { - "accountName": "cli-continuous7-zputoz3gu", + "accountName": "cli-continuous30-5xp42uvg", "apiType": "Sql", - "creationTime": "2023-04-14T13:23:19Z", - "deletionTime": "2023-04-14T13:26:29Z", - "oldestRestorableTime": "2023-04-07T13:26:29Z", + "creationTime": "2023-04-07T16:35:15Z", + "deletionTime": "2023-04-07T16:38:01Z", + "oldestRestorableTime": "2023-03-31T16:38:01Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", - "creationTime": "2023-04-14T13:23:20Z", - "deletionTime": "2023-04-14T13:26:29Z" + "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", + "creationTime": "2023-04-07T16:35:16Z", + "deletionTime": "2023-04-07T16:38:01Z" } ] } }, { - "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", "properties": { - "accountName": "cli-continuous7-737ullqld", + "accountName": "cli-continuous7-kadtogihc", "apiType": "Sql", - "creationTime": "2023-04-14T13:36:13Z", - "deletionTime": "2023-04-14T13:38:00Z", - "oldestRestorableTime": "2023-04-07T13:38:00Z", + "creationTime": "2023-04-07T16:56:03Z", + "deletionTime": "2023-04-07T16:57:45Z", + "oldestRestorableTime": "2023-03-31T16:56:56Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", - "creationTime": "2023-04-14T13:36:14Z", - "deletionTime": "2023-04-14T13:38:00Z" + "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", + "creationTime": "2023-04-07T16:56:04Z", + "deletionTime": "2023-04-07T16:57:45Z" } ] } }, { - "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", "properties": { - "accountName": "clidiym44m6kuui", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous7-ghrp5g2r3", + "apiType": "Sql", + "creationTime": "2023-04-07T17:01:55Z", + "deletionTime": "2023-04-07T17:04:46Z", + "oldestRestorableTime": "2023-03-31T17:04:46Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z" + "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", + "creationTime": "2023-04-07T17:01:56Z", + "deletionTime": "2023-04-07T17:04:46Z" } ] } }, { - "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "name": "53c25e9f-44ca-4509-adcd-23802185cba8", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", "properties": { - "accountName": "clifxznjcelc2k7", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:07:29Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-periodic-d6qxquiv72md", + "apiType": "Sql", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z", + "oldestRestorableTime": "2023-04-07T17:18:47Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", - "creationTime": "2023-04-14T14:07:30Z", - "deletionTime": "2023-04-14T14:27:29Z" + "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", + "creationTime": "2023-04-07T17:18:47Z", + "deletionTime": "2023-04-07T17:21:35Z" } ] } }, { - "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", "properties": { - "accountName": "clifdo3gehahcp3", + "accountName": "cliufubmalcsuyb", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:32:21Z", - "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", - "creationTime": "2023-04-14T14:32:22Z", - "deletionTime": "2023-04-14T14:36:53Z" + "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", + "creationTime": "2023-04-07T17:52:17Z", + "deletionTime": "2023-04-07T17:52:51Z" } ] } }, { - "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", "properties": { - "accountName": "clijvrcnqk7clgr", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:39:15Z", - "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "clitfyptqa45syc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T17:33:20Z", + "deletionTime": "2023-04-07T17:52:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", - "creationTime": "2023-04-14T15:39:16Z", - "deletionTime": "2023-04-14T15:59:46Z" + "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", + "creationTime": "2023-04-07T17:33:21Z", + "deletionTime": "2023-04-07T17:52:53Z" } ] } }, { - "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "name": "329d5785-2f04-451c-a748-f79d0f562ff9", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", "properties": { - "accountName": "cliw5rqb5ajsohh", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cliahilffivwqwi", + "apiType": "MongoDB", + "creationTime": "2023-04-07T19:26:23Z", + "deletionTime": "2023-04-07T19:31:01Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z" + "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", + "creationTime": "2023-04-07T19:26:24Z", + "deletionTime": "2023-04-07T19:31:01Z" } ] } }, { - "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", "properties": { - "accountName": "cliz3js7jmkwxxb", - "apiType": "Sql", - "creationTime": "2023-04-14T16:51:53Z", - "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli5nu6pl77n5ia", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:12:03Z", + "deletionTime": "2023-04-07T20:16:06Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", - "creationTime": "2023-04-14T16:51:54Z", - "deletionTime": "2023-04-14T16:55:53Z" + "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", + "creationTime": "2023-04-07T20:12:04Z", + "deletionTime": "2023-04-07T20:16:06Z" } ] } }, { - "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "name": "ced5610b-4422-469f-a9ca-f83235fea285", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", "properties": { - "accountName": "cliamicotk3huk3", - "apiType": "MongoDB", - "creationTime": "2023-04-14T16:59:34Z", - "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "clisrkiadnudmcc", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T20:25:32Z", + "deletionTime": "2023-04-07T20:29:54Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", - "creationTime": "2023-04-14T16:59:35Z", - "deletionTime": "2023-04-14T17:04:35Z" + "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", + "creationTime": "2023-04-07T20:25:33Z", + "deletionTime": "2023-04-07T20:29:54Z" } ] } }, { - "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", "properties": { - "accountName": "cli7fcxogqa75ng", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T17:07:39Z", - "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cliypixaxarcyzp", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T20:36:05Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", - "creationTime": "2023-04-14T17:07:40Z", - "deletionTime": "2023-04-14T17:12:37Z" + "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", + "creationTime": "2023-04-07T20:36:06Z", + "deletionTime": "2023-04-07T20:56:57Z" } ] } }, { - "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", "properties": { - "accountName": "clibijii3gdxu7r", + "accountName": "clilnfxvj3jbdds", "apiType": "Table, Sql", - "creationTime": "2023-04-14T17:16:06Z", - "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", - "creationTime": "2023-04-14T17:16:07Z", - "deletionTime": "2023-04-14T17:19:35Z" + "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", + "creationTime": "2023-04-07T20:54:57Z", + "deletionTime": "2023-04-07T20:56:57Z" } ] } }, { - "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", "properties": { - "accountName": "cli-continuous7-ixtyb5gvo", - "apiType": "Sql", - "creationTime": "2023-04-14T17:21:52Z", - "deletionTime": "2023-04-14T17:23:42Z", - "oldestRestorableTime": "2023-04-07T17:22:55Z", + "accountName": "cliwoaphmlu77h5", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T21:56:14Z", + "deletionTime": "2023-04-07T21:59:20Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", - "creationTime": "2023-04-14T17:21:53Z", - "deletionTime": "2023-04-14T17:23:42Z" + "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", + "creationTime": "2023-04-07T21:56:15Z", + "deletionTime": "2023-04-07T21:59:20Z" } ] } }, { - "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", "properties": { - "accountName": "cli-continuous30-expjec5z", - "apiType": "Sql", - "creationTime": "2023-04-14T17:25:24Z", - "deletionTime": "2023-04-14T17:27:06Z", - "oldestRestorableTime": "2023-04-07T17:27:06Z", + "accountName": "clioh53zckfrcxk", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T22:04:54Z", + "deletionTime": "2023-04-07T22:09:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", - "creationTime": "2023-04-14T17:25:25Z", - "deletionTime": "2023-04-14T17:27:06Z" + "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", + "creationTime": "2023-04-07T22:04:55Z", + "deletionTime": "2023-04-07T22:09:53Z" } ] } }, { - "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", "properties": { - "accountName": "cli-periodic-ppe7oaphbkgu", + "accountName": "cli7cixib236qbg", "apiType": "Sql", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z", - "oldestRestorableTime": "2023-04-14T18:01:21Z", + "creationTime": "2023-04-08T17:25:42Z", + "deletionTime": "2023-04-08T17:29:36Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z" + "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", + "creationTime": "2023-04-08T17:25:44Z", + "deletionTime": "2023-04-08T17:29:36Z" } ] } }, { - "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g-restored", + "accountName": "cli-continuous7-hfvk4t4fj", "apiType": "Sql", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-13T14:48:07Z", + "deletionTime": "2023-04-13T14:49:43Z", + "oldestRestorableTime": "2023-04-06T14:49:43Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z" + "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", + "creationTime": "2023-04-13T14:48:08Z", + "deletionTime": "2023-04-13T14:49:43Z" } ] } }, { - "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g", + "accountName": "cli-continuous7-zputoz3gu", "apiType": "Sql", - "creationTime": "2023-04-14T18:08:00Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-14T13:23:19Z", + "deletionTime": "2023-04-14T13:26:29Z", + "oldestRestorableTime": "2023-04-07T13:26:29Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", - "creationTime": "2023-04-14T18:08:01Z", - "deletionTime": "2023-04-14T18:31:44Z" + "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", + "creationTime": "2023-04-14T13:23:20Z", + "deletionTime": "2023-04-14T13:26:29Z" } ] } }, { - "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", "properties": { - "accountName": "cli7i23nmwwvyik", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T18:36:04Z", - "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "cli-continuous7-737ullqld", + "apiType": "Sql", + "creationTime": "2023-04-14T13:36:13Z", + "deletionTime": "2023-04-14T13:38:00Z", + "oldestRestorableTime": "2023-04-07T13:38:00Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", - "creationTime": "2023-04-14T18:36:05Z", - "deletionTime": "2023-04-14T18:40:37Z" + "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", + "creationTime": "2023-04-14T13:36:14Z", + "deletionTime": "2023-04-14T13:38:00Z" } ] } }, { - "name": "f4004a76-8173-4d36-9590-6090cce37a4d", - "location": "West Europe", + "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", "properties": { - "accountName": "aholdtest", - "apiType": "MongoDB", - "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "clidiym44m6kuui", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West Europe", - "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", - "creationTime": "2021-07-01T19:34:25Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", + "creationTime": "2023-04-14T14:26:49Z", + "deletionTime": "2023-04-14T14:27:29Z" } ] } }, { - "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", - "location": "West US", + "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", "properties": { - "accountName": "targetacct112", - "apiType": "Sql", - "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "clifxznjcelc2k7", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:07:29Z", + "deletionTime": "2023-04-14T14:27:29Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", - "creationTime": "2021-03-01T10:33:41Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", + "creationTime": "2023-04-14T14:07:30Z", + "deletionTime": "2023-04-14T14:27:29Z" } ] } }, { - "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", - "location": "West US", + "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", "properties": { - "accountName": "pitrmongotest", - "apiType": "MongoDB", - "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "clifdo3gehahcp3", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T14:32:21Z", + "deletionTime": "2023-04-14T14:36:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", - "creationTime": "2020-10-01T17:27:23Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", + "creationTime": "2023-04-14T14:32:22Z", + "deletionTime": "2023-04-14T14:36:53Z" } ] } }, { - "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", - "location": "West US", + "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", "properties": { - "accountName": "pitrmongowithsnapshots", - "apiType": "MongoDB", - "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "clijvrcnqk7clgr", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:39:15Z", + "deletionTime": "2023-04-14T15:59:46Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", - "creationTime": "2021-01-07T19:45:07Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", + "creationTime": "2023-04-14T15:39:16Z", + "deletionTime": "2023-04-14T15:59:46Z" } ] } }, { - "name": "36d321ce-5c39-4d66-9347-47beebff1142", - "location": "West US", + "name": "84f8e018-f026-4a8c-94df-a833c68247b4", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", "properties": { - "accountName": "test0319-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "cliw5rqb5ajsohh", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", - "creationTime": "2021-07-07T21:28:13Z" - }, - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", - "creationTime": "2021-07-07T21:28:13Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", + "creationTime": "2023-04-14T15:57:50Z", + "deletionTime": "2023-04-14T15:59:47Z" } ] } }, { - "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "location": "West US", + "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", "properties": { - "accountName": "pitracctdemo2", + "accountName": "cliz3js7jmkwxxb", "apiType": "Sql", - "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2023-04-14T16:51:53Z", + "deletionTime": "2023-04-14T16:55:53Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", - "creationTime": "2020-08-11T02:34:24Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", + "creationTime": "2023-04-14T16:51:54Z", + "deletionTime": "2023-04-14T16:55:53Z" } ] } }, { - "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "location": "West US", + "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", "properties": { - "accountName": "ptr-target", - "apiType": "Sql", - "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "cliamicotk3huk3", + "apiType": "MongoDB", + "creationTime": "2023-04-14T16:59:34Z", + "deletionTime": "2023-04-14T17:04:35Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", - "creationTime": "2021-01-05T22:25:24Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", + "creationTime": "2023-04-14T16:59:35Z", + "deletionTime": "2023-04-14T17:04:35Z" } ] } }, { - "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "location": "West US", + "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", "properties": { - "accountName": "pitrmongotest-restore", - "apiType": "MongoDB", - "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "cli7fcxogqa75ng", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-14T17:07:39Z", + "deletionTime": "2023-04-14T17:12:37Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", - "creationTime": "2020-10-01T21:24:45Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", + "creationTime": "2023-04-14T17:07:40Z", + "deletionTime": "2023-04-14T17:12:37Z" } ] } }, { - "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", - "location": "West US", + "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", "properties": { - "accountName": "pitrdemo1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "clibijii3gdxu7r", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T17:16:06Z", + "deletionTime": "2023-04-14T17:19:35Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", - "creationTime": "2020-10-15T17:29:00Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", + "creationTime": "2023-04-14T17:16:07Z", + "deletionTime": "2023-04-14T17:19:35Z" } ] } }, { - "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "location": "West US", + "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", "properties": { - "accountName": "pitrdemorestored1015", + "accountName": "cli-continuous7-ixtyb5gvo", "apiType": "Sql", - "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2023-04-14T17:21:52Z", + "deletionTime": "2023-04-14T17:23:42Z", + "oldestRestorableTime": "2023-04-07T17:22:55Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", - "creationTime": "2020-10-15T17:37:20Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", + "creationTime": "2023-04-14T17:21:53Z", + "deletionTime": "2023-04-14T17:23:42Z" } ] } }, { - "name": "23e99a35-cd36-4df4-9614-f767a03b9995", - "location": "West US", + "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", "properties": { - "accountName": "subbannageeta", + "accountName": "cli-continuous30-expjec5z", "apiType": "Sql", - "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2023-04-14T17:25:24Z", + "deletionTime": "2023-04-14T17:27:06Z", + "oldestRestorableTime": "2023-04-07T17:27:06Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", - "creationTime": "2020-08-08T01:04:53Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", - "creationTime": "2020-08-08T01:15:44Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", + "creationTime": "2023-04-14T17:25:25Z", + "deletionTime": "2023-04-14T17:27:06Z" } ] } }, { - "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "location": "West US", + "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", "properties": { - "accountName": "scottkirill", + "accountName": "cli-periodic-ppe7oaphbkgu", "apiType": "Sql", - "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z", + "oldestRestorableTime": "2023-04-14T18:01:21Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", - "creationTime": "2021-04-15T17:21:20Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", + "creationTime": "2023-04-14T18:01:21Z", + "deletionTime": "2023-04-14T18:03:46Z" } ] } }, { - "name": "01c9a078-6ca2-43fd-92c7-632167c86590", - "location": "West US", + "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", "properties": { - "accountName": "test0319-pitr-r1", + "accountName": "cli-systemid-ppze3bdfpo3g-restored", "apiType": "Sql", - "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", - "creationTime": "2021-07-07T21:54:07Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", + "creationTime": "2023-04-14T18:30:44Z", + "deletionTime": "2023-04-14T18:31:44Z" } ] } }, { - "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", - "location": "West US", + "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", "properties": { - "accountName": "onboardingtestaccount0124", + "accountName": "cli-systemid-ppze3bdfpo3g", "apiType": "Sql", - "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2023-04-14T18:08:00Z", + "deletionTime": "2023-04-14T18:31:44Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", - "creationTime": "2022-01-24T20:24:44Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", + "creationTime": "2023-04-14T18:08:01Z", + "deletionTime": "2023-04-14T18:31:44Z" } ] } }, { - "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", - "location": "West US", + "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", + "location": "East US 2", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", "properties": { - "accountName": "onboardingtestaccount0124-restored", - "apiType": "Sql", - "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "cli7i23nmwwvyik", + "apiType": "Table, Sql", + "creationTime": "2023-04-14T18:36:04Z", + "deletionTime": "2023-04-14T18:40:37Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", - "creationTime": "2022-01-24T20:48:23Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", + "creationTime": "2023-04-14T18:36:05Z", + "deletionTime": "2023-04-14T18:40:37Z" } ] } }, { - "name": "01652628-d4ef-449d-846e-38e8250f0b9a", - "location": "West US", + "name": "f4004a76-8173-4d36-9590-6090cce37a4d", + "location": "West Europe", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", "properties": { - "accountName": "vinh-table2-restore", - "apiType": "Table, Sql", - "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "aholdtest", + "apiType": "MongoDB", + "creationTime": "2021-07-01T19:34:24Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", - "creationTime": "2022-04-07T00:48:08Z" + "locationName": "West Europe", + "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", + "creationTime": "2021-07-01T19:34:25Z" } ] } }, { - "name": "4b754475-3b23-4485-9205-87ac1661af13", + "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", "properties": { - "accountName": "vinhpitr30-cli", + "accountName": "targetacct112", "apiType": "Sql", - "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2021-03-01T10:33:41Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", - "creationTime": "2022-04-29T23:50:21Z" + "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", + "creationTime": "2021-03-01T10:33:41Z" } ] } }, { - "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", "properties": { - "accountName": "vinhperiodic3-cli", - "apiType": "Sql", - "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "pitrmongotest", + "apiType": "MongoDB", + "creationTime": "2020-10-01T17:27:22Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", - "creationTime": "2022-06-03T17:21:23Z" + "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", + "creationTime": "2020-10-01T17:27:23Z" } ] } }, { - "name": "023add2e-531e-4574-a7df-4d09c97d548d", + "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", "properties": { - "accountName": "vinh-pitr7-portal", - "apiType": "Sql", - "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "pitrmongowithsnapshots", + "apiType": "MongoDB", + "creationTime": "2021-01-07T19:45:07Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", - "creationTime": "2022-05-31T19:24:34Z" + "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", + "creationTime": "2021-01-07T19:45:07Z" } ] } }, { - "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "name": "36d321ce-5c39-4d66-9347-47beebff1142", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7", + "accountName": "test0319-r1", "apiType": "Sql", - "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2021-07-07T21:28:13Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", - "creationTime": "2022-05-31T23:36:11Z" + "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", + "creationTime": "2021-07-07T21:28:13Z" + }, + { + "locationName": "West US 2", + "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", + "creationTime": "2021-07-07T21:28:13Z" } ] } }, { - "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", + "accountName": "pitracctdemo2", "apiType": "Sql", - "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2020-08-11T02:34:23Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", - "creationTime": "2022-06-03T18:42:58Z" + "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", + "creationTime": "2020-08-11T02:34:24Z" } ] } }, { - "name": "3808b68e-7cae-4b91-901b-e29b35b311be", + "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", "properties": { - "accountName": "vinh-periodic-again", + "accountName": "ptr-target", "apiType": "Sql", - "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2021-01-05T22:25:24Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", - "creationTime": "2022-06-10T20:01:48Z" + "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", + "creationTime": "2021-01-05T22:25:24Z" } ] } }, { - "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", "properties": { - "accountName": "vinh-periodic-again2", - "apiType": "Sql", - "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "pitrmongotest-restore", + "apiType": "MongoDB", + "creationTime": "2020-10-01T21:24:45Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", - "creationTime": "2022-06-10T23:57:37Z" + "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", + "creationTime": "2020-10-01T21:24:45Z" } ] } }, { - "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", + "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", "properties": { - "accountName": "vinh-gremlin-again", - "apiType": "Gremlin, Sql", - "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "pitrdemo1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:28:59Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", - "creationTime": "2022-07-28T01:55:28Z" + "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", + "creationTime": "2020-10-15T17:29:00Z" } ] } }, { - "name": "df774a43-6e6f-4725-82d0-67c18c69a906", + "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", "properties": { - "accountName": "vinh-table-tennis-cli-0190", - "apiType": "Table, Sql", - "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "pitrdemorestored1015", + "apiType": "Sql", + "creationTime": "2020-10-15T17:37:20Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", - "creationTime": "2022-08-11T05:19:28Z" + "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", + "creationTime": "2020-10-15T17:37:20Z" } ] } }, { - "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "name": "23e99a35-cd36-4df4-9614-f767a03b9995", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", "properties": { - "accountName": "ddhamothsqlpitracc", + "accountName": "subbannageeta", "apiType": "Sql", - "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2020-08-08T01:04:53Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", - "creationTime": "2022-10-12T07:15:51Z" + "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", + "creationTime": "2020-08-08T01:04:53Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", + "creationTime": "2020-08-08T01:15:44Z" } ] } }, { - "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", "properties": { - "accountName": "ddhamothmongopitracc", - "apiType": "MongoDB", - "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "accountName": "scottkirill", + "apiType": "Sql", + "creationTime": "2021-04-15T17:21:20Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", - "creationTime": "2022-10-12T07:18:55Z" + "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", + "creationTime": "2021-04-15T17:21:20Z" } ] } }, { - "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "name": "01c9a078-6ca2-43fd-92c7-632167c86590", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", "properties": { - "accountName": "dsapaligadbkeytest", + "accountName": "test0319-pitr-r1", "apiType": "Sql", - "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2021-07-07T21:54:07Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", - "creationTime": "2022-10-27T16:53:56Z" + "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", + "creationTime": "2021-07-07T21:54:07Z" } ] } }, { - "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", "properties": { - "accountName": "ddhamothpitrsqlacc2", + "accountName": "onboardingtestaccount0124", "apiType": "Sql", - "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2022-01-24T20:24:43Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", - "creationTime": "2022-11-15T21:30:18Z" + "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", + "creationTime": "2022-01-24T20:24:44Z" } ] } }, { - "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", + "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", "properties": { - "accountName": "vinkumsql", + "accountName": "onboardingtestaccount0124-restored", "apiType": "Sql", - "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2022-01-24T20:48:23Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", - "creationTime": "2022-12-06T19:35:16Z" + "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", + "creationTime": "2022-01-24T20:48:23Z" } ] } }, { - "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "name": "01652628-d4ef-449d-846e-38e8250f0b9a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", "properties": { - "accountName": "dsapaliga-monitor-test2", - "apiType": "Sql", - "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "vinh-table2-restore", + "apiType": "Table, Sql", + "creationTime": "2022-04-07T00:48:08Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", - "creationTime": "2022-12-09T16:57:51Z" + "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", + "creationTime": "2022-04-07T00:48:08Z" } ] } }, { - "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "name": "4b754475-3b23-4485-9205-87ac1661af13", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", "properties": { - "accountName": "nikhiltestmig", + "accountName": "vinhpitr30-cli", "apiType": "Sql", - "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2022-04-29T23:50:20Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", - "creationTime": "2022-12-15T19:23:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", - "creationTime": "2022-12-19T06:05:45Z" + "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", + "creationTime": "2022-04-29T23:50:21Z" } ] } }, { - "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", "properties": { - "accountName": "nikhil-multi-region-pitr", + "accountName": "vinhperiodic3-cli", "apiType": "Sql", - "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2022-06-03T17:21:23Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", - "creationTime": "2022-12-19T06:00:52Z" + "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", + "creationTime": "2022-06-03T17:21:23Z" } ] } }, { - "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "name": "023add2e-531e-4574-a7df-4d09c97d548d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", "properties": { - "accountName": "test-account23", + "accountName": "vinh-pitr7-portal", "apiType": "Sql", - "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2022-05-31T19:24:32Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", - "creationTime": "2022-12-24T18:24:53Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", - "creationTime": "2022-12-24T18:27:11Z" + "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", + "creationTime": "2022-05-31T19:24:34Z" } ] } }, { - "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", "properties": { - "accountName": "testpitr", + "accountName": "vinh-periodic-portal-tobemigrated-to-7", "apiType": "Sql", - "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2022-05-31T23:36:11Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", - "creationTime": "2022-12-27T20:37:02Z" + "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", + "creationTime": "2022-05-31T23:36:11Z" } ] } }, { - "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", + "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", "properties": { - "accountName": "readregionrestore-test", + "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", "apiType": "Sql", - "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2022-06-03T18:42:58Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", - "creationTime": "2023-01-09T23:54:38Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", + "creationTime": "2022-06-03T18:42:58Z" } ] } }, { - "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", + "name": "3808b68e-7cae-4b91-901b-e29b35b311be", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", "properties": { - "accountName": "vinhpitr30-cli-arm-restore", + "accountName": "vinh-periodic-again", "apiType": "Sql", - "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T03:03:01Z", + "creationTime": "2022-06-10T20:01:48Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", - "creationTime": "2023-02-06T21:33:23Z" + "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", + "creationTime": "2022-06-10T20:01:48Z" } ] } }, { - "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", + "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", "properties": { - "accountName": "grem-test", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "vinh-periodic-again2", + "apiType": "Sql", + "creationTime": "2022-06-10T23:57:37Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", - "creationTime": "2023-03-06T19:09:59Z" + "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", + "creationTime": "2022-06-10T23:57:37Z" } ] } }, { - "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", + "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", "properties": { - "accountName": "mongo-test-1", - "apiType": "MongoDB", - "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "vinh-gremlin-again", + "apiType": "Gremlin, Sql", + "creationTime": "2022-07-28T01:55:28Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", - "creationTime": "2023-03-06T19:26:34Z" + "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", + "creationTime": "2022-07-28T01:55:28Z" } ] } }, { - "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", + "name": "df774a43-6e6f-4725-82d0-67c18c69a906", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", "properties": { - "accountName": "sql-test-1", - "apiType": "Sql", - "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "vinh-table-tennis-cli-0190", + "apiType": "Table, Sql", + "creationTime": "2022-08-11T05:19:28Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", - "creationTime": "2023-03-06T19:26:24Z" + "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", + "creationTime": "2022-08-11T05:19:28Z" } ] } }, { - "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", "properties": { - "accountName": "tables-test-1", - "apiType": "Table, Sql", - "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "accountName": "ddhamothsqlpitracc", + "apiType": "Sql", + "creationTime": "2022-10-12T07:15:50Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", - "creationTime": "2023-03-06T19:30:25Z" + "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", + "creationTime": "2022-10-12T07:15:51Z" } ] } }, { - "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:32:50Z", - "oldestRestorableTime": "2023-03-28T14:32:50Z", + "accountName": "ddhamothmongopitracc", + "apiType": "MongoDB", + "creationTime": "2022-10-12T07:18:54Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", - "creationTime": "2023-03-28T14:32:51Z" + "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", + "creationTime": "2022-10-12T07:18:55Z" } ] } }, { - "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "dsapaligadbkeytest", "apiType": "Sql", - "creationTime": "2023-03-28T14:53:31Z", - "oldestRestorableTime": "2023-03-28T14:53:31Z", + "creationTime": "2022-10-27T16:53:54Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", - "creationTime": "2023-03-28T14:53:32Z" + "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", + "creationTime": "2022-10-27T16:53:56Z" } ] } }, { - "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", "properties": { - "accountName": "dsapaliga-xrr-test", + "accountName": "ddhamothpitrsqlacc2", "apiType": "Sql", - "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2022-11-15T21:30:17Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", - "creationTime": "2023-03-30T04:00:58Z" + "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", + "creationTime": "2022-11-15T21:30:18Z" } ] } }, { - "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", "properties": { - "accountName": "dsapaliga-xrr-cli2", + "accountName": "vinkumsql", "apiType": "Sql", - "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T03:03:01Z", + "creationTime": "2022-12-06T19:35:15Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", - "creationTime": "2023-03-30T04:23:36Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", - "creationTime": "2023-03-30T04:25:59Z" + "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", + "creationTime": "2022-12-06T19:35:16Z" } ] } }, { - "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", "properties": { - "accountName": "r-grem-db-account-938", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:55Z", - "oldestRestorableTime": "2023-04-05T19:15:55Z", + "accountName": "dsapaliga-monitor-test2", + "apiType": "Sql", + "creationTime": "2022-12-09T16:57:51Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", - "creationTime": "2023-04-05T19:15:56Z" + "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", + "creationTime": "2022-12-09T16:57:51Z" } ] } }, { - "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", + "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", "properties": { - "accountName": "r-table-account-9379", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:45:49Z", - "oldestRestorableTime": "2023-04-06T01:45:49Z", + "accountName": "nikhiltestmig", + "apiType": "Sql", + "creationTime": "2022-12-15T19:23:56Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", - "creationTime": "2023-04-06T01:45:51Z" + "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", + "creationTime": "2022-12-15T19:23:56Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", + "creationTime": "2022-12-19T06:05:45Z" } ] } }, { - "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", + "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", "properties": { - "accountName": "restoredaccount-5362", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:03:48Z", - "oldestRestorableTime": "2023-04-06T02:03:48Z", + "accountName": "nikhil-multi-region-pitr", + "apiType": "Sql", + "creationTime": "2022-12-19T06:00:50Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", - "creationTime": "2023-04-06T02:03:48Z" + "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", + "creationTime": "2022-12-19T06:00:52Z" } ] } }, { - "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", + "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", "properties": { - "accountName": "r-table-account-5626", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:12:24Z", - "oldestRestorableTime": "2023-04-06T02:12:24Z", + "accountName": "test-account23", + "apiType": "Sql", + "creationTime": "2022-12-24T18:24:52Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", - "creationTime": "2023-04-06T02:12:25Z" + "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", + "creationTime": "2022-12-24T18:24:53Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", + "creationTime": "2022-12-24T18:27:11Z" } ] } }, { - "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", + "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", "properties": { - "accountName": "r-table-account-1300", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:23:30Z", - "oldestRestorableTime": "2023-04-06T06:23:30Z", + "accountName": "testpitr", + "apiType": "Sql", + "creationTime": "2022-12-27T20:37:00Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", - "creationTime": "2023-04-06T06:23:31Z" + "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", + "creationTime": "2022-12-27T20:37:02Z" } ] } }, { - "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", "properties": { - "accountName": "restoredaccount-9934", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:40:38Z", - "oldestRestorableTime": "2023-04-06T06:40:38Z", + "accountName": "readregionrestore-test", + "apiType": "Sql", + "creationTime": "2023-01-09T23:54:38Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", - "creationTime": "2023-04-06T06:40:38Z" + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", + "creationTime": "2023-01-09T23:54:38Z" } ] } }, { - "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", + "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", "properties": { - "accountName": "cli3grog6psgdfn", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T17:59:19Z", - "oldestRestorableTime": "2023-04-06T17:59:19Z", + "accountName": "vinhpitr30-cli-arm-restore", + "apiType": "Sql", + "creationTime": "2023-02-06T21:33:23Z", + "oldestRestorableTime": "2023-03-22T10:34:13Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", - "creationTime": "2023-04-06T17:59:20Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", + "creationTime": "2023-02-06T21:33:23Z" } ] } }, { - "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", "properties": { - "accountName": "clil3ignfqgk6kz", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:02:42Z", - "oldestRestorableTime": "2023-04-06T18:02:42Z", + "accountName": "grem-test", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-06T19:09:58Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", - "creationTime": "2023-04-06T18:02:43Z" - } + "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", + "creationTime": "2023-03-06T19:09:59Z" + } ] } }, { - "name": "4656b731-172b-4064-8514-f327e6841751", + "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", "properties": { - "accountName": "cliysii3c7g3auw", + "accountName": "mongo-test-1", + "apiType": "MongoDB", + "creationTime": "2023-03-06T19:26:33Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", + "creationTime": "2023-03-06T19:26:34Z" + } + ] + } + }, + { + "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", + "properties": { + "accountName": "sql-test-1", "apiType": "Sql", - "creationTime": "2023-04-06T18:00:38Z", - "oldestRestorableTime": "2023-04-06T18:00:38Z", + "creationTime": "2023-03-06T19:26:23Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", - "creationTime": "2023-04-06T18:00:39Z" + "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", + "creationTime": "2023-03-06T19:26:24Z" } ] } }, { - "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", + "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", "properties": { - "accountName": "clihhqescxfepto", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:03:34Z", - "oldestRestorableTime": "2023-04-06T18:03:34Z", + "accountName": "tables-test-1", + "apiType": "Table, Sql", + "creationTime": "2023-03-06T19:30:24Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", - "creationTime": "2023-04-06T18:03:35Z" + "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", + "creationTime": "2023-03-06T19:30:25Z" } ] } }, { - "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", "properties": { - "accountName": "clib27b72hyhtjp", + "accountName": "cosmosdb-1232", "apiType": "Sql", - "creationTime": "2023-04-06T18:02:02Z", - "oldestRestorableTime": "2023-04-06T18:02:02Z", + "creationTime": "2023-03-28T14:32:50Z", + "oldestRestorableTime": "2023-03-28T14:32:50Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", - "creationTime": "2023-04-06T18:02:03Z" + "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", + "creationTime": "2023-03-28T14:32:51Z" } ] } }, { - "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", "properties": { - "accountName": "clio3vmbb3n7afz", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:07:13Z", - "oldestRestorableTime": "2023-04-06T18:07:13Z", + "accountName": "cosmosdb-1231", + "apiType": "Sql", + "creationTime": "2023-03-28T14:53:31Z", + "oldestRestorableTime": "2023-03-28T14:53:31Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", - "creationTime": "2023-04-06T18:07:14Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", + "creationTime": "2023-03-28T14:53:32Z" } ] } }, { - "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", "properties": { - "accountName": "cliuoo2ldjhxpwj", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:04:25Z", - "oldestRestorableTime": "2023-04-06T18:04:25Z", + "accountName": "dsapaliga-xrr-test", + "apiType": "Sql", + "creationTime": "2023-03-30T04:00:57Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", - "creationTime": "2023-04-06T18:04:26Z" + "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", + "creationTime": "2023-03-30T04:00:58Z" } ] } }, { - "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", + "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", "properties": { - "accountName": "clizy6bsjdyjuwo", + "accountName": "dsapaliga-xrr-cli2", "apiType": "Sql", - "creationTime": "2023-04-06T18:03:13Z", - "oldestRestorableTime": "2023-04-06T18:03:13Z", + "creationTime": "2023-03-30T04:23:35Z", + "oldestRestorableTime": "2023-04-14T10:34:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", - "creationTime": "2023-04-06T18:03:14Z" + "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", + "creationTime": "2023-03-30T04:23:36Z" + }, + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", + "creationTime": "2023-03-30T04:25:59Z" } ] } }, { - "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", "properties": { - "accountName": "clizcfq53tcsj7v", + "accountName": "r-grem-db-account-938", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:04:50Z", - "oldestRestorableTime": "2023-04-06T18:04:50Z", + "creationTime": "2023-04-05T19:15:55Z", + "oldestRestorableTime": "2023-04-05T19:15:55Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", - "creationTime": "2023-04-06T18:04:52Z" + "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", + "creationTime": "2023-04-05T19:15:56Z" } ] } }, { - "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", + "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", "properties": { - "accountName": "cli2gdxmqiqo4ik", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:58Z", - "oldestRestorableTime": "2023-04-06T18:02:58Z", + "accountName": "r-table-account-9379", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:45:49Z", + "oldestRestorableTime": "2023-04-06T01:45:49Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", - "creationTime": "2023-04-06T18:02:58Z" + "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", + "creationTime": "2023-04-06T01:45:51Z" } ] } }, { - "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", + "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", "properties": { - "accountName": "cligsqzmjlnuq5j", + "accountName": "restoredaccount-5362", "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:06:34Z", - "oldestRestorableTime": "2023-04-06T18:06:34Z", + "creationTime": "2023-04-06T02:03:48Z", + "oldestRestorableTime": "2023-04-06T02:03:48Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", - "creationTime": "2023-04-06T18:06:35Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", + "creationTime": "2023-04-06T02:03:48Z" } ] } }, { - "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", "properties": { - "accountName": "r-grem-db-account-7826", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:27:30Z", - "oldestRestorableTime": "2023-04-06T18:27:30Z", + "accountName": "r-table-account-5626", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T02:12:24Z", + "oldestRestorableTime": "2023-04-06T02:12:24Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", - "creationTime": "2023-04-06T18:27:31Z" + "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", + "creationTime": "2023-04-06T02:12:25Z" } ] } }, { - "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", + "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", "properties": { - "accountName": "cliec3z5o2473ut", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:31:12Z", - "oldestRestorableTime": "2023-04-06T18:31:12Z", + "accountName": "r-table-account-1300", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:23:30Z", + "oldestRestorableTime": "2023-04-06T06:23:30Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", - "creationTime": "2023-04-06T18:31:13Z" + "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", + "creationTime": "2023-04-06T06:23:31Z" } ] } }, { - "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", + "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", "properties": { - "accountName": "clinrylxz344nf3", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:44Z", - "oldestRestorableTime": "2023-04-06T18:29:44Z", + "accountName": "restoredaccount-9934", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T06:40:38Z", + "oldestRestorableTime": "2023-04-06T06:40:38Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", - "creationTime": "2023-04-06T18:29:45Z" + "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", + "creationTime": "2023-04-06T06:40:38Z" } ] } }, { - "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", + "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", "properties": { - "accountName": "clilaesevwusylf", + "accountName": "cli3grog6psgdfn", "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:34:21Z", - "oldestRestorableTime": "2023-04-06T18:34:21Z", + "creationTime": "2023-04-06T17:59:19Z", + "oldestRestorableTime": "2023-04-06T17:59:19Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", - "creationTime": "2023-04-06T18:34:23Z" + "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", + "creationTime": "2023-04-06T17:59:20Z" } ] } }, { - "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", "properties": { - "accountName": "cli7p3qq5cporx7", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:35Z", - "oldestRestorableTime": "2023-04-06T18:29:35Z", + "accountName": "clil3ignfqgk6kz", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:02:42Z", + "oldestRestorableTime": "2023-04-06T18:02:42Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", - "creationTime": "2023-04-06T18:29:36Z" + "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", + "creationTime": "2023-04-06T18:02:43Z" } ] } }, { - "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", + "name": "4656b731-172b-4064-8514-f327e6841751", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", "properties": { - "accountName": "clij75qd5uyobmj", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:31:13Z", - "oldestRestorableTime": "2023-04-06T18:31:13Z", + "accountName": "cliysii3c7g3auw", + "apiType": "Sql", + "creationTime": "2023-04-06T18:00:38Z", + "oldestRestorableTime": "2023-04-06T18:00:38Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", - "creationTime": "2023-04-06T18:31:14Z" + "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", + "creationTime": "2023-04-06T18:00:39Z" } ] } }, { - "name": "8a7d6175-2174-495f-9147-ade59959d7a1", + "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", "properties": { - "accountName": "r-grem-db-account-5687", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:34:51Z", - "oldestRestorableTime": "2023-04-06T18:34:51Z", + "accountName": "clihhqescxfepto", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:03:34Z", + "oldestRestorableTime": "2023-04-06T18:03:34Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", - "creationTime": "2023-04-06T18:34:52Z" + "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", + "creationTime": "2023-04-06T18:03:35Z" } ] } }, { - "name": "91df614a-d17c-4510-8727-354fe0d1447d", + "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", "properties": { - "accountName": "clivh5sbv5jm2tn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:55Z", - "oldestRestorableTime": "2023-04-06T18:35:55Z", + "accountName": "clib27b72hyhtjp", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:02Z", + "oldestRestorableTime": "2023-04-06T18:02:02Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", - "creationTime": "2023-04-06T18:35:56Z" + "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", + "creationTime": "2023-04-06T18:02:03Z" } ] } }, { - "name": "073071e8-3f6e-4510-9175-440346e61824", + "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", "properties": { - "accountName": "clipmrcd5m37yeh", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:27Z", - "oldestRestorableTime": "2023-04-06T18:34:27Z", + "accountName": "clio3vmbb3n7afz", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:07:13Z", + "oldestRestorableTime": "2023-04-06T18:07:13Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", - "creationTime": "2023-04-06T18:34:28Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", + "creationTime": "2023-04-06T18:07:14Z" } ] } }, { - "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", + "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", "properties": { - "accountName": "clieik2we2gw5zk", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:28Z", - "oldestRestorableTime": "2023-04-06T18:34:28Z", + "accountName": "cliuoo2ldjhxpwj", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:04:25Z", + "oldestRestorableTime": "2023-04-06T18:04:25Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", - "creationTime": "2023-04-06T18:34:29Z" + "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", + "creationTime": "2023-04-06T18:04:26Z" } ] } }, { - "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", + "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", "properties": { - "accountName": "cli24p5gxxip4wp", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:36:07Z", - "oldestRestorableTime": "2023-04-06T18:36:07Z", + "accountName": "clizy6bsjdyjuwo", + "apiType": "Sql", + "creationTime": "2023-04-06T18:03:13Z", + "oldestRestorableTime": "2023-04-06T18:03:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", - "creationTime": "2023-04-06T18:36:08Z" + "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", + "creationTime": "2023-04-06T18:03:14Z" } ] } }, { - "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", "properties": { - "accountName": "cli4nd5tsapqcn4", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:38:50Z", - "oldestRestorableTime": "2023-04-06T18:38:50Z", + "accountName": "clizcfq53tcsj7v", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:04:50Z", + "oldestRestorableTime": "2023-04-06T18:04:50Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", - "creationTime": "2023-04-06T18:38:51Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", + "creationTime": "2023-04-06T18:04:52Z" } ] } }, { - "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", "properties": { - "accountName": "r-database-account-3663", + "accountName": "cli2gdxmqiqo4ik", "apiType": "Sql", - "creationTime": "2023-04-20T03:02:48Z", - "oldestRestorableTime": "2023-04-20T03:02:48Z", + "creationTime": "2023-04-06T18:02:58Z", + "oldestRestorableTime": "2023-04-06T18:02:58Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", - "creationTime": "2023-04-20T03:02:48Z" + "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", + "creationTime": "2023-04-06T18:02:58Z" } ] } }, { - "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", "properties": { - "accountName": "r-database-account-4892", - "apiType": "Sql", - "creationTime": "2023-03-23T10:54:16Z", - "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cligsqzmjlnuq5j", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:06:34Z", + "oldestRestorableTime": "2023-04-06T18:06:34Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", - "creationTime": "2023-03-23T10:54:17Z", - "deletionTime": "2023-03-23T10:54:57Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", + "creationTime": "2023-04-06T18:06:35Z" } ] } }, { - "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", "properties": { - "accountName": "r-database-account-6730", - "apiType": "Sql", - "creationTime": "2023-03-23T11:05:04Z", - "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-7826", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:27:30Z", + "oldestRestorableTime": "2023-04-06T18:27:30Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", - "creationTime": "2023-03-23T11:05:05Z", - "deletionTime": "2023-03-23T11:06:25Z" + "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", + "creationTime": "2023-04-06T18:27:31Z" } ] } }, { - "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", "properties": { - "accountName": "dbaccount-6688", - "apiType": "Sql", - "creationTime": "2023-03-23T11:16:07Z", - "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cliec3z5o2473ut", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:31:12Z", + "oldestRestorableTime": "2023-04-06T18:31:12Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", - "creationTime": "2023-03-23T11:16:08Z", - "deletionTime": "2023-03-23T11:20:59Z" + "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", + "creationTime": "2023-04-06T18:31:13Z" } ] } }, { - "name": "0768f3f1-b168-46b8-bdd2-671139a55152", + "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", "properties": { - "accountName": "dbaccount-1880", + "accountName": "clinrylxz344nf3", "apiType": "Sql", - "creationTime": "2023-03-23T11:22:51Z", - "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:29:44Z", + "oldestRestorableTime": "2023-04-06T18:29:44Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", - "creationTime": "2023-03-23T11:22:52Z", - "deletionTime": "2023-03-23T11:26:46Z" + "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", + "creationTime": "2023-04-06T18:29:45Z" } ] } }, { - "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", + "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clilaesevwusylf", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:34:21Z", + "oldestRestorableTime": "2023-04-06T18:34:21Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", + "creationTime": "2023-04-06T18:34:23Z" } ] } }, { - "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", + "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", "properties": { - "accountName": "cosmosdb-1215", + "accountName": "cli7p3qq5cporx7", "apiType": "Sql", - "creationTime": "2023-03-23T21:16:33Z", - "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:29:35Z", + "oldestRestorableTime": "2023-04-06T18:29:35Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", - "creationTime": "2023-03-23T21:16:34Z", - "deletionTime": "2023-03-23T21:20:17Z" + "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", + "creationTime": "2023-04-06T18:29:36Z" } ] } }, { - "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:08Z", - "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clij75qd5uyobmj", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:31:13Z", + "oldestRestorableTime": "2023-04-06T18:31:13Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", - "creationTime": "2023-03-24T16:01:09Z", - "deletionTime": "2023-03-24T16:04:52Z" + "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", + "creationTime": "2023-04-06T18:31:14Z" } ] } }, { - "name": "151f9fea-5280-4201-8e95-0ea414c89379", + "name": "8a7d6175-2174-495f-9147-ade59959d7a1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:18:09Z", - "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-5687", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:34:51Z", + "oldestRestorableTime": "2023-04-06T18:34:51Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", - "creationTime": "2023-03-24T16:18:10Z", - "deletionTime": "2023-03-24T16:21:49Z" + "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", + "creationTime": "2023-04-06T18:34:52Z" } ] } }, { - "name": "edbde762-f533-4cc9-886a-a2196e203b19", + "name": "91df614a-d17c-4510-8727-354fe0d1447d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:00:54Z", - "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", - "restorableLocations": [ - { + "accountName": "clivh5sbv5jm2tn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T18:35:55Z", + "oldestRestorableTime": "2023-04-06T18:35:55Z", + "restorableLocations": [ + { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", - "creationTime": "2023-03-24T17:00:55Z", - "deletionTime": "2023-03-24T17:03:11Z" + "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", + "creationTime": "2023-04-06T18:35:56Z" } ] } }, { - "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", + "name": "073071e8-3f6e-4510-9175-440346e61824", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", "properties": { - "accountName": "cosmosdb-1216", + "accountName": "clipmrcd5m37yeh", "apiType": "Sql", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:34:27Z", + "oldestRestorableTime": "2023-04-06T18:34:27Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z" + "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", + "creationTime": "2023-04-06T18:34:28Z" } ] } }, { - "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", + "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", "properties": { - "accountName": "cosmosdb-1215", + "accountName": "clieik2we2gw5zk", "apiType": "Sql", - "creationTime": "2023-03-24T18:51:09Z", - "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:34:28Z", + "oldestRestorableTime": "2023-04-06T18:34:28Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", - "creationTime": "2023-03-24T18:51:10Z", - "deletionTime": "2023-03-24T18:51:31Z" + "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", + "creationTime": "2023-04-06T18:34:29Z" } ] } }, { - "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T19:00:50Z", - "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cli24p5gxxip4wp", + "apiType": "MongoDB", + "creationTime": "2023-04-06T18:36:07Z", + "oldestRestorableTime": "2023-04-06T18:36:07Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", - "creationTime": "2023-03-24T19:00:51Z", - "deletionTime": "2023-03-24T19:15:40Z" + "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", + "creationTime": "2023-04-06T18:36:08Z" } ] } }, { - "name": "219254b8-6f3a-466e-b360-95f262bfe51e", + "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", "properties": { - "accountName": "cosmosdb-1217", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:09Z", - "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cli4nd5tsapqcn4", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T18:38:50Z", + "oldestRestorableTime": "2023-04-06T18:38:50Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", - "creationTime": "2023-03-24T19:18:10Z", - "deletionTime": "2023-03-24T19:20:56Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", + "creationTime": "2023-04-06T18:38:51Z" } ] } }, { - "name": "e888bd61-957a-4028-af47-b834b0a267ab", + "name": "e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-848", "apiType": "Sql", - "creationTime": "2023-03-24T19:34:54Z", - "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-21T01:16:43Z", + "oldestRestorableTime": "2023-04-21T01:16:43Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", - "creationTime": "2023-03-24T19:34:55Z", - "deletionTime": "2023-03-24T19:50:50Z" + "regionalDatabaseAccountInstanceId": "65cc97fd-c609-4c1f-b1b3-f4aa18afb791", + "creationTime": "2023-04-21T01:16:44Z" } ] } }, { - "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "name": "47575ff7-4efb-4430-a90c-e9bce7766753", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753", "properties": { - "accountName": "restored2-cosmosdb-1210-5", + "accountName": "r-database-account-5886", "apiType": "Sql", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-21T05:49:21Z", + "oldestRestorableTime": "2023-04-21T05:49:21Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z" + "regionalDatabaseAccountInstanceId": "0c58830e-7439-43f5-90a0-29eef674e0b8", + "creationTime": "2023-04-21T05:49:22Z" } ] } }, { - "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "name": "22172c01-16ea-46c3-87fb-5c261b8068db", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/22172c01-16ea-46c3-87fb-5c261b8068db", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-9615", "apiType": "Sql", - "creationTime": "2023-03-24T20:32:49Z", - "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-21T10:33:40Z", + "oldestRestorableTime": "2023-04-21T10:33:40Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", - "creationTime": "2023-03-24T20:32:50Z", - "deletionTime": "2023-03-24T20:50:46Z" + "regionalDatabaseAccountInstanceId": "ae18556a-d79c-4d3c-8485-1e1824e3bb7a", + "creationTime": "2023-04-21T10:33:41Z" } ] } }, { - "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-4892", "apiType": "Sql", - "creationTime": "2023-03-25T16:11:27Z", - "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-23T10:54:16Z", + "deletionTime": "2023-03-23T10:54:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", - "creationTime": "2023-03-25T16:11:28Z", - "deletionTime": "2023-03-25T16:23:23Z" + "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", + "creationTime": "2023-03-23T10:54:17Z", + "deletionTime": "2023-03-23T10:54:57Z" } ] } }, { - "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", + "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "r-database-account-6730", "apiType": "Sql", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-23T11:05:04Z", + "deletionTime": "2023-03-23T11:06:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z" + "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", + "creationTime": "2023-03-23T11:05:05Z", + "deletionTime": "2023-03-23T11:06:25Z" } ] } }, { - "name": "2533e0b0-a675-441d-9b41-147c66cb8834", + "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "dbaccount-6688", "apiType": "Sql", - "creationTime": "2023-03-26T16:03:42Z", - "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-23T11:16:07Z", + "deletionTime": "2023-03-23T11:20:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", - "creationTime": "2023-03-26T16:03:43Z", - "deletionTime": "2023-03-26T16:15:36Z" + "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", + "creationTime": "2023-03-23T11:16:08Z", + "deletionTime": "2023-03-23T11:20:59Z" } ] } }, { - "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", + "name": "0768f3f1-b168-46b8-bdd2-671139a55152", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "dbaccount-1880", "apiType": "Sql", - "creationTime": "2023-03-27T03:23:23Z", - "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-23T11:22:51Z", + "deletionTime": "2023-03-23T11:26:46Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", - "creationTime": "2023-03-27T03:23:24Z", - "deletionTime": "2023-03-27T03:41:45Z" + "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", + "creationTime": "2023-03-23T11:22:52Z", + "deletionTime": "2023-03-23T11:26:46Z" } ] } }, { - "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", + "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", "properties": { - "accountName": "grem-test-72", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cosmosdb-1215", + "apiType": "Sql", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z" + "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", + "creationTime": "2023-03-23T18:28:48Z", + "deletionTime": "2023-03-23T18:31:37Z" } ] } }, { - "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T02:19:03Z", - "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-23T21:16:33Z", + "deletionTime": "2023-03-23T21:20:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", - "creationTime": "2023-03-28T02:19:04Z", - "deletionTime": "2023-03-28T02:22:53Z" + "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", + "creationTime": "2023-03-23T21:16:34Z", + "deletionTime": "2023-03-23T21:20:17Z" } ] } }, { - "name": "a9481019-401b-431b-b5f7-440ec8798dfd", + "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T03:39:15Z", - "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T16:01:08Z", + "deletionTime": "2023-03-24T16:04:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", - "creationTime": "2023-03-28T03:39:16Z", - "deletionTime": "2023-03-28T03:42:12Z" + "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", + "creationTime": "2023-03-24T16:01:09Z", + "deletionTime": "2023-03-24T16:04:52Z" } ] } }, { - "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", + "name": "151f9fea-5280-4201-8e95-0ea414c89379", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T13:58:50Z", - "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T16:18:09Z", + "deletionTime": "2023-03-24T16:21:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", - "creationTime": "2023-03-28T13:58:51Z", - "deletionTime": "2023-03-28T13:59:37Z" + "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", + "creationTime": "2023-03-24T16:18:10Z", + "deletionTime": "2023-03-24T16:21:49Z" } ] } }, { - "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "name": "edbde762-f533-4cc9-886a-a2196e203b19", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", "properties": { - "accountName": "cosmosdb-1232", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-28T14:10:51Z", - "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T17:00:54Z", + "deletionTime": "2023-03-24T17:03:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", - "creationTime": "2023-03-28T14:10:52Z", - "deletionTime": "2023-03-28T14:13:58Z" + "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", + "creationTime": "2023-03-24T17:00:55Z", + "deletionTime": "2023-03-24T17:03:11Z" } ] } }, { - "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", + "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", "properties": { - "accountName": "cosmosdb-1233", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-28T14:25:17Z", - "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", - "restorableLocations": [ + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", - "creationTime": "2023-03-28T14:25:18Z", - "deletionTime": "2023-03-28T14:28:04Z" + "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", + "creationTime": "2023-03-24T17:17:36Z", + "deletionTime": "2023-03-24T17:20:51Z" } ] } }, { - "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", "properties": { - "accountName": "cosmosdb-1231", + "accountName": "cosmosdb-1215", "apiType": "Sql", - "creationTime": "2023-03-28T14:35:15Z", - "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T18:51:09Z", + "deletionTime": "2023-03-24T18:51:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", - "creationTime": "2023-03-28T14:35:16Z", - "deletionTime": "2023-03-28T14:39:43Z" + "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", + "creationTime": "2023-03-24T18:51:10Z", + "deletionTime": "2023-03-24T18:51:31Z" } ] } }, { - "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", "properties": { - "accountName": "cosmosdb-1234", + "accountName": "cosmosdb-1216", "apiType": "Sql", - "creationTime": "2023-03-28T14:54:34Z", - "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T19:00:50Z", + "deletionTime": "2023-03-24T19:15:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", - "creationTime": "2023-03-28T14:54:35Z", - "deletionTime": "2023-03-28T14:58:59Z" + "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", + "creationTime": "2023-03-24T19:00:51Z", + "deletionTime": "2023-03-24T19:15:40Z" } ] } }, { - "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "name": "219254b8-6f3a-466e-b360-95f262bfe51e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", "properties": { - "accountName": "cosmosdb-12103", + "accountName": "cosmosdb-1217", "apiType": "Sql", - "creationTime": "2023-03-28T15:09:04Z", - "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T19:18:09Z", + "deletionTime": "2023-03-24T19:20:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", - "creationTime": "2023-03-28T15:09:05Z", - "deletionTime": "2023-03-28T15:27:39Z" + "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", + "creationTime": "2023-03-24T19:18:10Z", + "deletionTime": "2023-03-24T19:20:56Z" } ] } }, { - "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "name": "e888bd61-957a-4028-af47-b834b0a267ab", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", "properties": { - "accountName": "restored2-cosmosdb-12103-3", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T19:34:54Z", + "deletionTime": "2023-03-24T19:50:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z" + "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", + "creationTime": "2023-03-24T19:34:55Z", + "deletionTime": "2023-03-24T19:50:50Z" } ] } }, { - "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", + "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", "properties": { - "accountName": "cosmosdb-12104", + "accountName": "restored2-cosmosdb-1210-5", "apiType": "Sql", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", - "creationTime": "2023-03-28T15:34:43Z", - "deletionTime": "2023-03-28T15:39:16Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z" + "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", + "creationTime": "2023-03-24T19:49:54Z", + "deletionTime": "2023-03-24T19:50:51Z" } ] } }, { - "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", "properties": { - "accountName": "r-database-account-9490", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-28T22:16:00Z", - "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-24T20:32:49Z", + "deletionTime": "2023-03-24T20:50:46Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", - "creationTime": "2023-03-28T22:16:01Z", - "deletionTime": "2023-03-28T22:16:48Z" + "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", + "creationTime": "2023-03-24T20:32:50Z", + "deletionTime": "2023-03-24T20:50:46Z" } ] } }, { - "name": "03ad66ba-329b-42a9-a663-7175c237d696", + "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", "properties": { - "accountName": "r-database-account-5060", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T01:52:39Z", - "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-25T16:11:27Z", + "deletionTime": "2023-03-25T16:23:23Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", - "creationTime": "2023-03-29T01:52:40Z", - "deletionTime": "2023-03-29T01:53:32Z" + "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", + "creationTime": "2023-03-25T16:11:28Z", + "deletionTime": "2023-03-25T16:23:23Z" } ] } }, { - "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", "properties": { - "accountName": "r-database-account-8615", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z" + "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", + "creationTime": "2023-03-25T16:42:51Z", + "deletionTime": "2023-03-26T14:50:09Z" } ] } }, { - "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", + "name": "2533e0b0-a675-441d-9b41-147c66cb8834", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", "properties": { - "accountName": "r-database-account-6456", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T02:33:02Z", - "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-26T16:03:42Z", + "deletionTime": "2023-03-26T16:15:36Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", - "creationTime": "2023-03-29T02:33:03Z", - "deletionTime": "2023-03-29T02:34:43Z" + "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", + "creationTime": "2023-03-26T16:03:43Z", + "deletionTime": "2023-03-26T16:15:36Z" } ] } }, { - "name": "835d93a1-22dd-478a-b58d-426efe281471", + "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", "properties": { - "accountName": "r-database-account-4855", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T02:47:00Z", - "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-27T03:23:23Z", + "deletionTime": "2023-03-27T03:41:45Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", - "creationTime": "2023-03-29T02:47:01Z", - "deletionTime": "2023-03-29T02:49:00Z" + "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", + "creationTime": "2023-03-27T03:23:24Z", + "deletionTime": "2023-03-27T03:41:45Z" } ] } }, { - "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", "properties": { - "accountName": "r-database-account-84", - "apiType": "Sql", - "creationTime": "2023-03-29T03:26:20Z", - "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "grem-test-72", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", - "creationTime": "2023-03-29T03:26:21Z", - "deletionTime": "2023-03-29T03:28:03Z" + "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", + "creationTime": "2023-03-17T18:46:10Z", + "deletionTime": "2023-03-27T17:30:51Z" } ] } }, { - "name": "745f1b21-405d-46bf-8788-0d661ffbb160", + "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", "properties": { - "accountName": "r-database-account-5060", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T03:40:43Z", - "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T02:19:03Z", + "deletionTime": "2023-03-28T02:22:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", - "creationTime": "2023-03-29T03:40:44Z", - "deletionTime": "2023-03-29T03:42:31Z" + "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", + "creationTime": "2023-03-28T02:19:04Z", + "deletionTime": "2023-03-28T02:22:53Z" } ] } }, { - "name": "454b0097-ad05-4177-9048-93cff3b23e4c", + "name": "a9481019-401b-431b-b5f7-440ec8798dfd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", "properties": { - "accountName": "r-database-account-985", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T04:04:48Z", - "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T03:39:15Z", + "deletionTime": "2023-03-28T03:42:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", - "creationTime": "2023-03-29T04:04:49Z", - "deletionTime": "2023-03-29T04:05:36Z" + "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", + "creationTime": "2023-03-28T03:39:16Z", + "deletionTime": "2023-03-28T03:42:12Z" } ] } }, { - "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", + "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", "properties": { - "accountName": "r-database-account-411", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T04:32:28Z", - "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T13:58:50Z", + "deletionTime": "2023-03-28T13:59:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", - "creationTime": "2023-03-29T04:32:29Z", - "deletionTime": "2023-03-29T04:34:13Z" + "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", + "creationTime": "2023-03-28T13:58:51Z", + "deletionTime": "2023-03-28T13:59:37Z" } ] } }, { - "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", + "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", "properties": { - "accountName": "r-database-account-7460", + "accountName": "cosmosdb-1232", "apiType": "Sql", - "creationTime": "2023-03-29T04:59:34Z", - "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T14:10:51Z", + "deletionTime": "2023-03-28T14:13:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", - "creationTime": "2023-03-29T04:59:35Z", - "deletionTime": "2023-03-29T05:01:02Z" - } - ] + "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", + "creationTime": "2023-03-28T14:10:52Z", + "deletionTime": "2023-03-28T14:13:58Z" + } + ] } }, { - "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", "properties": { - "accountName": "r-database-account-6301", + "accountName": "cosmosdb-1233", "apiType": "Sql", - "creationTime": "2023-03-29T05:27:44Z", - "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T14:25:17Z", + "deletionTime": "2023-03-28T14:28:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", - "creationTime": "2023-03-29T05:27:45Z", - "deletionTime": "2023-03-29T05:29:32Z" + "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", + "creationTime": "2023-03-28T14:25:18Z", + "deletionTime": "2023-03-28T14:28:04Z" } ] } }, { - "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", "properties": { - "accountName": "r-database-account-725", + "accountName": "cosmosdb-1231", "apiType": "Sql", - "creationTime": "2023-03-29T05:51:55Z", - "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T14:35:15Z", + "deletionTime": "2023-03-28T14:39:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", - "creationTime": "2023-03-29T05:51:56Z", - "deletionTime": "2023-03-29T05:53:14Z" + "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", + "creationTime": "2023-03-28T14:35:16Z", + "deletionTime": "2023-03-28T14:39:43Z" } ] } }, { - "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", "properties": { - "accountName": "r-database-account-5868", + "accountName": "cosmosdb-1234", "apiType": "Sql", - "creationTime": "2023-03-29T06:07:55Z", - "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T14:54:34Z", + "deletionTime": "2023-03-28T14:58:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", - "creationTime": "2023-03-29T06:07:56Z", - "deletionTime": "2023-03-29T06:10:43Z" + "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", + "creationTime": "2023-03-28T14:54:35Z", + "deletionTime": "2023-03-28T14:58:59Z" } ] } }, { - "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", "properties": { - "accountName": "r-database-account-6513", + "accountName": "cosmosdb-12103", "apiType": "Sql", - "creationTime": "2023-03-29T06:41:45Z", - "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T15:09:04Z", + "deletionTime": "2023-03-28T15:27:39Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", - "creationTime": "2023-03-29T06:41:46Z", - "deletionTime": "2023-03-29T06:45:18Z" + "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", + "creationTime": "2023-03-28T15:09:05Z", + "deletionTime": "2023-03-28T15:27:39Z" } ] } }, { - "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", "properties": { - "accountName": "r-database-account-79", + "accountName": "restored2-cosmosdb-12103-3", "apiType": "Sql", - "creationTime": "2023-03-29T07:22:12Z", - "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", - "creationTime": "2023-03-29T07:22:13Z", - "deletionTime": "2023-03-29T07:24:10Z" + "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", + "creationTime": "2023-03-28T15:25:43Z", + "deletionTime": "2023-03-28T15:27:40Z" } ] } }, { - "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", "properties": { - "accountName": "r-database-account-766", + "accountName": "cosmosdb-12104", "apiType": "Sql", - "creationTime": "2023-03-29T08:19:11Z", - "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", + "creationTime": "2023-03-28T15:34:43Z", + "deletionTime": "2023-03-28T15:39:16Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", - "creationTime": "2023-03-29T08:19:12Z", - "deletionTime": "2023-03-29T08:20:09Z" + "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", + "creationTime": "2023-03-28T15:32:25Z", + "deletionTime": "2023-03-28T15:39:16Z" } ] } }, { - "name": "fa235396-6959-4dc1-932d-2ac66d318878", + "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", "properties": { - "accountName": "r-database-account-9810", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:33:51Z", - "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9490", + "apiType": "Sql", + "creationTime": "2023-03-28T22:16:00Z", + "deletionTime": "2023-03-28T22:16:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", - "creationTime": "2023-03-29T08:33:53Z", - "deletionTime": "2023-03-29T08:48:10Z" + "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", + "creationTime": "2023-03-28T22:16:01Z", + "deletionTime": "2023-03-28T22:16:48Z" } ] } }, { - "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "name": "03ad66ba-329b-42a9-a663-7175c237d696", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", "properties": { - "accountName": "r-database-account-6103", + "accountName": "r-database-account-5060", "apiType": "Sql", - "creationTime": "2023-03-29T09:01:29Z", - "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T01:52:39Z", + "deletionTime": "2023-03-29T01:53:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", - "creationTime": "2023-03-29T09:01:30Z", - "deletionTime": "2023-03-29T09:13:42Z" + "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", + "creationTime": "2023-03-29T01:52:40Z", + "deletionTime": "2023-03-29T01:53:32Z" } ] } }, { - "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", "properties": { - "accountName": "r-database-account-8066", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:28:36Z", - "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8615", + "apiType": "Sql", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", - "creationTime": "2023-03-29T09:28:37Z", - "deletionTime": "2023-03-29T09:44:31Z" + "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", + "creationTime": "2023-03-29T02:21:49Z", + "deletionTime": "2023-03-29T02:24:17Z" } ] } }, { - "name": "ddab1ead-237f-448e-8291-995fddb1ae74", + "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", "properties": { - "accountName": "r-database-account-7977", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T10:01:55Z", - "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6456", + "apiType": "Sql", + "creationTime": "2023-03-29T02:33:02Z", + "deletionTime": "2023-03-29T02:34:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", - "creationTime": "2023-03-29T10:01:56Z", - "deletionTime": "2023-03-29T10:03:30Z" + "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", + "creationTime": "2023-03-29T02:33:03Z", + "deletionTime": "2023-03-29T02:34:43Z" } ] } }, { - "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "name": "835d93a1-22dd-478a-b58d-426efe281471", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", "properties": { - "accountName": "r-database-account-116", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T10:20:03Z", - "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4855", + "apiType": "Sql", + "creationTime": "2023-03-29T02:47:00Z", + "deletionTime": "2023-03-29T02:49:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", - "creationTime": "2023-03-29T10:20:04Z", - "deletionTime": "2023-03-29T10:21:16Z" + "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", + "creationTime": "2023-03-29T02:47:01Z", + "deletionTime": "2023-03-29T02:49:00Z" } ] } }, { - "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", + "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", "properties": { - "accountName": "restoredaccount-7426", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-84", + "apiType": "Sql", + "creationTime": "2023-03-29T03:26:20Z", + "deletionTime": "2023-03-29T03:28:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z" + "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", + "creationTime": "2023-03-29T03:26:21Z", + "deletionTime": "2023-03-29T03:28:03Z" } ] } }, { - "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "name": "745f1b21-405d-46bf-8788-0d661ffbb160", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", "properties": { - "accountName": "r-database-account-9884", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:16:22Z", - "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5060", + "apiType": "Sql", + "creationTime": "2023-03-29T03:40:43Z", + "deletionTime": "2023-03-29T03:42:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", - "creationTime": "2023-03-29T08:16:23Z", - "deletionTime": "2023-03-29T10:33:43Z" + "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", + "creationTime": "2023-03-29T03:40:44Z", + "deletionTime": "2023-03-29T03:42:31Z" } ] } }, { - "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", + "name": "454b0097-ad05-4177-9048-93cff3b23e4c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", "properties": { - "accountName": "r-database-account-2379", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:28:35Z", - "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-985", + "apiType": "Sql", + "creationTime": "2023-03-29T04:04:48Z", + "deletionTime": "2023-03-29T04:05:36Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", - "creationTime": "2023-03-29T16:28:36Z", - "deletionTime": "2023-03-29T16:44:35Z" + "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", + "creationTime": "2023-03-29T04:04:49Z", + "deletionTime": "2023-03-29T04:05:36Z" } ] } }, { - "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", + "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", "properties": { - "accountName": "r-database-account-3992", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T16:22:41Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-411", + "apiType": "Sql", + "creationTime": "2023-03-29T04:32:28Z", + "deletionTime": "2023-03-29T04:34:13Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", - "creationTime": "2023-03-29T16:22:42Z", - "deletionTime": "2023-03-29T16:57:31Z" + "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", + "creationTime": "2023-03-29T04:32:29Z", + "deletionTime": "2023-03-29T04:34:13Z" } ] } }, { - "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", "properties": { - "accountName": "restoredaccount-232", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7460", + "apiType": "Sql", + "creationTime": "2023-03-29T04:59:34Z", + "deletionTime": "2023-03-29T05:01:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z" + "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", + "creationTime": "2023-03-29T04:59:35Z", + "deletionTime": "2023-03-29T05:01:02Z" } ] } }, { - "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", + "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", "properties": { - "accountName": "r-database-account-1794", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:14:16Z", - "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6301", + "apiType": "Sql", + "creationTime": "2023-03-29T05:27:44Z", + "deletionTime": "2023-03-29T05:29:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", - "creationTime": "2023-03-29T17:14:17Z", - "deletionTime": "2023-03-29T17:15:46Z" + "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", + "creationTime": "2023-03-29T05:27:45Z", + "deletionTime": "2023-03-29T05:29:32Z" } ] } }, { - "name": "8940962c-1866-49f7-871f-38869cce24f7", + "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", "properties": { - "accountName": "r-database-account-7040", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T17:32:14Z", - "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-725", + "apiType": "Sql", + "creationTime": "2023-03-29T05:51:55Z", + "deletionTime": "2023-03-29T05:53:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", - "creationTime": "2023-03-29T17:32:15Z", - "deletionTime": "2023-03-29T17:33:38Z" + "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", + "creationTime": "2023-03-29T05:51:56Z", + "deletionTime": "2023-03-29T05:53:14Z" } ] } }, { - "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", "properties": { - "accountName": "r-database-account-959", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:41:56Z", - "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5868", + "apiType": "Sql", + "creationTime": "2023-03-29T06:07:55Z", + "deletionTime": "2023-03-29T06:10:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", - "creationTime": "2023-03-29T17:41:58Z", - "deletionTime": "2023-03-29T17:42:37Z" + "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", + "creationTime": "2023-03-29T06:07:56Z", + "deletionTime": "2023-03-29T06:10:43Z" } ] } }, { - "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", "properties": { - "accountName": "r-database-account-8612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:51:17Z", - "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6513", + "apiType": "Sql", + "creationTime": "2023-03-29T06:41:45Z", + "deletionTime": "2023-03-29T06:45:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", - "creationTime": "2023-03-29T17:51:18Z", - "deletionTime": "2023-03-29T18:07:55Z" + "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", + "creationTime": "2023-03-29T06:41:46Z", + "deletionTime": "2023-03-29T06:45:18Z" } ] } }, { - "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", + "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", "properties": { - "accountName": "r-database-account-640", + "accountName": "r-database-account-79", "apiType": "Sql", - "creationTime": "2023-03-29T18:21:12Z", - "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T07:22:12Z", + "deletionTime": "2023-03-29T07:24:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", - "creationTime": "2023-03-29T18:21:13Z", - "deletionTime": "2023-03-29T18:37:25Z" + "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", + "creationTime": "2023-03-29T07:22:13Z", + "deletionTime": "2023-03-29T07:24:10Z" } ] } }, { - "name": "ebcdc313-e068-4539-bfc9-63238422f44d", + "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", "properties": { - "accountName": "r-database-account-6103", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:45:36Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-766", + "apiType": "Sql", + "creationTime": "2023-03-29T08:19:11Z", + "deletionTime": "2023-03-29T08:20:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", - "creationTime": "2023-03-29T17:45:37Z", - "deletionTime": "2023-03-29T18:49:19Z" + "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", + "creationTime": "2023-03-29T08:19:12Z", + "deletionTime": "2023-03-29T08:20:09Z" } ] } }, { - "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "name": "fa235396-6959-4dc1-932d-2ac66d318878", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", "properties": { - "accountName": "restoredaccount-9093", + "accountName": "r-database-account-9810", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T08:33:51Z", + "deletionTime": "2023-03-29T08:48:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z" + "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", + "creationTime": "2023-03-29T08:33:53Z", + "deletionTime": "2023-03-29T08:48:10Z" } ] } }, { - "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", "properties": { - "accountName": "restoredaccount-5464", + "accountName": "r-database-account-6103", "apiType": "Sql", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T09:01:29Z", + "deletionTime": "2023-03-29T09:13:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z" + "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", + "creationTime": "2023-03-29T09:01:30Z", + "deletionTime": "2023-03-29T09:13:42Z" } ] } }, { - "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", + "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", "properties": { - "accountName": "r-database-account-582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:55:11Z", - "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8066", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:28:36Z", + "deletionTime": "2023-03-29T09:44:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", - "creationTime": "2023-03-29T18:55:12Z", - "deletionTime": "2023-03-29T18:56:12Z" + "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", + "creationTime": "2023-03-29T09:28:37Z", + "deletionTime": "2023-03-29T09:44:31Z" } ] } }, { - "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "name": "ddab1ead-237f-448e-8291-995fddb1ae74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", "properties": { - "accountName": "r-database-account-7109", + "accountName": "r-database-account-7977", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:11:47Z", - "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T10:01:55Z", + "deletionTime": "2023-03-29T10:03:30Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", - "creationTime": "2023-03-29T19:11:48Z", - "deletionTime": "2023-03-29T19:13:28Z" + "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", + "creationTime": "2023-03-29T10:01:56Z", + "deletionTime": "2023-03-29T10:03:30Z" } ] } }, { - "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", + "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", "properties": { - "accountName": "r-database-account-1862", - "apiType": "Sql", - "creationTime": "2023-03-29T19:27:17Z", - "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-116", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T10:20:03Z", + "deletionTime": "2023-03-29T10:21:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", - "creationTime": "2023-03-29T19:27:18Z", - "deletionTime": "2023-03-29T19:28:11Z" + "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", + "creationTime": "2023-03-29T10:20:04Z", + "deletionTime": "2023-03-29T10:21:16Z" } ] } }, { - "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", + "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", "properties": { - "accountName": "r-database-account-669", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:41:10Z", - "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7426", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", - "creationTime": "2023-03-29T19:41:11Z", - "deletionTime": "2023-03-29T19:42:32Z" + "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", + "creationTime": "2023-03-29T09:43:27Z", + "deletionTime": "2023-03-29T10:33:42Z" } ] } }, { - "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", + "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", "properties": { - "accountName": "r-database-account-8361", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T19:57:31Z", - "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9884", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T08:16:22Z", + "deletionTime": "2023-03-29T10:33:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", - "creationTime": "2023-03-29T19:57:32Z", - "deletionTime": "2023-03-29T19:58:15Z" + "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", + "creationTime": "2023-03-29T08:16:23Z", + "deletionTime": "2023-03-29T10:33:43Z" } ] } }, { - "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", + "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", "properties": { - "accountName": "r-database-account-9", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:12:42Z", - "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2379", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T16:28:35Z", + "deletionTime": "2023-03-29T16:44:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", - "creationTime": "2023-03-29T20:12:43Z", - "deletionTime": "2023-03-29T20:28:47Z" + "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", + "creationTime": "2023-03-29T16:28:36Z", + "deletionTime": "2023-03-29T16:44:35Z" } ] } }, { - "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", "properties": { - "accountName": "r-database-account-7334", - "apiType": "Sql", - "creationTime": "2023-03-29T20:42:13Z", - "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3992", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T16:22:41Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", - "creationTime": "2023-03-29T20:42:14Z", - "deletionTime": "2023-03-29T20:44:52Z" + "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", + "creationTime": "2023-03-29T16:22:42Z", + "deletionTime": "2023-03-29T16:57:31Z" } ] } }, { - "name": "9513098d-df71-4d21-8d95-2fd12d55402e", + "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", "properties": { - "accountName": "r-database-account-4820", + "accountName": "restoredaccount-232", "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:00:04Z", - "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", - "creationTime": "2023-03-29T21:00:05Z", - "deletionTime": "2023-03-29T21:16:44Z" + "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", + "creationTime": "2023-03-29T16:43:40Z", + "deletionTime": "2023-03-29T16:57:31Z" } ] } }, { - "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", "properties": { - "accountName": "r-database-account-2346", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1794", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T17:14:16Z", + "deletionTime": "2023-03-29T17:15:46Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z" + "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", + "creationTime": "2023-03-29T17:14:17Z", + "deletionTime": "2023-03-29T17:15:46Z" } ] } }, { - "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", + "name": "8940962c-1866-49f7-871f-38869cce24f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", "properties": { - "accountName": "restoredaccount-4730", + "accountName": "r-database-account-7040", "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T17:32:14Z", + "deletionTime": "2023-03-29T17:33:38Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z" + "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", + "creationTime": "2023-03-29T17:32:15Z", + "deletionTime": "2023-03-29T17:33:38Z" } ] } }, { - "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", "properties": { - "accountName": "restoredaccount-1173", + "accountName": "r-database-account-959", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T17:41:56Z", + "deletionTime": "2023-03-29T17:42:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z" + "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", + "creationTime": "2023-03-29T17:41:58Z", + "deletionTime": "2023-03-29T17:42:37Z" } ] } }, { - "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", + "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", "properties": { - "accountName": "r-database-account-3981", + "accountName": "r-database-account-8612", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T21:50:14Z", - "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T17:51:17Z", + "deletionTime": "2023-03-29T18:07:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", - "creationTime": "2023-03-29T21:50:15Z", - "deletionTime": "2023-03-29T21:52:00Z" + "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", + "creationTime": "2023-03-29T17:51:18Z", + "deletionTime": "2023-03-29T18:07:55Z" } ] } }, { - "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", "properties": { - "accountName": "r-database-account-6608", + "accountName": "r-database-account-640", "apiType": "Sql", - "creationTime": "2023-03-29T22:05:54Z", - "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T18:21:12Z", + "deletionTime": "2023-03-29T18:37:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", - "creationTime": "2023-03-29T22:05:55Z", - "deletionTime": "2023-03-29T22:06:58Z" + "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", + "creationTime": "2023-03-29T18:21:13Z", + "deletionTime": "2023-03-29T18:37:25Z" } ] } }, { - "name": "d003df48-a9ea-4212-a771-0c539141cd9d", + "name": "ebcdc313-e068-4539-bfc9-63238422f44d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", "properties": { - "accountName": "r-database-account-9561", + "accountName": "r-database-account-6103", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:19:29Z", - "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T17:45:36Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", - "creationTime": "2023-03-29T22:19:30Z", - "deletionTime": "2023-03-29T22:20:23Z" + "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", + "creationTime": "2023-03-29T17:45:37Z", + "deletionTime": "2023-03-29T18:49:19Z" } ] } }, { - "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", + "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", "properties": { - "accountName": "r-database-account-1309", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T22:36:33Z", - "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-9093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", - "creationTime": "2023-03-29T22:36:35Z", - "deletionTime": "2023-03-29T22:37:50Z" + "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", + "creationTime": "2023-03-29T18:07:01Z", + "deletionTime": "2023-03-29T18:49:19Z" } ] } }, { - "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", "properties": { - "accountName": "dsapaliga-restore-test5", + "accountName": "restoredaccount-5464", "apiType": "Sql", - "creationTime": "2023-03-29T21:59:36Z", - "deletionTime": "2023-03-29T22:56:12Z", - "oldestRestorableTime": "2023-03-22T22:56:12Z", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", - "creationTime": "2023-03-29T21:59:38Z", - "deletionTime": "2023-03-29T22:56:12Z" + "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", + "creationTime": "2023-03-29T18:36:52Z", + "deletionTime": "2023-03-29T18:49:20Z" } ] } }, { - "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", + "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", "properties": { - "accountName": "dsapaliga-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z", - "oldestRestorableTime": "2023-03-22T22:56:35Z", + "accountName": "r-database-account-582", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T18:55:11Z", + "deletionTime": "2023-03-29T18:56:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", + "creationTime": "2023-03-29T18:55:12Z", + "deletionTime": "2023-03-29T18:56:12Z" } ] } }, { - "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", "properties": { - "accountName": "dsapaliga-test-restored", - "apiType": "Sql", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z", - "oldestRestorableTime": "2023-03-22T22:57:04Z", + "accountName": "r-database-account-7109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T19:11:47Z", + "deletionTime": "2023-03-29T19:13:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", + "creationTime": "2023-03-29T19:11:48Z", + "deletionTime": "2023-03-29T19:13:28Z" } ] } }, { - "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", "properties": { - "accountName": "dsapaliga-restore-test", + "accountName": "r-database-account-1862", "apiType": "Sql", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z", - "oldestRestorableTime": "2023-03-22T22:57:42Z", + "creationTime": "2023-03-29T19:27:17Z", + "deletionTime": "2023-03-29T19:28:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", - "creationTime": "2023-03-29T19:42:26Z", - "deletionTime": "2023-03-29T22:57:42Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z" + "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", + "creationTime": "2023-03-29T19:27:18Z", + "deletionTime": "2023-03-29T19:28:11Z" } ] } }, { - "name": "52581e9f-9743-4007-9041-e15df28ce4ee", + "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", "properties": { - "accountName": "r-database-account-1604", + "accountName": "r-database-account-669", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:51:34Z", - "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T19:41:10Z", + "deletionTime": "2023-03-29T19:42:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", - "creationTime": "2023-03-29T22:51:35Z", - "deletionTime": "2023-03-29T23:07:58Z" + "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", + "creationTime": "2023-03-29T19:41:11Z", + "deletionTime": "2023-03-29T19:42:32Z" } ] } }, { - "name": "9ab892fe-ad41-4e51-a646-530c226c8772", + "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", "properties": { - "accountName": "r-database-account-39", - "apiType": "Sql", - "creationTime": "2023-03-29T23:21:19Z", - "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8361", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T19:57:31Z", + "deletionTime": "2023-03-29T19:58:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", - "creationTime": "2023-03-29T23:21:20Z", - "deletionTime": "2023-03-29T23:37:29Z" + "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", + "creationTime": "2023-03-29T19:57:32Z", + "deletionTime": "2023-03-29T19:58:15Z" } ] } }, { - "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", "properties": { - "accountName": "r-database-account-6553", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T23:52:19Z", - "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T20:12:42Z", + "deletionTime": "2023-03-29T20:28:47Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", - "creationTime": "2023-03-29T23:52:20Z", - "deletionTime": "2023-03-29T23:54:50Z" + "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", + "creationTime": "2023-03-29T20:12:43Z", + "deletionTime": "2023-03-29T20:28:47Z" } ] } }, { - "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", + "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", "properties": { - "accountName": "r-database-account-8730", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T00:45:13Z", - "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7334", + "apiType": "Sql", + "creationTime": "2023-03-29T20:42:13Z", + "deletionTime": "2023-03-29T20:44:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", - "creationTime": "2023-03-30T00:45:15Z", - "deletionTime": "2023-03-30T00:49:42Z" + "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", + "creationTime": "2023-03-29T20:42:14Z", + "deletionTime": "2023-03-29T20:44:52Z" } ] } }, { - "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "name": "9513098d-df71-4d21-8d95-2fd12d55402e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", "properties": { - "accountName": "r-database-account-2459", - "apiType": "Sql", - "creationTime": "2023-03-30T01:04:05Z", - "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4820", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:00:04Z", + "deletionTime": "2023-03-29T21:16:44Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", - "creationTime": "2023-03-30T01:04:06Z", - "deletionTime": "2023-03-30T01:06:50Z" + "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", + "creationTime": "2023-03-29T21:00:05Z", + "deletionTime": "2023-03-29T21:16:44Z" } ] } }, { - "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", "properties": { - "accountName": "r-database-account-2957", + "accountName": "r-database-account-2346", "apiType": "Table, Sql", - "creationTime": "2023-03-30T01:23:37Z", - "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", - "creationTime": "2023-03-30T01:23:39Z", - "deletionTime": "2023-03-30T01:26:18Z" + "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", + "creationTime": "2023-03-29T21:32:51Z", + "deletionTime": "2023-03-29T21:34:14Z" } ] } }, { - "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", "properties": { - "accountName": "r-database-account-6086", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T01:44:49Z", - "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4730", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", - "creationTime": "2023-03-30T01:44:50Z", - "deletionTime": "2023-03-30T01:54:03Z" + "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", + "creationTime": "2023-03-29T21:15:51Z", + "deletionTime": "2023-03-29T21:45:40Z" } ] } }, { - "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", + "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", "properties": { - "accountName": "r-database-account-9503", + "accountName": "restoredaccount-1173", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:14:47Z", - "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", - "creationTime": "2023-03-30T02:14:48Z", - "deletionTime": "2023-03-30T02:19:28Z" + "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", + "creationTime": "2023-03-29T20:27:59Z", + "deletionTime": "2023-03-29T21:45:41Z" } ] } }, { - "name": "a717fb23-baed-4b80-ab44-bedcce157333", + "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", "properties": { - "accountName": "r-database-account-255", + "accountName": "r-database-account-3981", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:41:09Z", - "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T21:50:14Z", + "deletionTime": "2023-03-29T21:52:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", - "creationTime": "2023-03-30T02:41:10Z", - "deletionTime": "2023-03-30T02:50:27Z" + "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", + "creationTime": "2023-03-29T21:50:15Z", + "deletionTime": "2023-03-29T21:52:00Z" } ] } }, { - "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", "properties": { - "accountName": "cosmosdb-12104", + "accountName": "r-database-account-6608", "apiType": "Sql", - "creationTime": "2023-03-30T03:16:29Z", - "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T22:05:54Z", + "deletionTime": "2023-03-29T22:06:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", - "creationTime": "2023-03-30T03:18:49Z", - "deletionTime": "2023-03-30T03:24:26Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", - "creationTime": "2023-03-30T03:16:30Z", - "deletionTime": "2023-03-30T03:24:26Z" + "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", + "creationTime": "2023-03-29T22:05:55Z", + "deletionTime": "2023-03-29T22:06:58Z" } ] } }, { - "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "name": "d003df48-a9ea-4212-a771-0c539141cd9d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", "properties": { - "accountName": "r-database-account-7398", + "accountName": "r-database-account-9561", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:22:44Z", - "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T22:19:29Z", + "deletionTime": "2023-03-29T22:20:23Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", - "creationTime": "2023-03-30T03:22:45Z", - "deletionTime": "2023-03-30T03:24:34Z" + "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", + "creationTime": "2023-03-29T22:19:30Z", + "deletionTime": "2023-03-29T22:20:23Z" } ] } }, { - "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", "properties": { - "accountName": "r-database-account-2003", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:40:25Z", - "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1309", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T22:36:33Z", + "deletionTime": "2023-03-29T22:37:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", - "creationTime": "2023-03-30T03:40:26Z", - "deletionTime": "2023-03-30T03:41:26Z" + "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", + "creationTime": "2023-03-29T22:36:35Z", + "deletionTime": "2023-03-29T22:37:50Z" } ] } }, { - "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", "properties": { - "accountName": "dsapaliga-rcg-migrationtest", + "accountName": "dsapaliga-restore-test5", "apiType": "Sql", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z", - "oldestRestorableTime": "2023-03-23T03:56:45Z", + "creationTime": "2023-03-29T21:59:36Z", + "deletionTime": "2023-03-29T22:56:12Z", + "oldestRestorableTime": "2023-03-22T22:56:12Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z" + "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", + "creationTime": "2023-03-29T21:59:38Z", + "deletionTime": "2023-03-29T22:56:12Z" } ] } }, { - "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", + "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", "properties": { - "accountName": "r-database-account-3308", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T03:55:54Z", - "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z", + "oldestRestorableTime": "2023-03-22T22:56:35Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", - "creationTime": "2023-03-30T03:55:55Z", - "deletionTime": "2023-03-30T03:56:52Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", + "creationTime": "2023-03-29T20:22:36Z", + "deletionTime": "2023-03-29T22:56:35Z" } ] } }, { - "name": "daf00acd-625e-4dcd-8453-247b297129a3", + "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", "properties": { - "accountName": "dsapaliga-restored-cli-eastus2", + "accountName": "dsapaliga-test-restored", "apiType": "Sql", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z", - "oldestRestorableTime": "2023-03-23T03:57:10Z", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z", + "oldestRestorableTime": "2023-03-22T22:57:04Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z" + "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", + "creationTime": "2023-03-29T20:04:20Z", + "deletionTime": "2023-03-29T22:57:04Z" } ] } }, { - "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", + "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", "properties": { - "accountName": "dsapaliga-xrr-cli", + "accountName": "dsapaliga-restore-test", "apiType": "Sql", - "creationTime": "2023-03-29T23:10:13Z", - "deletionTime": "2023-03-30T03:57:17Z", - "oldestRestorableTime": "2023-03-23T03:57:17Z", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z", + "oldestRestorableTime": "2023-03-22T22:57:42Z", "restorableLocations": [ { "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", - "creationTime": "2023-03-29T23:12:40Z", - "deletionTime": "2023-03-30T03:57:17Z" + "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", + "creationTime": "2023-03-29T19:42:26Z", + "deletionTime": "2023-03-29T22:57:42Z" }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", - "creationTime": "2023-03-29T23:10:14Z", - "deletionTime": "2023-03-30T03:57:17Z" + "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", + "creationTime": "2022-12-08T21:21:36Z", + "deletionTime": "2023-03-29T22:57:42Z" } ] } }, { - "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", + "name": "52581e9f-9743-4007-9041-e15df28ce4ee", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z", - "oldestRestorableTime": "2023-03-23T03:57:27Z", + "accountName": "r-database-account-1604", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-29T22:51:34Z", + "deletionTime": "2023-03-29T23:07:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", + "creationTime": "2023-03-29T22:51:35Z", + "deletionTime": "2023-03-29T23:07:58Z" } ] } }, { - "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", + "name": "9ab892fe-ad41-4e51-a646-530c226c8772", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2rg", + "accountName": "r-database-account-39", "apiType": "Sql", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z", - "oldestRestorableTime": "2023-03-23T03:57:36Z", + "creationTime": "2023-03-29T23:21:19Z", + "deletionTime": "2023-03-29T23:37:29Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", + "creationTime": "2023-03-29T23:21:20Z", + "deletionTime": "2023-03-29T23:37:29Z" } ] } }, { - "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", "properties": { - "accountName": "dsapaliga-xrr-restorefix", - "apiType": "Sql", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z", - "oldestRestorableTime": "2023-03-23T04:15:46Z", + "accountName": "r-database-account-6553", + "apiType": "Table, Sql", + "creationTime": "2023-03-29T23:52:19Z", + "deletionTime": "2023-03-29T23:54:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", - "creationTime": "2023-03-30T03:51:46Z", - "deletionTime": "2023-03-30T04:15:46Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z" + "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", + "creationTime": "2023-03-29T23:52:20Z", + "deletionTime": "2023-03-29T23:54:50Z" } ] } }, { - "name": "2896560d-7c61-44b5-95a3-2e325d44b464", + "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", "properties": { - "accountName": "dsapaliga-xrr", - "apiType": "Sql", - "creationTime": "2023-03-29T23:01:28Z", - "deletionTime": "2023-03-30T04:16:00Z", - "oldestRestorableTime": "2023-03-23T04:16:00Z", + "accountName": "r-database-account-8730", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T00:45:13Z", + "deletionTime": "2023-03-30T00:49:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", - "creationTime": "2023-03-29T23:11:33Z", - "deletionTime": "2023-03-30T04:16:00Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", - "creationTime": "2023-03-29T23:01:29Z", - "deletionTime": "2023-03-30T04:16:00Z" + "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", + "creationTime": "2023-03-30T00:45:15Z", + "deletionTime": "2023-03-30T00:49:42Z" } ] } }, { - "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", + "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", "properties": { - "accountName": "r-database-account-9362", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:14:52Z", - "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2459", + "apiType": "Sql", + "creationTime": "2023-03-30T01:04:05Z", + "deletionTime": "2023-03-30T01:06:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", - "creationTime": "2023-03-30T04:14:53Z", - "deletionTime": "2023-03-30T04:33:19Z" + "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", + "creationTime": "2023-03-30T01:04:06Z", + "deletionTime": "2023-03-30T01:06:50Z" } ] } }, { - "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", + "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", "properties": { - "accountName": "r-database-account-7026", + "accountName": "r-database-account-2957", "apiType": "Table, Sql", - "creationTime": "2023-03-30T04:49:23Z", - "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T01:23:37Z", + "deletionTime": "2023-03-30T01:26:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", - "creationTime": "2023-03-30T04:49:24Z", - "deletionTime": "2023-03-30T05:05:15Z" + "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", + "creationTime": "2023-03-30T01:23:39Z", + "deletionTime": "2023-03-30T01:26:18Z" } ] } }, { - "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", + "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", "properties": { - "accountName": "r-database-account-8518", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:21:59Z", - "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6086", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T01:44:49Z", + "deletionTime": "2023-03-30T01:54:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", - "creationTime": "2023-03-30T05:22:00Z", - "deletionTime": "2023-03-30T05:23:37Z" + "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", + "creationTime": "2023-03-30T01:44:50Z", + "deletionTime": "2023-03-30T01:54:03Z" } ] } }, { - "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", "properties": { - "accountName": "restoredaccount-8613", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9503", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T02:14:47Z", + "deletionTime": "2023-03-30T02:19:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z" + "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", + "creationTime": "2023-03-30T02:14:48Z", + "deletionTime": "2023-03-30T02:19:28Z" } ] } }, { - "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "name": "a717fb23-baed-4b80-ab44-bedcce157333", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", "properties": { - "accountName": "restoredaccount-4321", + "accountName": "r-database-account-255", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T02:41:09Z", + "deletionTime": "2023-03-30T02:50:27Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z" + "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", + "creationTime": "2023-03-30T02:41:10Z", + "deletionTime": "2023-03-30T02:50:27Z" } ] } }, { - "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", "properties": { - "accountName": "r-database-account-9910", + "accountName": "cosmosdb-12104", "apiType": "Sql", - "creationTime": "2023-03-30T05:44:40Z", - "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T03:16:29Z", + "deletionTime": "2023-03-30T03:24:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ + { + "locationName": "Central US", + "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", + "creationTime": "2023-03-30T03:18:49Z", + "deletionTime": "2023-03-30T03:24:26Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", - "creationTime": "2023-03-30T05:44:41Z", - "deletionTime": "2023-03-30T06:00:37Z" + "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", + "creationTime": "2023-03-30T03:16:30Z", + "deletionTime": "2023-03-30T03:24:26Z" } ] } }, { - "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", "properties": { - "accountName": "r-database-account-8895", + "accountName": "r-database-account-7398", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:29:10Z", - "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T03:22:44Z", + "deletionTime": "2023-03-30T03:24:34Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", - "creationTime": "2023-03-30T06:29:12Z", - "deletionTime": "2023-03-30T06:47:25Z" + "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", + "creationTime": "2023-03-30T03:22:45Z", + "deletionTime": "2023-03-30T03:24:34Z" } ] } }, { - "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", "properties": { - "accountName": "restoredaccount-6039", + "accountName": "r-database-account-2003", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T03:40:25Z", + "deletionTime": "2023-03-30T03:41:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z" - } + "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", + "creationTime": "2023-03-30T03:40:26Z", + "deletionTime": "2023-03-30T03:41:26Z" + } ] } }, { - "name": "53b30478-fadc-4af9-bde8-663f3793b182", + "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", "properties": { - "accountName": "r-database-account-6131", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:23:46Z", - "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-rcg-migrationtest", + "apiType": "Sql", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z", + "oldestRestorableTime": "2023-03-23T03:56:45Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", - "creationTime": "2023-03-30T07:23:47Z", - "deletionTime": "2023-03-30T07:39:31Z" + "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", + "creationTime": "2022-11-15T16:10:18Z", + "deletionTime": "2023-03-30T03:56:45Z" } ] } }, { - "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", + "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", "properties": { - "accountName": "r-database-account-5579", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:00:42Z", - "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3308", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T03:55:54Z", + "deletionTime": "2023-03-30T03:56:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", - "creationTime": "2023-03-30T08:00:43Z", - "deletionTime": "2023-03-30T08:02:03Z" + "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", + "creationTime": "2023-03-30T03:55:55Z", + "deletionTime": "2023-03-30T03:56:52Z" } ] } }, { - "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", + "name": "daf00acd-625e-4dcd-8453-247b297129a3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", "properties": { - "accountName": "r-database-account-6802", + "accountName": "dsapaliga-restored-cli-eastus2", "apiType": "Sql", - "creationTime": "2023-03-30T08:15:53Z", - "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z", + "oldestRestorableTime": "2023-03-23T03:57:10Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", - "creationTime": "2023-03-30T08:15:54Z", - "deletionTime": "2023-03-30T08:16:49Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", + "creationTime": "2023-03-29T23:45:38Z", + "deletionTime": "2023-03-30T03:57:10Z" } ] } }, { - "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", + "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", "properties": { - "accountName": "r-database-account-4928", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:29:55Z", - "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-xrr-cli", + "apiType": "Sql", + "creationTime": "2023-03-29T23:10:13Z", + "deletionTime": "2023-03-30T03:57:17Z", + "oldestRestorableTime": "2023-03-23T03:57:17Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", + "creationTime": "2023-03-29T23:12:40Z", + "deletionTime": "2023-03-30T03:57:17Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", - "creationTime": "2023-03-30T08:29:56Z", - "deletionTime": "2023-03-30T08:30:59Z" + "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", + "creationTime": "2023-03-29T23:10:14Z", + "deletionTime": "2023-03-30T03:57:17Z" } ] } }, { - "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", + "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", "properties": { - "accountName": "r-database-account-9554", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T08:45:00Z", - "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-xrr-restored-eastus2", + "apiType": "Sql", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z", + "oldestRestorableTime": "2023-03-23T03:57:27Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", - "creationTime": "2023-03-30T08:45:01Z", - "deletionTime": "2023-03-30T08:46:14Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", + "creationTime": "2023-03-29T23:30:50Z", + "deletionTime": "2023-03-30T03:57:27Z" } ] } }, { - "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", + "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", "properties": { - "accountName": "r-database-account-9311", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:00:35Z", - "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-xrr-restored-eastus2rg", + "apiType": "Sql", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z", + "oldestRestorableTime": "2023-03-23T03:57:36Z", "restorableLocations": [ { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", - "creationTime": "2023-03-30T09:00:36Z", - "deletionTime": "2023-03-30T09:16:50Z" + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", + "creationTime": "2023-03-29T23:48:12Z", + "deletionTime": "2023-03-30T03:57:36Z" } ] } }, { - "name": "521a5d65-de37-47be-88ca-ec32b564a261", + "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", "properties": { - "accountName": "r-database-account-2240", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:32:58Z", - "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "dsapaliga-xrr-restorefix", + "apiType": "Sql", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z", + "oldestRestorableTime": "2023-03-23T04:15:46Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", + "creationTime": "2023-03-30T03:51:46Z", + "deletionTime": "2023-03-30T04:15:46Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", - "creationTime": "2023-03-30T09:32:59Z", - "deletionTime": "2023-03-30T09:51:38Z" + "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", + "creationTime": "2023-03-30T03:32:07Z", + "deletionTime": "2023-03-30T04:15:46Z" } ] } }, { - "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", + "name": "2896560d-7c61-44b5-95a3-2e325d44b464", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", "properties": { - "accountName": "r-database-account-1851", + "accountName": "dsapaliga-xrr", "apiType": "Sql", - "creationTime": "2023-03-30T10:05:27Z", - "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T23:01:28Z", + "deletionTime": "2023-03-30T04:16:00Z", + "oldestRestorableTime": "2023-03-23T04:16:00Z", "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", + "creationTime": "2023-03-29T23:11:33Z", + "deletionTime": "2023-03-30T04:16:00Z" + }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", - "creationTime": "2023-03-30T10:05:28Z", - "deletionTime": "2023-03-30T10:21:42Z" + "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", + "creationTime": "2023-03-29T23:01:29Z", + "deletionTime": "2023-03-30T04:16:00Z" } ] } }, { - "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", + "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", "properties": { - "accountName": "r-database-account-5797", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:37:02Z", - "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9362", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:14:52Z", + "deletionTime": "2023-03-30T04:33:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", - "creationTime": "2023-03-30T10:37:04Z", - "deletionTime": "2023-03-30T10:55:19Z" + "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", + "creationTime": "2023-03-30T04:14:53Z", + "deletionTime": "2023-03-30T04:33:19Z" } ] } }, { - "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", + "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", "properties": { - "accountName": "r-database-account-9560", + "accountName": "r-database-account-7026", "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:11:57Z", - "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T04:49:23Z", + "deletionTime": "2023-03-30T05:05:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", - "creationTime": "2023-03-30T11:11:58Z", - "deletionTime": "2023-03-30T11:25:05Z" + "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", + "creationTime": "2023-03-30T04:49:24Z", + "deletionTime": "2023-03-30T05:05:15Z" } ] } }, { - "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", + "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", "properties": { - "accountName": "r-database-account-1767", + "accountName": "r-database-account-8518", "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:41:56Z", - "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T05:21:59Z", + "deletionTime": "2023-03-30T05:23:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", - "creationTime": "2023-03-30T11:41:57Z", - "deletionTime": "2023-03-30T11:43:33Z" + "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", + "creationTime": "2023-03-30T05:22:00Z", + "deletionTime": "2023-03-30T05:23:37Z" } ] } }, { - "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", "properties": { - "accountName": "restoredaccount-4001", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-8613", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", + "creationTime": "2023-03-30T05:04:25Z", + "deletionTime": "2023-03-30T05:36:03Z" } ] } }, { - "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", "properties": { - "accountName": "restoredaccount-7112", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4321", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", + "creationTime": "2023-03-30T04:32:28Z", + "deletionTime": "2023-03-30T05:36:03Z" } ] } }, { - "name": "0370cb08-0af9-4438-b21f-405a5564b689", + "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", "properties": { - "accountName": "restoredaccount-9834", + "accountName": "r-database-account-9910", "apiType": "Sql", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T05:44:40Z", + "deletionTime": "2023-03-30T06:00:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", + "creationTime": "2023-03-30T05:44:41Z", + "deletionTime": "2023-03-30T06:00:37Z" } ] } }, { - "name": "6c273b23-ae84-4945-b093-d57bca835c7c", + "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", "properties": { - "accountName": "restoredaccount-4009", + "accountName": "r-database-account-8895", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T06:29:10Z", + "deletionTime": "2023-03-30T06:47:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z" + "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", + "creationTime": "2023-03-30T06:29:12Z", + "deletionTime": "2023-03-30T06:47:25Z" } ] } }, { - "name": "17de7698-0393-4b12-ba51-99d12ba83904", + "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", "properties": { - "accountName": "r-database-account-9743", + "accountName": "restoredaccount-6039", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:00:07Z", - "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", - "creationTime": "2023-03-30T12:00:08Z", - "deletionTime": "2023-03-30T12:01:49Z" + "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", + "creationTime": "2023-03-30T06:46:31Z", + "deletionTime": "2023-03-30T06:58:51Z" } ] } }, { - "name": "987831cb-c610-4631-a650-0b6678c31649", + "name": "53b30478-fadc-4af9-bde8-663f3793b182", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", "properties": { - "accountName": "r-database-account-3771", - "apiType": "Sql", - "creationTime": "2023-03-30T12:15:11Z", - "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6131", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T07:23:46Z", + "deletionTime": "2023-03-30T07:39:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", - "creationTime": "2023-03-30T12:15:12Z", - "deletionTime": "2023-03-30T12:15:59Z" + "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", + "creationTime": "2023-03-30T07:23:47Z", + "deletionTime": "2023-03-30T07:39:31Z" } ] } }, { - "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", + "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", "properties": { - "accountName": "r-database-account-3969", + "accountName": "r-database-account-5579", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:29:18Z", - "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T08:00:42Z", + "deletionTime": "2023-03-30T08:02:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", - "creationTime": "2023-03-30T12:29:19Z", - "deletionTime": "2023-03-30T12:30:13Z" + "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", + "creationTime": "2023-03-30T08:00:43Z", + "deletionTime": "2023-03-30T08:02:03Z" } ] } }, { - "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", + "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", "properties": { - "accountName": "r-database-account-7064", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T12:44:53Z", - "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6802", + "apiType": "Sql", + "creationTime": "2023-03-30T08:15:53Z", + "deletionTime": "2023-03-30T08:16:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", - "creationTime": "2023-03-30T12:44:54Z", - "deletionTime": "2023-03-30T12:46:04Z" + "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", + "creationTime": "2023-03-30T08:15:54Z", + "deletionTime": "2023-03-30T08:16:49Z" } ] } }, { - "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", "properties": { - "accountName": "r-database-account-8980", + "accountName": "r-database-account-4928", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:00:40Z", - "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T08:29:55Z", + "deletionTime": "2023-03-30T08:30:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", - "creationTime": "2023-03-30T13:00:41Z", - "deletionTime": "2023-03-30T13:17:11Z" + "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", + "creationTime": "2023-03-30T08:29:56Z", + "deletionTime": "2023-03-30T08:30:59Z" } ] } }, { - "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", "properties": { - "accountName": "r-database-account-2102", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:33:35Z", - "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9554", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T08:45:00Z", + "deletionTime": "2023-03-30T08:46:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", - "creationTime": "2023-03-30T13:33:36Z", - "deletionTime": "2023-03-30T13:51:57Z" + "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", + "creationTime": "2023-03-30T08:45:01Z", + "deletionTime": "2023-03-30T08:46:14Z" } ] } }, { - "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", + "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", "properties": { - "accountName": "r-database-account-6294", - "apiType": "Sql", - "creationTime": "2023-03-30T14:05:48Z", - "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9311", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:00:35Z", + "deletionTime": "2023-03-30T09:16:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", - "creationTime": "2023-03-30T14:05:49Z", - "deletionTime": "2023-03-30T14:21:29Z" + "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", + "creationTime": "2023-03-30T09:00:36Z", + "deletionTime": "2023-03-30T09:16:50Z" } ] } }, { - "name": "86a5260e-5153-431d-8eab-af58b83494af", + "name": "521a5d65-de37-47be-88ca-ec32b564a261", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", "properties": { - "accountName": "r-database-account-2370", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:35:58Z", - "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2240", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:32:58Z", + "deletionTime": "2023-03-30T09:51:38Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", - "creationTime": "2023-03-30T14:35:59Z", - "deletionTime": "2023-03-30T14:54:17Z" + "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", + "creationTime": "2023-03-30T09:32:59Z", + "deletionTime": "2023-03-30T09:51:38Z" } ] } }, { - "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", "properties": { - "accountName": "r-database-account-3273", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:10:49Z", - "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1851", + "apiType": "Sql", + "creationTime": "2023-03-30T10:05:27Z", + "deletionTime": "2023-03-30T10:21:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", - "creationTime": "2023-03-30T15:10:50Z", - "deletionTime": "2023-03-30T15:24:06Z" + "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", + "creationTime": "2023-03-30T10:05:28Z", + "deletionTime": "2023-03-30T10:21:42Z" } ] } }, { - "name": "8246105a-a890-4491-9dd6-7292d01fea88", + "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", "properties": { - "accountName": "r-database-account-3250", + "accountName": "r-database-account-5797", "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:40:22Z", - "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T10:37:02Z", + "deletionTime": "2023-03-30T10:55:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", - "creationTime": "2023-03-30T15:40:23Z", - "deletionTime": "2023-03-30T15:41:57Z" + "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", + "creationTime": "2023-03-30T10:37:04Z", + "deletionTime": "2023-03-30T10:55:19Z" } ] } }, { - "name": "bbf50286-0d85-4979-9c86-63d10090b51a", + "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", "properties": { - "accountName": "restoredaccount-2722", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9560", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:11:57Z", + "deletionTime": "2023-03-30T11:25:05Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z" + "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", + "creationTime": "2023-03-30T11:11:58Z", + "deletionTime": "2023-03-30T11:25:05Z" } ] } }, { - "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", + "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", "properties": { - "accountName": "restoredaccount-4323", - "apiType": "Sql", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1767", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T11:41:56Z", + "deletionTime": "2023-03-30T11:43:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z" + "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", + "creationTime": "2023-03-30T11:41:57Z", + "deletionTime": "2023-03-30T11:43:33Z" } ] } }, { - "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", + "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", "properties": { - "accountName": "restoredaccount-2887", + "accountName": "restoredaccount-4001", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z" + "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", + "creationTime": "2023-03-30T09:50:47Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", "properties": { - "accountName": "restoredaccount-3024", + "accountName": "restoredaccount-7112", "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z" + "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", + "creationTime": "2023-03-30T10:54:29Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "name": "0370cb08-0af9-4438-b21f-405a5564b689", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", "properties": { - "accountName": "r-database-account-4043", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:31:27Z", - "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-9834", + "apiType": "Sql", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", - "creationTime": "2023-03-30T16:31:28Z", - "deletionTime": "2023-03-30T16:47:52Z" + "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", + "creationTime": "2023-03-30T10:21:00Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "name": "6c273b23-ae84-4945-b093-d57bca835c7c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", "properties": { - "accountName": "restoredaccount-7511", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4009", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z" + "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", + "creationTime": "2023-03-30T09:16:05Z", + "deletionTime": "2023-03-30T11:56:33Z" } ] } }, { - "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "name": "17de7698-0393-4b12-ba51-99d12ba83904", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", "properties": { - "accountName": "r-database-account-353", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9743", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:00:07Z", + "deletionTime": "2023-03-30T12:01:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z" + "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", + "creationTime": "2023-03-30T12:00:08Z", + "deletionTime": "2023-03-30T12:01:49Z" } ] } }, { - "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", + "name": "987831cb-c610-4631-a650-0b6678c31649", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", "properties": { - "accountName": "r-database-account-8087", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:24:28Z", - "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3771", + "apiType": "Sql", + "creationTime": "2023-03-30T12:15:11Z", + "deletionTime": "2023-03-30T12:15:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", - "creationTime": "2023-03-30T17:24:29Z", - "deletionTime": "2023-03-30T17:39:50Z" + "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", + "creationTime": "2023-03-30T12:15:12Z", + "deletionTime": "2023-03-30T12:15:59Z" } ] } }, { - "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", "properties": { - "accountName": "restoredaccount-560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T12:29:18Z", + "deletionTime": "2023-03-30T12:30:13Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z" + "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", + "creationTime": "2023-03-30T12:29:19Z", + "deletionTime": "2023-03-30T12:30:13Z" } ] } }, { - "name": "d9e2fd03-4af1-4649-98c3-65f580724594", + "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", "properties": { - "accountName": "r-database-account-7446", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:08:24Z", - "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7064", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T12:44:53Z", + "deletionTime": "2023-03-30T12:46:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", - "creationTime": "2023-03-30T19:08:25Z", - "deletionTime": "2023-03-30T19:10:04Z" + "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", + "creationTime": "2023-03-30T12:44:54Z", + "deletionTime": "2023-03-30T12:46:04Z" } ] } }, { - "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", + "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", "properties": { - "accountName": "r-database-account-8409", + "accountName": "r-database-account-8980", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:30:14Z", - "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T13:00:40Z", + "deletionTime": "2023-03-30T13:17:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", - "creationTime": "2023-03-30T19:30:15Z", - "deletionTime": "2023-03-30T19:46:59Z" + "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", + "creationTime": "2023-03-30T13:00:41Z", + "deletionTime": "2023-03-30T13:17:11Z" } ] } }, { - "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", "properties": { - "accountName": "restoredaccount-9502", + "accountName": "r-database-account-2102", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T13:33:35Z", + "deletionTime": "2023-03-30T13:51:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z" + "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", + "creationTime": "2023-03-30T13:33:36Z", + "deletionTime": "2023-03-30T13:51:57Z" } ] } }, { - "name": "a274527e-da37-49f9-9878-cef9f55b334d", + "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", "properties": { - "accountName": "r-database-account-4548", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:23:16Z", - "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6294", + "apiType": "Sql", + "creationTime": "2023-03-30T14:05:48Z", + "deletionTime": "2023-03-30T14:21:29Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", - "creationTime": "2023-03-30T20:23:17Z", - "deletionTime": "2023-03-30T20:41:33Z" + "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", + "creationTime": "2023-03-30T14:05:49Z", + "deletionTime": "2023-03-30T14:21:29Z" } ] } }, { - "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", + "name": "86a5260e-5153-431d-8eab-af58b83494af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", "properties": { - "accountName": "restoredaccount-3745", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2370", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:35:58Z", + "deletionTime": "2023-03-30T14:54:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z" + "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", + "creationTime": "2023-03-30T14:35:59Z", + "deletionTime": "2023-03-30T14:54:17Z" } ] } }, { - "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", + "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", "properties": { - "accountName": "r-database-account-2582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T21:50:24Z", - "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3273", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:10:49Z", + "deletionTime": "2023-03-30T15:24:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", - "creationTime": "2023-03-30T21:50:27Z", - "deletionTime": "2023-03-30T21:52:04Z" + "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", + "creationTime": "2023-03-30T15:10:50Z", + "deletionTime": "2023-03-30T15:24:06Z" } ] } }, { - "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", + "name": "8246105a-a890-4491-9dd6-7292d01fea88", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", "properties": { - "accountName": "r-database-account-8779", - "apiType": "Sql", - "creationTime": "2023-03-30T22:06:33Z", - "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3250", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T15:40:22Z", + "deletionTime": "2023-03-30T15:41:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", - "creationTime": "2023-03-30T22:06:34Z", - "deletionTime": "2023-03-30T22:07:17Z" + "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", + "creationTime": "2023-03-30T15:40:23Z", + "deletionTime": "2023-03-30T15:41:57Z" } ] } }, { - "name": "38947549-a1bf-4023-bc95-88dcc312797f", + "name": "bbf50286-0d85-4979-9c86-63d10090b51a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", "properties": { - "accountName": "r-database-account-4386", + "accountName": "restoredaccount-2722", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:20:34Z", - "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", - "creationTime": "2023-03-30T22:20:35Z", - "deletionTime": "2023-03-30T22:21:28Z" + "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", + "creationTime": "2023-03-30T13:51:29Z", + "deletionTime": "2023-03-30T15:53:55Z" } ] } }, { - "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", "properties": { - "accountName": "r-database-account-3583", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T22:35:57Z", - "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4323", + "apiType": "Sql", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", - "creationTime": "2023-03-30T22:35:58Z", - "deletionTime": "2023-03-30T22:36:47Z" + "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", + "creationTime": "2023-03-30T14:20:50Z", + "deletionTime": "2023-03-30T15:53:55Z" } ] } }, { - "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", "properties": { - "accountName": "r-database-account-5053", + "accountName": "restoredaccount-2887", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:51:37Z", - "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", - "creationTime": "2023-03-30T22:51:38Z", - "deletionTime": "2023-03-30T23:05:43Z" + "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", + "creationTime": "2023-03-30T13:16:48Z", + "deletionTime": "2023-03-30T15:53:56Z" } ] } }, { - "name": "17692a3a-23c6-428d-a13a-94657bdea47a", + "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", "properties": { - "accountName": "r-database-account-9618", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:22:07Z", - "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3024", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", - "creationTime": "2023-03-30T23:22:08Z", - "deletionTime": "2023-03-30T23:40:57Z" + "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", + "creationTime": "2023-03-30T14:53:50Z", + "deletionTime": "2023-03-30T15:53:56Z" } ] } }, { - "name": "aae41121-0386-45f5-884b-acca11a878e3", + "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", "properties": { - "accountName": "restoredaccount-2225", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4043", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:31:27Z", + "deletionTime": "2023-03-30T16:47:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z" + "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", + "creationTime": "2023-03-30T16:31:28Z", + "deletionTime": "2023-03-30T16:47:52Z" } ] } }, { - "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", + "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", "properties": { - "accountName": "r-database-account-220", - "apiType": "Sql", - "creationTime": "2023-03-31T00:05:32Z", - "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7511", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", - "creationTime": "2023-03-31T00:05:33Z", - "deletionTime": "2023-03-31T00:21:52Z" + "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", + "creationTime": "2023-03-30T16:47:28Z", + "deletionTime": "2023-03-30T17:00:19Z" } ] } }, { - "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", + "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", "properties": { - "accountName": "restoredaccount-9446", - "apiType": "Sql", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-353", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z" + "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", + "creationTime": "2023-03-30T17:04:32Z", + "deletionTime": "2023-03-30T17:07:06Z" } ] } }, { - "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", "properties": { - "accountName": "r-database-account-2092", + "accountName": "r-database-account-8087", "apiType": "Table, Sql", - "creationTime": "2023-03-31T00:47:34Z", - "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T17:24:28Z", + "deletionTime": "2023-03-30T17:39:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", - "creationTime": "2023-03-31T00:47:35Z", - "deletionTime": "2023-03-31T01:05:40Z" + "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", + "creationTime": "2023-03-30T17:24:29Z", + "deletionTime": "2023-03-30T17:39:50Z" } ] } }, { - "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", "properties": { - "accountName": "restoredaccount-6025", + "accountName": "restoredaccount-560", "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z" + "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", + "creationTime": "2023-03-30T17:39:25Z", + "deletionTime": "2023-03-30T17:51:16Z" } ] } }, { - "name": "89218c06-82d7-4397-a460-2f07c20d7138", + "name": "d9e2fd03-4af1-4649-98c3-65f580724594", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", "properties": { - "accountName": "r-database-account-2331", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:32:56Z", - "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7446", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:08:24Z", + "deletionTime": "2023-03-30T19:10:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", - "creationTime": "2023-03-31T01:32:57Z", - "deletionTime": "2023-03-31T01:49:23Z" + "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", + "creationTime": "2023-03-30T19:08:25Z", + "deletionTime": "2023-03-30T19:10:04Z" } ] } }, { - "name": "480bf65c-2961-46e6-a44c-4de49632a509", + "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", "properties": { - "accountName": "restoredaccount-6086", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8409", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:30:14Z", + "deletionTime": "2023-03-30T19:46:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z" + "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", + "creationTime": "2023-03-30T19:30:15Z", + "deletionTime": "2023-03-30T19:46:59Z" } ] } }, { - "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", "properties": { - "accountName": "r-database-account-3761", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T02:17:45Z", - "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-9502", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", - "creationTime": "2023-03-31T02:17:46Z", - "deletionTime": "2023-03-31T02:19:03Z" + "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", + "creationTime": "2023-03-30T19:46:10Z", + "deletionTime": "2023-03-30T19:58:17Z" } ] } }, { - "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", + "name": "a274527e-da37-49f9-9878-cef9f55b334d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", "properties": { - "accountName": "r-database-account-176", + "accountName": "r-database-account-4548", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T02:35:45Z", - "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T20:23:16Z", + "deletionTime": "2023-03-30T20:41:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", - "creationTime": "2023-03-31T02:35:46Z", - "deletionTime": "2023-03-31T02:37:16Z" + "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", + "creationTime": "2023-03-30T20:23:17Z", + "deletionTime": "2023-03-30T20:41:33Z" } ] } }, { - "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", + "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", "properties": { - "accountName": "r-database-account-9754", - "apiType": "Sql", - "creationTime": "2023-03-31T02:51:04Z", - "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3745", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", - "creationTime": "2023-03-31T02:51:05Z", - "deletionTime": "2023-03-31T02:51:58Z" + "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", + "creationTime": "2023-03-30T20:41:08Z", + "deletionTime": "2023-03-30T20:52:52Z" } ] } }, { - "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", "properties": { - "accountName": "r-database-account-3560", + "accountName": "r-database-account-2582", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:04:37Z", - "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T21:50:24Z", + "deletionTime": "2023-03-30T21:52:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", - "creationTime": "2023-03-31T03:04:38Z", - "deletionTime": "2023-03-31T03:05:38Z" + "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", + "creationTime": "2023-03-30T21:50:27Z", + "deletionTime": "2023-03-30T21:52:04Z" } ] } }, { - "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", "properties": { - "accountName": "r-database-account-7061", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T03:21:54Z", - "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8779", + "apiType": "Sql", + "creationTime": "2023-03-30T22:06:33Z", + "deletionTime": "2023-03-30T22:07:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", - "creationTime": "2023-03-31T03:21:55Z", - "deletionTime": "2023-03-31T03:23:03Z" + "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", + "creationTime": "2023-03-30T22:06:34Z", + "deletionTime": "2023-03-30T22:07:17Z" } ] } }, { - "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", + "name": "38947549-a1bf-4023-bc95-88dcc312797f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", "properties": { - "accountName": "r-database-account-6492", + "accountName": "r-database-account-4386", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:37:32Z", - "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T22:20:34Z", + "deletionTime": "2023-03-30T22:21:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", - "creationTime": "2023-03-31T03:37:33Z", - "deletionTime": "2023-03-31T03:51:53Z" + "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", + "creationTime": "2023-03-30T22:20:35Z", + "deletionTime": "2023-03-30T22:21:28Z" } ] } }, { - "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", "properties": { - "accountName": "r-database-account-2187", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:07:50Z", - "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3583", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T22:35:57Z", + "deletionTime": "2023-03-30T22:36:47Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", - "creationTime": "2023-03-31T04:07:51Z", - "deletionTime": "2023-03-31T04:26:04Z" + "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", + "creationTime": "2023-03-30T22:35:58Z", + "deletionTime": "2023-03-30T22:36:47Z" } ] } }, { - "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", "properties": { - "accountName": "restoredaccount-3749", + "accountName": "r-database-account-5053", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T22:51:37Z", + "deletionTime": "2023-03-30T23:05:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z" + "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", + "creationTime": "2023-03-30T22:51:38Z", + "deletionTime": "2023-03-30T23:05:43Z" } ] } }, { - "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "name": "17692a3a-23c6-428d-a13a-94657bdea47a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", "properties": { - "accountName": "r-database-account-1319", - "apiType": "Sql", - "creationTime": "2023-03-31T04:51:37Z", - "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9618", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:22:07Z", + "deletionTime": "2023-03-30T23:40:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", - "creationTime": "2023-03-31T04:51:38Z", - "deletionTime": "2023-03-31T05:08:00Z" + "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", + "creationTime": "2023-03-30T23:22:08Z", + "deletionTime": "2023-03-30T23:40:57Z" } ] } }, { - "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "name": "aae41121-0386-45f5-884b-acca11a878e3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", "properties": { - "accountName": "restoredaccount-949", - "apiType": "Sql", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-2225", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z" + "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", + "creationTime": "2023-03-30T23:40:03Z", + "deletionTime": "2023-03-30T23:52:14Z" } ] } }, { - "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", "properties": { - "accountName": "r-database-account-3444", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:33:47Z", - "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-220", + "apiType": "Sql", + "creationTime": "2023-03-31T00:05:32Z", + "deletionTime": "2023-03-31T00:21:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", - "creationTime": "2023-03-31T05:33:48Z", - "deletionTime": "2023-03-31T05:52:04Z" + "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", + "creationTime": "2023-03-31T00:05:33Z", + "deletionTime": "2023-03-31T00:21:52Z" } ] } }, { - "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", "properties": { - "accountName": "restoredaccount-8369", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-9446", + "apiType": "Sql", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z" + "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", + "creationTime": "2023-03-31T00:21:09Z", + "deletionTime": "2023-03-31T00:32:36Z" } ] } }, { - "name": "a6938641-f254-423b-877a-01a80f789530", + "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", "properties": { - "accountName": "r-database-account-4184", + "accountName": "r-database-account-2092", "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:20:37Z", - "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T00:47:34Z", + "deletionTime": "2023-03-31T01:05:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", - "creationTime": "2023-03-31T06:20:38Z", - "deletionTime": "2023-03-31T06:36:54Z" + "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", + "creationTime": "2023-03-31T00:47:35Z", + "deletionTime": "2023-03-31T01:05:40Z" } ] } }, { - "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", + "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", "properties": { - "accountName": "restoredaccount-8230", + "accountName": "restoredaccount-6025", "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z" + "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", + "creationTime": "2023-03-31T01:04:48Z", + "deletionTime": "2023-03-31T01:17:03Z" } ] } }, { - "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", + "name": "89218c06-82d7-4397-a460-2f07c20d7138", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", "properties": { - "accountName": "r-database-account-9421", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:10:08Z", - "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2331", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:32:56Z", + "deletionTime": "2023-03-31T01:49:23Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", - "creationTime": "2023-03-31T07:10:09Z", - "deletionTime": "2023-03-31T07:27:01Z" + "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", + "creationTime": "2023-03-31T01:32:57Z", + "deletionTime": "2023-03-31T01:49:23Z" } ] } }, { - "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", + "name": "480bf65c-2961-46e6-a44c-4de49632a509", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", "properties": { - "accountName": "restoredaccount-2737", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-6086", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z" + "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", + "creationTime": "2023-03-31T01:48:31Z", + "deletionTime": "2023-03-31T02:01:14Z" } ] } }, { - "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", "properties": { - "accountName": "r-database-account-4921", + "accountName": "r-database-account-3761", "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:56:33Z", - "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T02:17:45Z", + "deletionTime": "2023-03-31T02:19:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", - "creationTime": "2023-03-31T07:56:34Z", - "deletionTime": "2023-03-31T07:58:09Z" + "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", + "creationTime": "2023-03-31T02:17:46Z", + "deletionTime": "2023-03-31T02:19:03Z" } ] } }, { - "name": "bea1d046-d612-49e3-b64c-3e82a216987a", + "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", "properties": { - "accountName": "r-database-account-4832", + "accountName": "r-database-account-176", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:15:55Z", - "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T02:35:45Z", + "deletionTime": "2023-03-31T02:37:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", - "creationTime": "2023-03-31T08:15:57Z", - "deletionTime": "2023-03-31T08:33:06Z" + "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", + "creationTime": "2023-03-31T02:35:46Z", + "deletionTime": "2023-03-31T02:37:16Z" } ] } }, { - "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", "properties": { - "accountName": "restoredaccount-9360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9754", + "apiType": "Sql", + "creationTime": "2023-03-31T02:51:04Z", + "deletionTime": "2023-03-31T02:51:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z" + "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", + "creationTime": "2023-03-31T02:51:05Z", + "deletionTime": "2023-03-31T02:51:58Z" } ] } }, { - "name": "9e6527c2-ded9-493a-9086-df70877c305d", + "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", "properties": { - "accountName": "r-database-account-7247", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T09:00:28Z", - "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3560", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:04:37Z", + "deletionTime": "2023-03-31T03:05:38Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", - "creationTime": "2023-03-31T09:00:29Z", - "deletionTime": "2023-03-31T09:01:48Z" + "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", + "creationTime": "2023-03-31T03:04:38Z", + "deletionTime": "2023-03-31T03:05:38Z" } ] } }, { - "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", + "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", "properties": { - "accountName": "r-database-account-2911", + "accountName": "r-database-account-7061", "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:04:29Z", - "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T03:21:54Z", + "deletionTime": "2023-03-31T03:23:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", - "creationTime": "2023-03-31T15:04:30Z", - "deletionTime": "2023-03-31T15:05:51Z" + "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", + "creationTime": "2023-03-31T03:21:55Z", + "deletionTime": "2023-03-31T03:23:03Z" } ] } }, { - "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", + "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", "properties": { - "accountName": "r-database-account-7482", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:22:06Z", - "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6492", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T03:37:32Z", + "deletionTime": "2023-03-31T03:51:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", - "creationTime": "2023-03-31T15:22:08Z", - "deletionTime": "2023-03-31T15:23:48Z" + "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", + "creationTime": "2023-03-31T03:37:33Z", + "deletionTime": "2023-03-31T03:51:53Z" } ] } }, { - "name": "c739e02a-8d12-44a1-9b43-72dee580e901", + "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", "properties": { - "accountName": "r-database-account-2396", + "accountName": "r-database-account-2187", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:34:52Z", - "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T04:07:50Z", + "deletionTime": "2023-03-31T04:26:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", - "creationTime": "2023-04-04T16:34:53Z", - "deletionTime": "2023-04-04T16:36:27Z" + "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", + "creationTime": "2023-03-31T04:07:51Z", + "deletionTime": "2023-03-31T04:26:04Z" } ] } }, { - "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", + "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", "properties": { - "accountName": "r-database-account-2962", + "accountName": "restoredaccount-3749", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:56:08Z", - "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", - "creationTime": "2023-04-04T16:56:09Z", - "deletionTime": "2023-04-04T16:57:51Z" + "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", + "creationTime": "2023-03-31T04:25:40Z", + "deletionTime": "2023-03-31T04:37:22Z" } ] } }, { - "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", + "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", "properties": { - "accountName": "r-database-account-2963", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:15:44Z", - "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1319", + "apiType": "Sql", + "creationTime": "2023-03-31T04:51:37Z", + "deletionTime": "2023-03-31T05:08:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", - "creationTime": "2023-04-04T17:15:45Z", - "deletionTime": "2023-04-04T17:17:16Z" + "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", + "creationTime": "2023-03-31T04:51:38Z", + "deletionTime": "2023-03-31T05:08:00Z" } ] } }, { - "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", "properties": { - "accountName": "r-database-account-6481", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:49:37Z", - "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-949", + "apiType": "Sql", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", - "creationTime": "2023-04-04T17:49:38Z", - "deletionTime": "2023-04-04T17:51:33Z" + "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", + "creationTime": "2023-03-31T05:07:24Z", + "deletionTime": "2023-03-31T05:18:12Z" } ] } }, { - "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", + "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", "properties": { - "accountName": "r-database-account-5265", - "apiType": "Sql", - "creationTime": "2023-04-04T18:05:44Z", - "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3444", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:33:47Z", + "deletionTime": "2023-03-31T05:52:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", - "creationTime": "2023-04-04T18:05:45Z", - "deletionTime": "2023-04-04T18:06:15Z" + "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", + "creationTime": "2023-03-31T05:33:48Z", + "deletionTime": "2023-03-31T05:52:04Z" } ] } }, { - "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", + "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", "properties": { - "accountName": "r-database-account-2888", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:48:32Z", - "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-8369", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", - "creationTime": "2023-04-04T18:48:33Z", - "deletionTime": "2023-04-04T18:50:14Z" + "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", + "creationTime": "2023-03-31T05:51:09Z", + "deletionTime": "2023-03-31T06:03:54Z" } ] } }, { - "name": "ad1760ce-6137-41f0-843a-84a233b507fb", + "name": "a6938641-f254-423b-877a-01a80f789530", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", "properties": { - "accountName": "r-database-account-3827", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:16:39Z", - "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4184", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:20:37Z", + "deletionTime": "2023-03-31T06:36:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", - "creationTime": "2023-04-04T19:16:40Z", - "deletionTime": "2023-04-04T19:18:14Z" + "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", + "creationTime": "2023-03-31T06:20:38Z", + "deletionTime": "2023-03-31T06:36:54Z" } ] } }, { - "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", + "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", "properties": { - "accountName": "r-database-account-7735", - "apiType": "Sql", - "creationTime": "2023-04-04T19:32:03Z", - "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-8230", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", - "creationTime": "2023-04-04T19:32:04Z", - "deletionTime": "2023-04-04T19:33:01Z" + "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", + "creationTime": "2023-03-31T06:35:59Z", + "deletionTime": "2023-03-31T06:48:41Z" } ] } }, { - "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", + "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", "properties": { - "accountName": "r-database-account-1093", + "accountName": "r-database-account-9421", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:46:39Z", - "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T07:10:08Z", + "deletionTime": "2023-03-31T07:27:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", - "creationTime": "2023-04-04T19:46:40Z", - "deletionTime": "2023-04-04T19:47:45Z" + "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", + "creationTime": "2023-03-31T07:10:09Z", + "deletionTime": "2023-03-31T07:27:01Z" } ] } }, { - "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", + "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", "properties": { - "accountName": "r-database-account-5066", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-2737", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z" + "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", + "creationTime": "2023-03-31T07:26:06Z", + "deletionTime": "2023-03-31T07:39:47Z" } ] } }, { - "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", + "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", "properties": { - "accountName": "r-database-account-1835", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:17:28Z", - "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4921", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T07:56:33Z", + "deletionTime": "2023-03-31T07:58:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", - "creationTime": "2023-04-04T20:17:29Z", - "deletionTime": "2023-04-04T20:34:14Z" + "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", + "creationTime": "2023-03-31T07:56:34Z", + "deletionTime": "2023-03-31T07:58:09Z" } ] } }, { - "name": "cb2e954a-4e71-425a-b780-25555527fc7b", + "name": "bea1d046-d612-49e3-b64c-3e82a216987a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", "properties": { - "accountName": "restoredaccount-5931", + "accountName": "r-database-account-4832", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T08:15:55Z", + "deletionTime": "2023-03-31T08:33:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z" + "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", + "creationTime": "2023-03-31T08:15:57Z", + "deletionTime": "2023-03-31T08:33:06Z" } ] } }, { - "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", "properties": { - "accountName": "r-database-account-8394", + "accountName": "restoredaccount-9360", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:02:22Z", - "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", - "creationTime": "2023-04-04T21:02:23Z", - "deletionTime": "2023-04-04T21:20:17Z" - } - ] + "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", + "creationTime": "2023-03-31T08:32:15Z", + "deletionTime": "2023-03-31T08:44:24Z" + } + ] } }, { - "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", + "name": "9e6527c2-ded9-493a-9086-df70877c305d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", "properties": { - "accountName": "r-database-account-5571", - "apiType": "Sql", - "creationTime": "2023-04-04T21:44:41Z", - "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7247", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T09:00:28Z", + "deletionTime": "2023-03-31T09:01:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", - "creationTime": "2023-04-04T21:44:42Z", - "deletionTime": "2023-04-04T21:45:35Z" + "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", + "creationTime": "2023-03-31T09:00:29Z", + "deletionTime": "2023-03-31T09:01:48Z" } ] } }, { - "name": "987588f7-7709-4336-aa45-223395911848", + "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", "properties": { - "accountName": "r-database-account-1689", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:09:17Z", - "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2911", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:04:29Z", + "deletionTime": "2023-03-31T15:05:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", - "creationTime": "2023-04-04T22:09:19Z", - "deletionTime": "2023-04-04T22:10:56Z" + "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", + "creationTime": "2023-03-31T15:04:30Z", + "deletionTime": "2023-03-31T15:05:51Z" } ] } }, { - "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", "properties": { - "accountName": "r-database-account-4876", - "apiType": "Sql", - "creationTime": "2023-04-04T22:24:45Z", - "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7482", + "apiType": "Table, Sql", + "creationTime": "2023-03-31T15:22:06Z", + "deletionTime": "2023-03-31T15:23:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", - "creationTime": "2023-04-04T22:24:46Z", - "deletionTime": "2023-04-04T22:25:39Z" + "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", + "creationTime": "2023-03-31T15:22:08Z", + "deletionTime": "2023-03-31T15:23:48Z" } ] } }, { - "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "name": "c739e02a-8d12-44a1-9b43-72dee580e901", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", "properties": { - "accountName": "r-database-account-3793", + "accountName": "r-database-account-2396", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:38:37Z", - "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T16:34:52Z", + "deletionTime": "2023-04-04T16:36:27Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", - "creationTime": "2023-04-04T22:38:38Z", - "deletionTime": "2023-04-04T22:39:26Z" + "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", + "creationTime": "2023-04-04T16:34:53Z", + "deletionTime": "2023-04-04T16:36:27Z" } ] } }, { - "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", "properties": { - "accountName": "r-database-account-2846", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T22:54:10Z", - "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2962", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T16:56:08Z", + "deletionTime": "2023-04-04T16:57:51Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", - "creationTime": "2023-04-04T22:54:11Z", - "deletionTime": "2023-04-04T22:55:15Z" + "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", + "creationTime": "2023-04-04T16:56:09Z", + "deletionTime": "2023-04-04T16:57:51Z" } ] } }, { - "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", "properties": { - "accountName": "r-database-account-121", + "accountName": "r-database-account-2963", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:09:10Z", - "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T17:15:44Z", + "deletionTime": "2023-04-04T17:17:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", - "creationTime": "2023-04-04T23:09:11Z", - "deletionTime": "2023-04-04T23:26:11Z" + "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", + "creationTime": "2023-04-04T17:15:45Z", + "deletionTime": "2023-04-04T17:17:16Z" } ] } }, { - "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", + "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", "properties": { - "accountName": "restoredaccount-7907", + "accountName": "r-database-account-6481", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T17:49:37Z", + "deletionTime": "2023-04-04T17:51:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z" + "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", + "creationTime": "2023-04-04T17:49:38Z", + "deletionTime": "2023-04-04T17:51:33Z" } ] } }, { - "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", "properties": { - "accountName": "r-database-account-5836", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:53:57Z", - "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5265", + "apiType": "Sql", + "creationTime": "2023-04-04T18:05:44Z", + "deletionTime": "2023-04-04T18:06:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", - "creationTime": "2023-04-04T23:53:58Z", - "deletionTime": "2023-04-05T00:12:42Z" + "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", + "creationTime": "2023-04-04T18:05:45Z", + "deletionTime": "2023-04-04T18:06:15Z" } ] } }, { - "name": "eda15431-8fd3-434e-a724-6478d0d766b0", + "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", "properties": { - "accountName": "restoredaccount-2781", + "accountName": "r-database-account-2888", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T18:48:32Z", + "deletionTime": "2023-04-04T18:50:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z" + "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", + "creationTime": "2023-04-04T18:48:33Z", + "deletionTime": "2023-04-04T18:50:14Z" } ] } }, { - "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", + "name": "ad1760ce-6137-41f0-843a-84a233b507fb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", "properties": { - "accountName": "r-database-account-886", - "apiType": "Sql", - "creationTime": "2023-04-05T00:38:08Z", - "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3827", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:16:39Z", + "deletionTime": "2023-04-04T19:18:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", - "creationTime": "2023-04-05T00:38:09Z", - "deletionTime": "2023-04-05T00:55:26Z" + "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", + "creationTime": "2023-04-04T19:16:40Z", + "deletionTime": "2023-04-04T19:18:14Z" } ] } }, { - "name": "0461674a-5302-4644-8006-15273be1dd01", + "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", "properties": { - "accountName": "restoredaccount-1331", + "accountName": "r-database-account-7735", "apiType": "Sql", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T19:32:03Z", + "deletionTime": "2023-04-04T19:33:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z" + "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", + "creationTime": "2023-04-04T19:32:04Z", + "deletionTime": "2023-04-04T19:33:01Z" } ] } }, { - "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", "properties": { - "accountName": "r-database-account-5720", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:20:43Z", - "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1093", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T19:46:39Z", + "deletionTime": "2023-04-04T19:47:45Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", - "creationTime": "2023-04-05T01:20:44Z", - "deletionTime": "2023-04-05T01:39:46Z" + "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", + "creationTime": "2023-04-04T19:46:40Z", + "deletionTime": "2023-04-04T19:47:45Z" } ] } }, { - "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", "properties": { - "accountName": "restoredaccount-3222", + "accountName": "r-database-account-5066", "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z" + "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", + "creationTime": "2023-04-04T20:02:17Z", + "deletionTime": "2023-04-04T20:03:01Z" } ] } }, { - "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", "properties": { - "accountName": "r-database-account-7279", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:07:38Z", - "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1835", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:17:28Z", + "deletionTime": "2023-04-04T20:34:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", - "creationTime": "2023-04-05T02:07:39Z", - "deletionTime": "2023-04-05T02:24:18Z" + "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", + "creationTime": "2023-04-04T20:17:29Z", + "deletionTime": "2023-04-04T20:34:14Z" } ] } }, { - "name": "3364799a-fb66-48f3-b389-45af2e775bd2", + "name": "cb2e954a-4e71-425a-b780-25555527fc7b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", "properties": { - "accountName": "restoredaccount-2694", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z" - } - ] - } - }, - { - "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "properties": { - "accountName": "r-database-account-2111", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:52:15Z", - "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-5931", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", - "creationTime": "2023-04-05T02:52:16Z", - "deletionTime": "2023-04-05T02:53:42Z" + "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", + "creationTime": "2023-04-04T20:33:26Z", + "deletionTime": "2023-04-04T20:46:32Z" } ] } }, { - "name": "1275f66f-c69b-4813-9b61-901e1ec451af", + "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", "properties": { - "accountName": "r-database-account-4270", + "accountName": "r-database-account-8394", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:09:42Z", - "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T21:02:22Z", + "deletionTime": "2023-04-04T21:20:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", - "creationTime": "2023-04-05T03:09:43Z", - "deletionTime": "2023-04-05T03:11:28Z" + "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", + "creationTime": "2023-04-04T21:02:23Z", + "deletionTime": "2023-04-04T21:20:17Z" } ] } }, { - "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", + "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", "properties": { - "accountName": "r-database-account-6226", + "accountName": "r-database-account-5571", "apiType": "Sql", - "creationTime": "2023-04-05T03:25:14Z", - "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T21:44:41Z", + "deletionTime": "2023-04-04T21:45:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", - "creationTime": "2023-04-05T03:25:15Z", - "deletionTime": "2023-04-05T03:26:12Z" + "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", + "creationTime": "2023-04-04T21:44:42Z", + "deletionTime": "2023-04-04T21:45:35Z" } ] } }, { - "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", + "name": "987588f7-7709-4336-aa45-223395911848", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", "properties": { - "accountName": "r-database-account-4472", + "accountName": "r-database-account-1689", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:39:46Z", - "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T22:09:17Z", + "deletionTime": "2023-04-04T22:10:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", - "creationTime": "2023-04-05T03:39:47Z", - "deletionTime": "2023-04-05T03:40:55Z" + "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", + "creationTime": "2023-04-04T22:09:19Z", + "deletionTime": "2023-04-04T22:10:56Z" } ] } }, { - "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", + "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", "properties": { - "accountName": "r-database-account-5112", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T03:56:41Z", - "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4876", + "apiType": "Sql", + "creationTime": "2023-04-04T22:24:45Z", + "deletionTime": "2023-04-04T22:25:39Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", - "creationTime": "2023-04-05T03:56:42Z", - "deletionTime": "2023-04-05T03:57:47Z" + "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", + "creationTime": "2023-04-04T22:24:46Z", + "deletionTime": "2023-04-04T22:25:39Z" } ] } }, { - "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", + "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", "properties": { - "accountName": "r-database-account-8806", + "accountName": "r-database-account-3793", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:11:45Z", - "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T22:38:37Z", + "deletionTime": "2023-04-04T22:39:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", - "creationTime": "2023-04-05T04:11:47Z", - "deletionTime": "2023-04-05T04:37:16Z" + "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", + "creationTime": "2023-04-04T22:38:38Z", + "deletionTime": "2023-04-04T22:39:26Z" } ] } }, { - "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", + "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", "properties": { - "accountName": "restoredaccount-6850", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2846", + "apiType": "Table, Sql", + "creationTime": "2023-04-04T22:54:10Z", + "deletionTime": "2023-04-04T22:55:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", + "creationTime": "2023-04-04T22:54:11Z", + "deletionTime": "2023-04-04T22:55:15Z" } ] } }, { - "name": "fcd234fa-a27c-4150-9595-d0db433584e6", + "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", "properties": { - "accountName": "r-database-account-705", - "apiType": "Sql", - "creationTime": "2023-04-05T05:56:56Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-121", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:09:10Z", + "deletionTime": "2023-04-04T23:26:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", - "creationTime": "2023-04-05T05:56:57Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", + "creationTime": "2023-04-04T23:09:11Z", + "deletionTime": "2023-04-04T23:26:11Z" } ] } }, { - "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", "properties": { - "accountName": "r-database-account-4894", + "accountName": "restoredaccount-7907", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:13:31Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", - "creationTime": "2023-04-05T06:13:32Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", + "creationTime": "2023-04-04T23:25:23Z", + "deletionTime": "2023-04-04T23:37:35Z" } ] } }, { - "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", "properties": { - "accountName": "r-database-account-3212", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T06:08:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5836", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T23:53:57Z", + "deletionTime": "2023-04-05T00:12:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", - "creationTime": "2023-04-05T06:08:09Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", + "creationTime": "2023-04-04T23:53:58Z", + "deletionTime": "2023-04-05T00:12:42Z" } ] } }, { - "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "name": "eda15431-8fd3-434e-a724-6478d0d766b0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", "properties": { - "accountName": "r-database-account-9540", + "accountName": "restoredaccount-2781", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:53:04Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", - "creationTime": "2023-04-05T05:53:05Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", + "creationTime": "2023-04-05T00:12:03Z", + "deletionTime": "2023-04-05T00:24:02Z" } ] } }, { - "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", "properties": { - "accountName": "r-database-account-4658", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:02:37Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-886", + "apiType": "Sql", + "creationTime": "2023-04-05T00:38:08Z", + "deletionTime": "2023-04-05T00:55:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", - "creationTime": "2023-04-05T06:02:38Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", + "creationTime": "2023-04-05T00:38:09Z", + "deletionTime": "2023-04-05T00:55:26Z" } ] } }, { - "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "name": "0461674a-5302-4644-8006-15273be1dd01", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", "properties": { - "accountName": "r-database-account-3189", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:35:19Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-1331", + "apiType": "Sql", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", - "creationTime": "2023-04-05T06:35:20Z", - "deletionTime": "2023-04-05T06:54:25Z" + "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", + "creationTime": "2023-04-05T00:54:34Z", + "deletionTime": "2023-04-05T01:05:40Z" } ] } }, { - "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", "properties": { - "accountName": "restoredaccount-7747", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5720", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:20:43Z", + "deletionTime": "2023-04-05T01:39:46Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z" + "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", + "creationTime": "2023-04-05T01:20:44Z", + "deletionTime": "2023-04-05T01:39:46Z" } ] } }, { - "name": "adc4a343-1599-470d-abcc-d951fdd50f37", + "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", "properties": { - "accountName": "r-database-account-3312", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:13:48Z", - "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3222", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", - "creationTime": "2023-04-04T17:13:49Z", - "deletionTime": "2023-04-05T06:56:38Z" + "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", + "creationTime": "2023-04-05T01:38:51Z", + "deletionTime": "2023-04-05T01:51:35Z" } ] } }, { - "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", + "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", "properties": { - "accountName": "r-database-account-5846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:44:23Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7279", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:07:38Z", + "deletionTime": "2023-04-05T02:24:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", - "creationTime": "2023-04-04T21:44:25Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", + "creationTime": "2023-04-05T02:07:39Z", + "deletionTime": "2023-04-05T02:24:18Z" } ] } }, { - "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", + "name": "3364799a-fb66-48f3-b389-45af2e775bd2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", "properties": { - "accountName": "r-database-account-2760", - "apiType": "Sql", - "creationTime": "2023-04-04T21:33:57Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-2694", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", - "creationTime": "2023-04-04T21:33:58Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", + "creationTime": "2023-04-05T02:23:53Z", + "deletionTime": "2023-04-05T02:36:09Z" } ] } }, { - "name": "9ce35a43-8b24-4060-a058-191f976df7c1", + "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", "properties": { - "accountName": "restoredaccount-9271", - "apiType": "Sql", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2111", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T02:52:15Z", + "deletionTime": "2023-04-05T02:53:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z" + "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", + "creationTime": "2023-04-05T02:52:16Z", + "deletionTime": "2023-04-05T02:53:42Z" } ] } }, { - "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", + "name": "1275f66f-c69b-4813-9b61-901e1ec451af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", "properties": { - "accountName": "r-database-account-9266", - "apiType": "Sql", - "creationTime": "2023-03-29T07:47:00Z", - "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4270", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:09:42Z", + "deletionTime": "2023-04-05T03:11:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", - "creationTime": "2023-03-29T07:47:01Z", - "deletionTime": "2023-04-05T06:58:41Z" + "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", + "creationTime": "2023-04-05T03:09:43Z", + "deletionTime": "2023-04-05T03:11:28Z" } ] } }, { - "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", "properties": { - "accountName": "r-database-account-641", + "accountName": "r-database-account-6226", "apiType": "Sql", - "creationTime": "2023-03-29T04:26:01Z", - "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T03:25:14Z", + "deletionTime": "2023-04-05T03:26:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", - "creationTime": "2023-03-29T04:26:02Z", - "deletionTime": "2023-04-05T06:59:03Z" + "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", + "creationTime": "2023-04-05T03:25:15Z", + "deletionTime": "2023-04-05T03:26:12Z" } ] } }, { - "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", "properties": { - "accountName": "r-database-account-3287", - "apiType": "Sql", - "creationTime": "2023-03-29T07:55:06Z", - "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4472", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T03:39:46Z", + "deletionTime": "2023-04-05T03:40:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", - "creationTime": "2023-03-29T07:55:07Z", - "deletionTime": "2023-04-05T07:00:47Z" + "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", + "creationTime": "2023-04-05T03:39:47Z", + "deletionTime": "2023-04-05T03:40:55Z" } ] } }, { - "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", "properties": { - "accountName": "r-database-account-3926", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:08:41Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5112", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T03:56:41Z", + "deletionTime": "2023-04-05T03:57:47Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", - "creationTime": "2023-03-29T17:08:42Z", - "deletionTime": "2023-04-05T07:01:53Z" + "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", + "creationTime": "2023-04-05T03:56:42Z", + "deletionTime": "2023-04-05T03:57:47Z" } ] } }, { - "name": "92ce3190-d16b-438f-9791-b2254a597435", + "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", "properties": { - "accountName": "r-database-account-1530", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:05:13Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8806", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:11:45Z", + "deletionTime": "2023-04-05T04:37:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", - "creationTime": "2023-03-31T07:05:14Z", - "deletionTime": "2023-04-05T07:01:53Z" + "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", + "creationTime": "2023-04-05T04:11:47Z", + "deletionTime": "2023-04-05T04:37:16Z" } ] } }, { - "name": "c5934152-2095-41b0-9962-72be301ec23c", + "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", "properties": { - "accountName": "r-database-account-1333", + "accountName": "restoredaccount-6850", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:09:38Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", - "creationTime": "2023-03-30T07:09:40Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", + "creationTime": "2023-04-05T06:30:08Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", + "name": "fcd234fa-a27c-4150-9595-d0db433584e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", "properties": { - "accountName": "r-database-account-2197", + "accountName": "r-database-account-705", "apiType": "Sql", - "creationTime": "2023-03-29T04:24:10Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T05:56:56Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", - "creationTime": "2023-03-29T04:24:11Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", + "creationTime": "2023-04-05T05:56:57Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", "properties": { - "accountName": "r-database-account-4608", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T00:10:43Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4894", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:13:31Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", - "creationTime": "2023-03-30T00:10:44Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", + "creationTime": "2023-04-05T06:13:32Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", "properties": { - "accountName": "r-database-account-4659", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:19:29Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3212", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T06:08:08Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", - "creationTime": "2023-04-04T18:19:30Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", + "creationTime": "2023-04-05T06:08:09Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", "properties": { - "accountName": "r-database-account-5637", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:25:03Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9540", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:53:04Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", - "creationTime": "2023-03-30T16:25:04Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", + "creationTime": "2023-04-05T05:53:05Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", "properties": { - "accountName": "r-database-account-5467", + "accountName": "r-database-account-4658", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:53:26Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T06:02:37Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", - "creationTime": "2023-04-05T04:53:27Z", - "deletionTime": "2023-04-05T07:01:54Z" + "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", + "creationTime": "2023-04-05T06:02:38Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "401f849e-50e6-483b-813a-1a5f1059006c", + "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", "properties": { - "accountName": "r-database-account-5933", - "apiType": "Sql", - "creationTime": "2023-04-04T19:13:48Z", - "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3189", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T06:35:19Z", + "deletionTime": "2023-04-05T06:54:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", - "creationTime": "2023-04-04T19:13:49Z", - "deletionTime": "2023-04-05T07:01:55Z" + "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", + "creationTime": "2023-04-05T06:35:20Z", + "deletionTime": "2023-04-05T06:54:25Z" } ] } }, { - "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", + "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", "properties": { - "accountName": "r-database-account-1535", + "accountName": "restoredaccount-7747", "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:20:58Z", - "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", - "creationTime": "2023-03-30T20:21:00Z", - "deletionTime": "2023-04-05T07:01:58Z" + "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", + "creationTime": "2023-04-05T06:53:31Z", + "deletionTime": "2023-04-05T06:54:26Z" } ] } }, { - "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", + "name": "adc4a343-1599-470d-abcc-d951fdd50f37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", "properties": { - "accountName": "r-database-account-5305", - "apiType": "Sql", - "creationTime": "2023-03-29T02:15:48Z", - "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3312", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T17:13:48Z", + "deletionTime": "2023-04-05T06:56:38Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", - "creationTime": "2023-03-29T02:15:49Z", - "deletionTime": "2023-04-05T07:02:00Z" + "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", + "creationTime": "2023-04-04T17:13:49Z", + "deletionTime": "2023-04-05T06:56:38Z" } ] } }, { - "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", + "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", "properties": { - "accountName": "restoredaccount-590", - "apiType": "Sql", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-04T21:44:23Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", + "creationTime": "2023-04-04T21:44:25Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", "properties": { - "accountName": "restoredaccount-3736", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2760", + "apiType": "Sql", + "creationTime": "2023-04-04T21:33:57Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", + "creationTime": "2023-04-04T21:33:58Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "af699620-0019-4a6b-ad59-e7c6381814ba", + "name": "9ce35a43-8b24-4060-a058-191f976df7c1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", "properties": { - "accountName": "restoredaccount-7822", + "accountName": "restoredaccount-9271", "apiType": "Sql", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z" + "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", + "creationTime": "2023-04-04T21:49:17Z", + "deletionTime": "2023-04-05T06:58:31Z" } ] } }, { - "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", + "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", "properties": { - "accountName": "restoredaccount-5262", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9266", + "apiType": "Sql", + "creationTime": "2023-03-29T07:47:00Z", + "deletionTime": "2023-04-05T06:58:41Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z" + "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", + "creationTime": "2023-03-29T07:47:01Z", + "deletionTime": "2023-04-05T06:58:41Z" } ] } }, { - "name": "05442da3-1214-4c48-9883-b06ab54491dd", + "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", "properties": { - "accountName": "r-database-account-6510", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:12:03Z", - "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-641", + "apiType": "Sql", + "creationTime": "2023-03-29T04:26:01Z", + "deletionTime": "2023-04-05T06:59:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", - "creationTime": "2023-04-05T16:12:04Z", - "deletionTime": "2023-04-05T16:13:54Z" + "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", + "creationTime": "2023-03-29T04:26:02Z", + "deletionTime": "2023-04-05T06:59:03Z" } ] } }, { - "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", + "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", "properties": { - "accountName": "r-database-account-6751", + "accountName": "r-database-account-3287", "apiType": "Sql", - "creationTime": "2023-04-05T16:17:14Z", - "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T07:55:06Z", + "deletionTime": "2023-04-05T07:00:47Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", - "creationTime": "2023-04-05T16:17:16Z", - "deletionTime": "2023-04-05T16:17:54Z" + "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", + "creationTime": "2023-03-29T07:55:07Z", + "deletionTime": "2023-04-05T07:00:47Z" } ] } }, { - "name": "554b58bc-ad47-4031-9100-02ef15baa510", + "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", "properties": { - "accountName": "r-database-account-3896", + "accountName": "r-database-account-3926", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:22:51Z", - "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T17:08:41Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", - "creationTime": "2023-04-05T16:22:52Z", - "deletionTime": "2023-04-05T16:24:03Z" + "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", + "creationTime": "2023-03-29T17:08:42Z", + "deletionTime": "2023-04-05T07:01:53Z" } ] } }, { - "name": "d97105e7-6a53-435f-9219-21b7e6ace085", + "name": "92ce3190-d16b-438f-9791-b2254a597435", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", "properties": { - "accountName": "r-database-account-8009", + "accountName": "r-database-account-1530", "apiType": "Table, Sql", - "creationTime": "2023-04-05T16:28:41Z", - "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-31T07:05:13Z", + "deletionTime": "2023-04-05T07:01:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", - "creationTime": "2023-04-05T16:28:42Z", - "deletionTime": "2023-04-05T16:29:40Z" + "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", + "creationTime": "2023-03-31T07:05:14Z", + "deletionTime": "2023-04-05T07:01:53Z" } ] } }, { - "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "name": "c5934152-2095-41b0-9962-72be301ec23c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", "properties": { - "accountName": "r-database-account-5770", + "accountName": "r-database-account-1333", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:34:14Z", - "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-30T07:09:38Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", - "creationTime": "2023-04-05T16:34:15Z", - "deletionTime": "2023-04-05T16:51:55Z" + "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", + "creationTime": "2023-03-30T07:09:40Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", "properties": { - "accountName": "restoredaccount-4079", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2197", + "apiType": "Sql", + "creationTime": "2023-03-29T04:24:10Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z" + "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", + "creationTime": "2023-03-29T04:24:11Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "a181c3ee-171b-4481-b30c-623238c24d41", + "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", "properties": { - "accountName": "restoredaccount-5402", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-4608", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T00:10:43Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z" + "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", + "creationTime": "2023-03-30T00:10:44Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "115d217b-1e58-4653-af7e-756be6313d6e", + "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", "properties": { - "accountName": "r-database-account-5935", + "accountName": "r-database-account-4659", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:56:31Z", - "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-04T18:19:29Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", - "creationTime": "2023-04-05T16:56:32Z", - "deletionTime": "2023-04-05T17:15:52Z" + "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", + "creationTime": "2023-04-04T18:19:30Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", "properties": { - "accountName": "r-database-account-339", - "apiType": "Sql", - "creationTime": "2023-04-05T17:17:47Z", - "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5637", + "apiType": "Table, Sql", + "creationTime": "2023-03-30T16:25:03Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", - "creationTime": "2023-04-05T17:17:48Z", - "deletionTime": "2023-04-05T17:34:52Z" + "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", + "creationTime": "2023-03-30T16:25:04Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "4350889f-8316-4611-8c7b-0de037f83cb3", + "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", "properties": { - "accountName": "restoredaccount-6292", - "apiType": "Sql", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5467", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T04:53:26Z", + "deletionTime": "2023-04-05T07:01:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z" + "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", + "creationTime": "2023-04-05T04:53:27Z", + "deletionTime": "2023-04-05T07:01:54Z" } ] } }, { - "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", + "name": "401f849e-50e6-483b-813a-1a5f1059006c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", "properties": { - "accountName": "r-database-account-8514", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:39:47Z", - "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5933", + "apiType": "Sql", + "creationTime": "2023-04-04T19:13:48Z", + "deletionTime": "2023-04-05T07:01:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", - "creationTime": "2023-04-05T17:39:48Z", - "deletionTime": "2023-04-05T17:58:43Z" + "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", + "creationTime": "2023-04-04T19:13:49Z", + "deletionTime": "2023-04-05T07:01:55Z" } ] } }, { - "name": "e39d66a9-028e-499d-b488-fde2e53814c5", + "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", "properties": { - "accountName": "restoredaccount-9641", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-1535", + "apiType": "Gremlin, Sql", + "creationTime": "2023-03-30T20:20:58Z", + "deletionTime": "2023-04-05T07:01:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z" + "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", + "creationTime": "2023-03-30T20:21:00Z", + "deletionTime": "2023-04-05T07:01:58Z" } ] } }, { - "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", + "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", "properties": { - "accountName": "restoredaccount-2652", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5305", + "apiType": "Sql", + "creationTime": "2023-03-29T02:15:48Z", + "deletionTime": "2023-04-05T07:02:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z" + "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", + "creationTime": "2023-03-29T02:15:49Z", + "deletionTime": "2023-04-05T07:02:00Z" } ] } }, { - "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", "properties": { - "accountName": "r-database-account-20", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:03:36Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-590", + "apiType": "Sql", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", - "creationTime": "2023-04-05T18:03:37Z", - "deletionTime": "2023-04-05T18:21:00Z" + "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", + "creationTime": "2023-03-30T05:59:59Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", + "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", "properties": { - "accountName": "r-database-account-727", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:25:45Z", - "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3736", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", - "creationTime": "2023-04-05T18:25:47Z", - "deletionTime": "2023-04-05T18:27:03Z" + "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", + "creationTime": "2023-04-05T05:11:25Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "name": "af699620-0019-4a6b-ad59-e7c6381814ba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", "properties": { - "accountName": "r-database-account-2209", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:38:04Z", - "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7822", + "apiType": "Sql", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", - "creationTime": "2023-04-05T18:38:05Z", - "deletionTime": "2023-04-05T18:40:00Z" + "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", + "creationTime": "2023-03-29T23:36:48Z", + "deletionTime": "2023-04-05T07:02:18Z" } ] } }, { - "name": "e106c7e7-2828-4193-b125-0540ec42f85a", + "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", "properties": { - "accountName": "r-grem-db-account-3109", + "accountName": "restoredaccount-5262", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:20Z", - "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", - "creationTime": "2023-04-05T19:15:21Z", - "deletionTime": "2023-04-05T19:17:06Z" + "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", + "creationTime": "2023-03-29T23:07:06Z", + "deletionTime": "2023-04-05T07:02:19Z" } ] } }, { - "name": "19b77f33-9070-4bea-89ec-83ad22c59136", + "name": "05442da3-1214-4c48-9883-b06ab54491dd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", "properties": { - "accountName": "r-grem-db-account-3153", + "accountName": "r-database-account-6510", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:32:53Z", - "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T16:12:03Z", + "deletionTime": "2023-04-05T16:13:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", - "creationTime": "2023-04-05T19:32:54Z", - "deletionTime": "2023-04-05T19:33:59Z" + "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", + "creationTime": "2023-04-05T16:12:04Z", + "deletionTime": "2023-04-05T16:13:54Z" } ] } }, { - "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", + "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", "properties": { - "accountName": "r-grem-db-account-6612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:47:56Z", - "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6751", + "apiType": "Sql", + "creationTime": "2023-04-05T16:17:14Z", + "deletionTime": "2023-04-05T16:17:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", - "creationTime": "2023-04-05T19:47:57Z", - "deletionTime": "2023-04-05T20:04:52Z" + "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", + "creationTime": "2023-04-05T16:17:16Z", + "deletionTime": "2023-04-05T16:17:54Z" } ] } }, { - "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "name": "554b58bc-ad47-4031-9100-02ef15baa510", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", "properties": { - "accountName": "restoredaccount-5075", + "accountName": "r-database-account-3896", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T16:22:51Z", + "deletionTime": "2023-04-05T16:24:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z" + "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", + "creationTime": "2023-04-05T16:22:52Z", + "deletionTime": "2023-04-05T16:24:03Z" } ] } }, { - "name": "57958516-07cd-498b-b42b-d8bbde38fc72", + "name": "d97105e7-6a53-435f-9219-21b7e6ace085", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", "properties": { - "accountName": "r-grem-db-account-2460", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:32:03Z", - "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8009", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T16:28:41Z", + "deletionTime": "2023-04-05T16:29:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", - "creationTime": "2023-04-05T20:32:04Z", - "deletionTime": "2023-04-05T20:52:58Z" + "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", + "creationTime": "2023-04-05T16:28:42Z", + "deletionTime": "2023-04-05T16:29:40Z" } ] } }, { - "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", "properties": { - "accountName": "restoredaccount-9191", + "accountName": "r-database-account-5770", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T16:34:14Z", + "deletionTime": "2023-04-05T16:51:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z" + "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", + "creationTime": "2023-04-05T16:34:15Z", + "deletionTime": "2023-04-05T16:51:55Z" } ] } }, { - "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", "properties": { - "accountName": "r-grem-db-account-917", + "accountName": "restoredaccount-4079", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:20:40Z", - "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", - "creationTime": "2023-04-05T21:20:41Z", - "deletionTime": "2023-04-05T21:22:32Z" + "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", + "creationTime": "2023-04-05T16:51:31Z", + "deletionTime": "2023-04-05T16:51:58Z" } ] } }, { - "name": "d8af4291-a857-435c-9e68-add9be61e3e3", + "name": "a181c3ee-171b-4481-b30c-623238c24d41", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", "properties": { - "accountName": "r-grem-db-account-4408", + "accountName": "restoredaccount-5402", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:38:27Z", - "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", - "creationTime": "2023-04-05T21:38:28Z", - "deletionTime": "2023-04-05T21:39:23Z" + "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", + "creationTime": "2023-04-05T17:14:52Z", + "deletionTime": "2023-04-05T17:15:48Z" } ] } }, { - "name": "2348e86d-d845-4023-a61c-52a7c4998681", + "name": "115d217b-1e58-4653-af7e-756be6313d6e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", "properties": { - "accountName": "r-grem-db-account-3493", + "accountName": "r-database-account-5935", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:53:12Z", - "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T16:56:31Z", + "deletionTime": "2023-04-05T17:15:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", - "creationTime": "2023-04-05T21:53:13Z", - "deletionTime": "2023-04-05T22:10:15Z" + "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", + "creationTime": "2023-04-05T16:56:32Z", + "deletionTime": "2023-04-05T17:15:52Z" } ] } }, { - "name": "10d05397-ea2c-4d64-a325-da1097b67a30", + "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", "properties": { - "accountName": "restoredaccount-7617", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-339", + "apiType": "Sql", + "creationTime": "2023-04-05T17:17:47Z", + "deletionTime": "2023-04-05T17:34:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z" + "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", + "creationTime": "2023-04-05T17:17:48Z", + "deletionTime": "2023-04-05T17:34:52Z" } ] } }, { - "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "name": "4350889f-8316-4611-8c7b-0de037f83cb3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", "properties": { - "accountName": "r-grem-db-account-4657", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:37:57Z", - "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-6292", + "apiType": "Sql", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", - "creationTime": "2023-04-05T22:37:58Z", - "deletionTime": "2023-04-05T22:57:18Z" + "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", + "creationTime": "2023-04-05T17:34:16Z", + "deletionTime": "2023-04-05T17:34:53Z" } ] } }, { - "name": "b9c23cc0-13f3-4895-8534-809a00376677", + "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", "properties": { - "accountName": "restoredaccount-1097", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-8514", + "apiType": "Table, Sql", + "creationTime": "2023-04-05T17:39:47Z", + "deletionTime": "2023-04-05T17:58:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z" + "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", + "creationTime": "2023-04-05T17:39:48Z", + "deletionTime": "2023-04-05T17:58:43Z" } ] } }, { - "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", + "name": "e39d66a9-028e-499d-b488-fde2e53814c5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", "properties": { - "accountName": "r-table-account-4377", + "accountName": "restoredaccount-9641", "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:25:55Z", - "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", - "creationTime": "2023-04-05T23:25:56Z", - "deletionTime": "2023-04-05T23:27:10Z" + "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", + "creationTime": "2023-04-05T17:57:46Z", + "deletionTime": "2023-04-05T17:58:45Z" } ] } }, { - "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", + "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", "properties": { - "accountName": "r-table-account-1415", + "accountName": "restoredaccount-2652", "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:41:00Z", - "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", - "creationTime": "2023-04-05T23:41:01Z", - "deletionTime": "2023-04-05T23:59:07Z" + "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", + "creationTime": "2023-04-05T18:20:21Z", + "deletionTime": "2023-04-05T18:21:00Z" } ] } }, { - "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", + "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", "properties": { - "accountName": "restoredaccount-5386", + "accountName": "r-database-account-20", "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T18:03:36Z", + "deletionTime": "2023-04-05T18:21:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z" + "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", + "creationTime": "2023-04-05T18:03:37Z", + "deletionTime": "2023-04-05T18:21:00Z" } ] } }, { - "name": "701f814c-13b7-4144-b75c-52946e6946cb", + "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", "properties": { - "accountName": "r-table-account-6354", + "accountName": "r-database-account-727", "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:26:22Z", - "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T18:25:45Z", + "deletionTime": "2023-04-05T18:27:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", - "creationTime": "2023-04-06T00:26:23Z", - "deletionTime": "2023-04-06T00:43:42Z" + "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", + "creationTime": "2023-04-05T18:25:47Z", + "deletionTime": "2023-04-05T18:27:03Z" } ] } }, { - "name": "a96f997d-2cbf-4a64-b917-c776e6908601", + "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", "properties": { - "accountName": "restoredaccount-3726", + "accountName": "r-database-account-2209", "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T18:38:04Z", + "deletionTime": "2023-04-05T18:40:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z" + "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", + "creationTime": "2023-04-05T18:38:05Z", + "deletionTime": "2023-04-05T18:40:00Z" } ] } }, { - "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "name": "e106c7e7-2828-4193-b125-0540ec42f85a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", "properties": { - "accountName": "r-table-account-6883", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:10:50Z", - "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-3109", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:15:20Z", + "deletionTime": "2023-04-05T19:17:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", - "creationTime": "2023-04-06T01:10:51Z", - "deletionTime": "2023-04-06T01:12:24Z" + "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", + "creationTime": "2023-04-05T19:15:21Z", + "deletionTime": "2023-04-05T19:17:06Z" } ] } }, { - "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "name": "19b77f33-9070-4bea-89ec-83ad22c59136", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", "properties": { - "accountName": "r-table-account-5301", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:30:03Z", - "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-3153", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:32:53Z", + "deletionTime": "2023-04-05T19:33:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", - "creationTime": "2023-04-06T01:30:04Z", - "deletionTime": "2023-04-06T01:31:00Z" + "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", + "creationTime": "2023-04-05T19:32:54Z", + "deletionTime": "2023-04-05T19:33:59Z" } ] } }, { - "name": "999e9d75-47c8-4230-8a4e-677ee461269b", + "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", "properties": { - "accountName": "r-database-account-3960", - "apiType": "Sql", - "creationTime": "2023-04-06T02:16:51Z", - "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-6612", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T19:47:56Z", + "deletionTime": "2023-04-05T20:04:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", - "creationTime": "2023-04-06T02:16:52Z", - "deletionTime": "2023-04-06T02:17:49Z" + "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", + "creationTime": "2023-04-05T19:47:57Z", + "deletionTime": "2023-04-05T20:04:52Z" } ] } }, { - "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", "properties": { - "accountName": "r-database-account-6028", - "apiType": "Sql", - "creationTime": "2023-04-06T02:27:53Z", - "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-5075", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", - "creationTime": "2023-04-06T02:27:54Z", - "deletionTime": "2023-04-06T02:44:39Z" + "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", + "creationTime": "2023-04-05T20:03:59Z", + "deletionTime": "2023-04-05T20:16:10Z" } ] } }, { - "name": "3065e921-a49b-43d6-84aa-037f18987a23", + "name": "57958516-07cd-498b-b42b-d8bbde38fc72", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", "properties": { - "accountName": "restoredaccount-7075", - "apiType": "Sql", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-2460", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:32:03Z", + "deletionTime": "2023-04-05T20:52:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z" + "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", + "creationTime": "2023-04-05T20:32:04Z", + "deletionTime": "2023-04-05T20:52:58Z" } ] } }, { - "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", + "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", "properties": { - "accountName": "r-database-account-5983", - "apiType": "Sql", - "creationTime": "2023-04-06T03:09:16Z", - "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-9191", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", - "creationTime": "2023-04-06T03:09:18Z", - "deletionTime": "2023-04-06T03:10:13Z" + "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", + "creationTime": "2023-04-05T20:52:26Z", + "deletionTime": "2023-04-05T21:04:48Z" } ] } }, { - "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", "properties": { - "accountName": "r-database-account-7214", - "apiType": "Sql", - "creationTime": "2023-04-06T03:20:49Z", - "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-917", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:20:40Z", + "deletionTime": "2023-04-05T21:22:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", - "creationTime": "2023-04-06T03:20:50Z", - "deletionTime": "2023-04-06T03:37:02Z" + "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", + "creationTime": "2023-04-05T21:20:41Z", + "deletionTime": "2023-04-05T21:22:32Z" } ] } }, { - "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", + "name": "d8af4291-a857-435c-9e68-add9be61e3e3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", "properties": { - "accountName": "restoredaccount-1487", - "apiType": "Sql", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-4408", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:38:27Z", + "deletionTime": "2023-04-05T21:39:23Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z" + "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", + "creationTime": "2023-04-05T21:38:28Z", + "deletionTime": "2023-04-05T21:39:23Z" } ] } }, { - "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", + "name": "2348e86d-d845-4023-a61c-52a7c4998681", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", "properties": { - "accountName": "r-table-account-2891", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:02:47Z", - "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-3493", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T21:53:12Z", + "deletionTime": "2023-04-05T22:10:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", - "creationTime": "2023-04-06T04:02:48Z", - "deletionTime": "2023-04-06T04:03:49Z" + "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", + "creationTime": "2023-04-05T21:53:13Z", + "deletionTime": "2023-04-05T22:10:15Z" } ] } }, { - "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "name": "10d05397-ea2c-4d64-a325-da1097b67a30", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", "properties": { - "accountName": "r-table-account-7603", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:18:01Z", - "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7617", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", - "creationTime": "2023-04-06T04:18:02Z", - "deletionTime": "2023-04-06T04:36:17Z" + "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", + "creationTime": "2023-04-05T22:09:33Z", + "deletionTime": "2023-04-05T22:22:05Z" } ] } }, { - "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", + "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", "properties": { - "accountName": "restoredaccount-1355", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-4657", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:37:57Z", + "deletionTime": "2023-04-05T22:57:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z" + "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", + "creationTime": "2023-04-05T22:37:58Z", + "deletionTime": "2023-04-05T22:57:18Z" } ] } }, { - "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", + "name": "b9c23cc0-13f3-4895-8534-809a00376677", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", "properties": { - "accountName": "r-table-account-6373", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:05:15Z", - "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-1097", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", - "creationTime": "2023-04-06T05:05:16Z", - "deletionTime": "2023-04-06T05:22:50Z" + "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", + "creationTime": "2023-04-05T22:56:24Z", + "deletionTime": "2023-04-05T23:09:40Z" } ] } }, { - "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", "properties": { - "accountName": "restoredaccount-665", + "accountName": "r-table-account-4377", "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T23:25:55Z", + "deletionTime": "2023-04-05T23:27:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z" + "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", + "creationTime": "2023-04-05T23:25:56Z", + "deletionTime": "2023-04-05T23:27:10Z" } ] } }, { - "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", + "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", "properties": { - "accountName": "r-table-account-1188", + "accountName": "r-table-account-1415", "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:50:20Z", - "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T23:41:00Z", + "deletionTime": "2023-04-05T23:59:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", - "creationTime": "2023-04-06T05:50:21Z", - "deletionTime": "2023-04-06T05:52:03Z" + "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", + "creationTime": "2023-04-05T23:41:01Z", + "deletionTime": "2023-04-05T23:59:07Z" } ] } }, { - "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", + "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", "properties": { - "accountName": "r-table-account-5261", + "accountName": "restoredaccount-5386", "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:08:10Z", - "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", - "creationTime": "2023-04-06T06:08:11Z", - "deletionTime": "2023-04-06T06:09:02Z" + "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", + "creationTime": "2023-04-05T23:58:12Z", + "deletionTime": "2023-04-06T00:10:28Z" } ] } }, { - "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", + "name": "701f814c-13b7-4144-b75c-52946e6946cb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", "properties": { - "accountName": "r-grem-db-account-723", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:39:44Z", - "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6354", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:26:22Z", + "deletionTime": "2023-04-06T00:43:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", - "creationTime": "2023-04-06T06:39:45Z", - "deletionTime": "2023-04-06T06:41:33Z" + "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", + "creationTime": "2023-04-06T00:26:23Z", + "deletionTime": "2023-04-06T00:43:42Z" } ] } }, { - "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", + "name": "a96f997d-2cbf-4a64-b917-c776e6908601", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", "properties": { - "accountName": "r-grem-db-account-7969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:58:36Z", - "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3726", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", - "creationTime": "2023-04-06T06:58:37Z", - "deletionTime": "2023-04-06T06:59:36Z" + "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", + "creationTime": "2023-04-06T00:42:49Z", + "deletionTime": "2023-04-06T00:54:59Z" } ] } }, { - "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", + "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", "properties": { - "accountName": "r-grem-db-account-2577", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:15:43Z", - "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6883", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:10:50Z", + "deletionTime": "2023-04-06T01:12:24Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", - "creationTime": "2023-04-06T07:15:45Z", - "deletionTime": "2023-04-06T07:33:07Z" + "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", + "creationTime": "2023-04-06T01:10:51Z", + "deletionTime": "2023-04-06T01:12:24Z" } ] } }, { - "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", "properties": { - "accountName": "restoredaccount-693", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-5301", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T01:30:03Z", + "deletionTime": "2023-04-06T01:31:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z" + "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", + "creationTime": "2023-04-06T01:30:04Z", + "deletionTime": "2023-04-06T01:31:00Z" } ] } }, { - "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", + "name": "999e9d75-47c8-4230-8a4e-677ee461269b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", "properties": { - "accountName": "r-grem-db-account-4601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:00:25Z", - "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3960", + "apiType": "Sql", + "creationTime": "2023-04-06T02:16:51Z", + "deletionTime": "2023-04-06T02:17:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", - "creationTime": "2023-04-06T08:00:26Z", - "deletionTime": "2023-04-06T08:20:12Z" + "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", + "creationTime": "2023-04-06T02:16:52Z", + "deletionTime": "2023-04-06T02:17:49Z" } ] } }, { - "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", "properties": { - "accountName": "restoredaccount-1430", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-6028", + "apiType": "Sql", + "creationTime": "2023-04-06T02:27:53Z", + "deletionTime": "2023-04-06T02:44:39Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z" + "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", + "creationTime": "2023-04-06T02:27:54Z", + "deletionTime": "2023-04-06T02:44:39Z" } ] } }, { - "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "name": "3065e921-a49b-43d6-84aa-037f18987a23", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", "properties": { - "accountName": "r-grem-db-account-7507", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:48:00Z", - "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7075", + "apiType": "Sql", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", - "creationTime": "2023-04-06T08:48:01Z", - "deletionTime": "2023-04-06T08:49:48Z" + "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", + "creationTime": "2023-04-06T02:43:55Z", + "deletionTime": "2023-04-06T02:55:24Z" } ] } }, { - "name": "a8bfadea-a883-491c-8311-3202491cfe5d", + "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", "properties": { - "accountName": "r-grem-db-account-2606", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:05:50Z", - "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-5983", + "apiType": "Sql", + "creationTime": "2023-04-06T03:09:16Z", + "deletionTime": "2023-04-06T03:10:13Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", - "creationTime": "2023-04-06T09:05:51Z", - "deletionTime": "2023-04-06T09:06:43Z" + "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", + "creationTime": "2023-04-06T03:09:18Z", + "deletionTime": "2023-04-06T03:10:13Z" } ] } }, { - "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", "properties": { - "accountName": "r-grem-db-account-6681", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:21:06Z", - "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-7214", + "apiType": "Sql", + "creationTime": "2023-04-06T03:20:49Z", + "deletionTime": "2023-04-06T03:37:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", - "creationTime": "2023-04-06T09:21:07Z", - "deletionTime": "2023-04-06T09:38:10Z" + "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", + "creationTime": "2023-04-06T03:20:50Z", + "deletionTime": "2023-04-06T03:37:02Z" } ] } }, { - "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", "properties": { - "accountName": "restoredaccount-4215", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-1487", + "apiType": "Sql", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z" + "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", + "creationTime": "2023-04-06T03:36:32Z", + "deletionTime": "2023-04-06T03:47:16Z" } ] } }, { - "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", + "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", "properties": { - "accountName": "r-grem-db-account-846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:06:04Z", - "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-2891", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:02:47Z", + "deletionTime": "2023-04-06T04:03:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", - "creationTime": "2023-04-06T10:06:06Z", - "deletionTime": "2023-04-06T10:25:18Z" + "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", + "creationTime": "2023-04-06T04:02:48Z", + "deletionTime": "2023-04-06T04:03:49Z" } ] } }, { - "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", "properties": { - "accountName": "restoredaccount-5193", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-7603", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T04:18:01Z", + "deletionTime": "2023-04-06T04:36:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z" + "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", + "creationTime": "2023-04-06T04:18:02Z", + "deletionTime": "2023-04-06T04:36:17Z" } ] } }, { - "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", "properties": { - "accountName": "r-table-account-6567", + "accountName": "restoredaccount-1355", "apiType": "Table, Sql", - "creationTime": "2023-04-06T10:53:20Z", - "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", - "creationTime": "2023-04-06T10:53:21Z", - "deletionTime": "2023-04-06T10:54:04Z" + "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", + "creationTime": "2023-04-06T04:35:28Z", + "deletionTime": "2023-04-06T04:48:01Z" } ] } }, { - "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", "properties": { - "accountName": "r-table-account-6921", + "accountName": "r-table-account-6373", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:08:49Z", - "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T05:05:15Z", + "deletionTime": "2023-04-06T05:22:50Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", - "creationTime": "2023-04-06T11:08:51Z", - "deletionTime": "2023-04-06T11:27:03Z" + "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", + "creationTime": "2023-04-06T05:05:16Z", + "deletionTime": "2023-04-06T05:22:50Z" } ] } }, { - "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", + "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", "properties": { - "accountName": "restoredaccount-7286", + "accountName": "restoredaccount-665", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z" + "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", + "creationTime": "2023-04-06T05:22:06Z", + "deletionTime": "2023-04-06T05:34:09Z" } ] } }, { - "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", "properties": { - "accountName": "r-table-account-5254", + "accountName": "r-table-account-1188", "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:54:50Z", - "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T05:50:20Z", + "deletionTime": "2023-04-06T05:52:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", - "creationTime": "2023-04-06T11:54:51Z", - "deletionTime": "2023-04-06T12:11:56Z" + "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", + "creationTime": "2023-04-06T05:50:21Z", + "deletionTime": "2023-04-06T05:52:03Z" } ] } }, { - "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", "properties": { - "accountName": "restoredaccount-6482", + "accountName": "r-table-account-5261", "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T06:08:10Z", + "deletionTime": "2023-04-06T06:09:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z" + "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", + "creationTime": "2023-04-06T06:08:11Z", + "deletionTime": "2023-04-06T06:09:02Z" } ] } }, { - "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", "properties": { - "accountName": "r-table-account-7579", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:39:46Z", - "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-723", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:39:44Z", + "deletionTime": "2023-04-06T06:41:33Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", - "creationTime": "2023-04-06T12:39:48Z", - "deletionTime": "2023-04-06T12:41:09Z" + "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", + "creationTime": "2023-04-06T06:39:45Z", + "deletionTime": "2023-04-06T06:41:33Z" } ] } }, { - "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", + "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", "properties": { - "accountName": "cliz2xezqib6sfs", - "apiType": "Sql", - "creationTime": "2023-04-06T17:48:58Z", - "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-7969", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T06:58:36Z", + "deletionTime": "2023-04-06T06:59:36Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", - "creationTime": "2023-04-06T17:48:59Z", - "deletionTime": "2023-04-06T17:51:37Z" + "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", + "creationTime": "2023-04-06T06:58:37Z", + "deletionTime": "2023-04-06T06:59:36Z" } ] } }, { - "name": "d4eb1a5c-fa82-416b-8765-73105541441a", + "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", "properties": { - "accountName": "climxyj6ppdtdi3", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:23Z", - "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-2577", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T07:15:43Z", + "deletionTime": "2023-04-06T07:33:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", - "creationTime": "2023-04-06T17:50:24Z", - "deletionTime": "2023-04-06T17:53:09Z" + "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", + "creationTime": "2023-04-06T07:15:45Z", + "deletionTime": "2023-04-06T07:33:07Z" } ] } }, { - "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", + "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", "properties": { - "accountName": "clinhlpp5ltdx45", + "accountName": "restoredaccount-693", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:16Z", - "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", - "creationTime": "2023-04-06T17:50:17Z", - "deletionTime": "2023-04-06T17:53:35Z" + "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", + "creationTime": "2023-04-06T07:32:21Z", + "deletionTime": "2023-04-06T07:44:25Z" } ] } }, { - "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", "properties": { - "accountName": "clicvlfgrzahmvn", + "accountName": "r-grem-db-account-4601", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:25Z", - "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T08:00:25Z", + "deletionTime": "2023-04-06T08:20:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T17:54:37Z" + "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", + "creationTime": "2023-04-06T08:00:26Z", + "deletionTime": "2023-04-06T08:20:12Z" } ] } }, { - "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", "properties": { - "accountName": "cli3hfttbxzir22", - "apiType": "Sql", - "creationTime": "2023-04-06T17:53:13Z", - "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-1430", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", - "creationTime": "2023-04-06T17:53:14Z", - "deletionTime": "2023-04-06T17:55:25Z" + "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", + "creationTime": "2023-04-06T08:18:51Z", + "deletionTime": "2023-04-06T08:31:30Z" } ] } }, { - "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", + "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", "properties": { - "accountName": "clioyp6agdkdrvk", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:56:23Z", - "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-7507", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T08:48:00Z", + "deletionTime": "2023-04-06T08:49:48Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", - "creationTime": "2023-04-06T17:56:24Z", - "deletionTime": "2023-04-06T17:58:30Z" + "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", + "creationTime": "2023-04-06T08:48:01Z", + "deletionTime": "2023-04-06T08:49:48Z" } ] } }, { - "name": "c4ce576d-4033-4b12-a450-daa13093cf34", + "name": "a8bfadea-a883-491c-8311-3202491cfe5d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", "properties": { - "accountName": "clipniczjve2l4q", + "accountName": "r-grem-db-account-2606", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:56:45Z", - "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T09:05:50Z", + "deletionTime": "2023-04-06T09:06:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", - "creationTime": "2023-04-06T17:56:46Z", - "deletionTime": "2023-04-06T17:58:52Z" + "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", + "creationTime": "2023-04-06T09:05:51Z", + "deletionTime": "2023-04-06T09:06:43Z" } ] } }, { - "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", + "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", "properties": { - "accountName": "clitae37flgxvip", - "apiType": "Sql", - "creationTime": "2023-04-06T17:57:03Z", - "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-6681", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:21:06Z", + "deletionTime": "2023-04-06T09:38:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", - "creationTime": "2023-04-06T17:57:04Z", - "deletionTime": "2023-04-06T17:58:56Z" + "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", + "creationTime": "2023-04-06T09:21:07Z", + "deletionTime": "2023-04-06T09:38:10Z" } ] } }, { - "name": "16cd72d1-8782-4faa-9e06-263055e4a852", + "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", "properties": { - "accountName": "cliqeiwdwhcytpv", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:06Z", - "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4215", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", - "creationTime": "2023-04-06T18:02:07Z", - "deletionTime": "2023-04-06T18:02:32Z" + "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", + "creationTime": "2023-04-06T09:37:24Z", + "deletionTime": "2023-04-06T09:49:59Z" } ] } }, { - "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", + "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", "properties": { - "accountName": "cling2ssmapqjtb", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:20Z", - "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-846", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:06:04Z", + "deletionTime": "2023-04-06T10:25:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", - "creationTime": "2023-04-06T18:02:21Z", - "deletionTime": "2023-04-06T18:03:00Z" + "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", + "creationTime": "2023-04-06T10:06:06Z", + "deletionTime": "2023-04-06T10:25:18Z" } ] } }, { - "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", + "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", "properties": { - "accountName": "clic7r4mbsoucoq", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-5193", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", - "creationTime": "2023-04-06T17:50:27Z", - "deletionTime": "2023-04-06T18:04:54Z" + "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", + "creationTime": "2023-04-06T10:24:32Z", + "deletionTime": "2023-04-06T10:36:34Z" } ] } }, { - "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", + "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", "properties": { - "accountName": "cli6dll5uxhswmo", - "apiType": "Sql", - "creationTime": "2023-04-06T17:49:07Z", - "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6567", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T10:53:20Z", + "deletionTime": "2023-04-06T10:54:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", - "creationTime": "2023-04-06T17:49:08Z", - "deletionTime": "2023-04-06T18:08:24Z" + "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", + "creationTime": "2023-04-06T10:53:21Z", + "deletionTime": "2023-04-06T10:54:04Z" } ] } }, { - "name": "12fd85da-0738-45bc-a4ca-3576006082e6", + "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", "properties": { - "accountName": "restoredaccount-7559", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6921", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:08:49Z", + "deletionTime": "2023-04-06T11:27:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z" + "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", + "creationTime": "2023-04-06T11:08:51Z", + "deletionTime": "2023-04-06T11:27:03Z" } ] } }, { - "name": "730730ee-ee98-48bf-9c87-a38abac5781d", + "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", "properties": { - "accountName": "r-grem-db-account-3799", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:54:33Z", - "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7286", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", - "creationTime": "2023-04-06T17:54:34Z", - "deletionTime": "2023-04-06T18:11:45Z" + "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", + "creationTime": "2023-04-06T11:26:24Z", + "deletionTime": "2023-04-06T11:38:07Z" } ] } }, { - "name": "a331a0ab-07a6-4831-827d-30e513076c75", + "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", "properties": { - "accountName": "r-grem-db-account-8345", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:39Z", - "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-5254", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T11:54:50Z", + "deletionTime": "2023-04-06T12:11:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", - "creationTime": "2023-04-06T18:35:40Z", - "deletionTime": "2023-04-06T18:52:37Z" + "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", + "creationTime": "2023-04-06T11:54:51Z", + "deletionTime": "2023-04-06T12:11:56Z" } ] } }, { - "name": "c20213cc-0b64-4141-abdc-45f028e756fd", + "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", "properties": { - "accountName": "restoredaccount-3447", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-6482", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z" + "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", + "creationTime": "2023-04-06T12:11:15Z", + "deletionTime": "2023-04-06T12:23:13Z" } ] } }, { - "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", "properties": { - "accountName": "r-grem-db-account-6227", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:23:52Z", - "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-7579", + "apiType": "Table, Sql", + "creationTime": "2023-04-06T12:39:46Z", + "deletionTime": "2023-04-06T12:41:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", - "creationTime": "2023-04-06T19:23:53Z", - "deletionTime": "2023-04-06T19:41:19Z" + "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", + "creationTime": "2023-04-06T12:39:48Z", + "deletionTime": "2023-04-06T12:41:09Z" } ] } }, { - "name": "4228ce2e-f496-4131-a7b4-a093f4644646", + "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", "properties": { - "accountName": "restoredaccount-601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cliz2xezqib6sfs", + "apiType": "Sql", + "creationTime": "2023-04-06T17:48:58Z", + "deletionTime": "2023-04-06T17:51:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z" + "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", + "creationTime": "2023-04-06T17:48:59Z", + "deletionTime": "2023-04-06T17:51:37Z" } ] } }, { - "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "name": "d4eb1a5c-fa82-416b-8765-73105541441a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", "properties": { - "accountName": "r-database-account-3957", - "apiType": "Sql", - "creationTime": "2023-04-06T20:07:56Z", - "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "climxyj6ppdtdi3", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:23Z", + "deletionTime": "2023-04-06T17:53:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", - "creationTime": "2023-04-06T20:07:57Z", - "deletionTime": "2023-04-06T20:08:54Z" + "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", + "creationTime": "2023-04-06T17:50:24Z", + "deletionTime": "2023-04-06T17:53:09Z" } ] } }, { - "name": "53ad2502-1710-406d-84e3-296fce5bd44a", + "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", "properties": { - "accountName": "r-database-account-9163", - "apiType": "Sql", - "creationTime": "2023-04-06T20:19:51Z", - "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clinhlpp5ltdx45", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:16Z", + "deletionTime": "2023-04-06T17:53:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", - "creationTime": "2023-04-06T20:19:52Z", - "deletionTime": "2023-04-06T20:36:03Z" + "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", + "creationTime": "2023-04-06T17:50:17Z", + "deletionTime": "2023-04-06T17:53:35Z" } ] } }, { - "name": "70ea9f86-be31-455a-b5be-791409c2b437", + "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", "properties": { - "accountName": "restoredaccount-7173", - "apiType": "Sql", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clicvlfgrzahmvn", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:50:25Z", + "deletionTime": "2023-04-06T17:54:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z" + "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T17:54:37Z" } ] } }, { - "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", + "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", "properties": { - "accountName": "r-database-account-3610", + "accountName": "cli3hfttbxzir22", "apiType": "Sql", - "creationTime": "2023-04-06T21:00:14Z", - "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T17:53:13Z", + "deletionTime": "2023-04-06T17:55:25Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", - "creationTime": "2023-04-06T21:00:15Z", - "deletionTime": "2023-04-06T21:01:06Z" + "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", + "creationTime": "2023-04-06T17:53:14Z", + "deletionTime": "2023-04-06T17:55:25Z" } ] } }, { - "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", "properties": { - "accountName": "r-database-account-2590", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:43Z", - "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clioyp6agdkdrvk", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:56:23Z", + "deletionTime": "2023-04-06T17:58:30Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", - "creationTime": "2023-04-06T21:11:44Z", - "deletionTime": "2023-04-06T21:29:03Z" + "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", + "creationTime": "2023-04-06T17:56:24Z", + "deletionTime": "2023-04-06T17:58:30Z" } ] } }, { - "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "name": "c4ce576d-4033-4b12-a450-daa13093cf34", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", "properties": { - "accountName": "restoredaccount-5783", - "apiType": "Sql", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clipniczjve2l4q", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T17:56:45Z", + "deletionTime": "2023-04-06T17:58:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z" + "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", + "creationTime": "2023-04-06T17:56:46Z", + "deletionTime": "2023-04-06T17:58:52Z" } ] } }, { - "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", + "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", "properties": { - "accountName": "r-grem-db-account-360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T21:54:18Z", - "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clitae37flgxvip", + "apiType": "Sql", + "creationTime": "2023-04-06T17:57:03Z", + "deletionTime": "2023-04-06T17:58:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", - "creationTime": "2023-04-06T21:54:19Z", - "deletionTime": "2023-04-06T21:55:57Z" + "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", + "creationTime": "2023-04-06T17:57:04Z", + "deletionTime": "2023-04-06T17:58:56Z" } ] } }, { - "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", + "name": "16cd72d1-8782-4faa-9e06-263055e4a852", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", "properties": { - "accountName": "r-grem-db-account-5702", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:13:06Z", - "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cliqeiwdwhcytpv", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:06Z", + "deletionTime": "2023-04-06T18:02:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", - "creationTime": "2023-04-06T22:13:07Z", - "deletionTime": "2023-04-06T22:13:57Z" + "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", + "creationTime": "2023-04-06T18:02:07Z", + "deletionTime": "2023-04-06T18:02:32Z" } ] } }, { - "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", "properties": { - "accountName": "r-grem-db-account-7080", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:28:25Z", - "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cling2ssmapqjtb", + "apiType": "Sql", + "creationTime": "2023-04-06T18:02:20Z", + "deletionTime": "2023-04-06T18:03:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", - "creationTime": "2023-04-06T22:28:26Z", - "deletionTime": "2023-04-06T22:45:55Z" + "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", + "creationTime": "2023-04-06T18:02:21Z", + "deletionTime": "2023-04-06T18:03:00Z" } ] } }, { - "name": "0045cc2f-f262-44f7-94be-a8a81258114b", + "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", "properties": { - "accountName": "restoredaccount-3266", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clic7r4mbsoucoq", + "apiType": "MongoDB", + "creationTime": "2023-04-06T17:50:26Z", + "deletionTime": "2023-04-06T18:04:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z" + "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", + "creationTime": "2023-04-06T17:50:27Z", + "deletionTime": "2023-04-06T18:04:54Z" } ] } }, { - "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", + "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", "properties": { - "accountName": "r-grem-db-account-8379", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:13:12Z", - "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cli6dll5uxhswmo", + "apiType": "Sql", + "creationTime": "2023-04-06T17:49:07Z", + "deletionTime": "2023-04-06T18:08:24Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", - "creationTime": "2023-04-06T23:13:14Z", - "deletionTime": "2023-04-06T23:33:31Z" + "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", + "creationTime": "2023-04-06T17:49:08Z", + "deletionTime": "2023-04-06T18:08:24Z" } ] } }, { - "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "name": "12fd85da-0738-45bc-a4ca-3576006082e6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", "properties": { - "accountName": "restoredaccount-4898", + "accountName": "restoredaccount-7559", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z" + "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", + "creationTime": "2023-04-06T18:11:17Z", + "deletionTime": "2023-04-06T18:11:42Z" } ] } }, { - "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "name": "730730ee-ee98-48bf-9c87-a38abac5781d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", "properties": { - "accountName": "r-grem-db-account-97", + "accountName": "r-grem-db-account-3799", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:01:21Z", - "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T17:54:33Z", + "deletionTime": "2023-04-06T18:11:45Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", - "creationTime": "2023-04-07T00:01:22Z", - "deletionTime": "2023-04-07T00:03:03Z" + "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", + "creationTime": "2023-04-06T17:54:34Z", + "deletionTime": "2023-04-06T18:11:45Z" } ] } }, { - "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", + "name": "a331a0ab-07a6-4831-827d-30e513076c75", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", "properties": { - "accountName": "r-grem-db-account-359", + "accountName": "r-grem-db-account-8345", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:19:33Z", - "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:35:39Z", + "deletionTime": "2023-04-06T18:52:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", - "creationTime": "2023-04-07T00:19:34Z", - "deletionTime": "2023-04-07T00:20:32Z" + "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", + "creationTime": "2023-04-06T18:35:40Z", + "deletionTime": "2023-04-06T18:52:37Z" } ] } }, { - "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "name": "c20213cc-0b64-4141-abdc-45f028e756fd", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", "properties": { - "accountName": "r-grem-db-account-6322", + "accountName": "restoredaccount-3447", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:35:00Z", - "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", - "creationTime": "2023-04-07T00:35:01Z", - "deletionTime": "2023-04-07T00:51:27Z" + "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", + "creationTime": "2023-04-06T18:51:56Z", + "deletionTime": "2023-04-06T19:03:53Z" } ] } }, { - "name": "89acddd1-7338-4be9-b3f3-a7c060975428", + "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", "properties": { - "accountName": "restoredaccount-3920", + "accountName": "r-grem-db-account-6227", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T19:23:52Z", + "deletionTime": "2023-04-06T19:41:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z" + "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", + "creationTime": "2023-04-06T19:23:53Z", + "deletionTime": "2023-04-06T19:41:19Z" } ] } }, { - "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "name": "4228ce2e-f496-4131-a7b4-a093f4644646", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", "properties": { - "accountName": "r-grem-db-account-1985", + "accountName": "restoredaccount-601", "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:20:59Z", - "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", - "creationTime": "2023-04-07T01:21:01Z", - "deletionTime": "2023-04-07T01:39:59Z" + "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", + "creationTime": "2023-04-06T19:40:27Z", + "deletionTime": "2023-04-06T19:53:09Z" } ] } }, { - "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", "properties": { - "accountName": "restoredaccount-2245", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3957", + "apiType": "Sql", + "creationTime": "2023-04-06T20:07:56Z", + "deletionTime": "2023-04-06T20:08:54Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z" + "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", + "creationTime": "2023-04-06T20:07:57Z", + "deletionTime": "2023-04-06T20:08:54Z" } ] } }, { - "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "name": "53ad2502-1710-406d-84e3-296fce5bd44a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", "properties": { - "accountName": "r-table-account-6589", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:08:08Z", - "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-9163", + "apiType": "Sql", + "creationTime": "2023-04-06T20:19:51Z", + "deletionTime": "2023-04-06T20:36:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", - "creationTime": "2023-04-07T02:08:09Z", - "deletionTime": "2023-04-07T02:09:18Z" + "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", + "creationTime": "2023-04-06T20:19:52Z", + "deletionTime": "2023-04-06T20:36:03Z" } ] } }, { - "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", + "name": "70ea9f86-be31-455a-b5be-791409c2b437", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", "properties": { - "accountName": "r-table-account-455", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:23:44Z", - "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7173", + "apiType": "Sql", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", - "creationTime": "2023-04-07T02:23:45Z", - "deletionTime": "2023-04-07T02:42:21Z" + "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", + "creationTime": "2023-04-06T20:35:29Z", + "deletionTime": "2023-04-06T20:46:16Z" } ] } }, { - "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", "properties": { - "accountName": "restoredaccount-27", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-3610", + "apiType": "Sql", + "creationTime": "2023-04-06T21:00:14Z", + "deletionTime": "2023-04-06T21:01:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z" + "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", + "creationTime": "2023-04-06T21:00:15Z", + "deletionTime": "2023-04-06T21:01:06Z" } ] } }, { - "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", "properties": { - "accountName": "r-table-account-4096", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:09:53Z", - "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-database-account-2590", + "apiType": "Sql", + "creationTime": "2023-04-06T21:11:43Z", + "deletionTime": "2023-04-06T21:29:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", - "creationTime": "2023-04-07T03:09:54Z", - "deletionTime": "2023-04-07T03:26:55Z" + "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", + "creationTime": "2023-04-06T21:11:44Z", + "deletionTime": "2023-04-06T21:29:03Z" } ] } }, { - "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", + "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", "properties": { - "accountName": "restoredaccount-1168", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-5783", + "apiType": "Sql", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z" + "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", + "creationTime": "2023-04-06T21:28:23Z", + "deletionTime": "2023-04-06T21:39:17Z" } ] } }, { - "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", + "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", "properties": { - "accountName": "r-table-account-6117", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:54:19Z", - "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-360", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T21:54:18Z", + "deletionTime": "2023-04-06T21:55:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", - "creationTime": "2023-04-07T03:54:20Z", - "deletionTime": "2023-04-07T03:55:39Z" + "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", + "creationTime": "2023-04-06T21:54:19Z", + "deletionTime": "2023-04-06T21:55:57Z" } ] } }, { - "name": "0554d9f5-654a-4d8b-b684-27f659539579", + "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", "properties": { - "accountName": "r-table-account-5255", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:11:45Z", - "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-5702", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:13:06Z", + "deletionTime": "2023-04-06T22:13:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", - "creationTime": "2023-04-07T04:11:47Z", - "deletionTime": "2023-04-07T04:12:39Z" + "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", + "creationTime": "2023-04-06T22:13:07Z", + "deletionTime": "2023-04-06T22:13:57Z" } ] } }, { - "name": "fece0537-1813-4eca-ba83-43a475cc913c", + "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", "properties": { - "accountName": "r-table-account-555", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:26:38Z", - "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-7080", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:28:25Z", + "deletionTime": "2023-04-06T22:45:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", - "creationTime": "2023-04-07T04:26:39Z", - "deletionTime": "2023-04-07T04:45:11Z" + "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", + "creationTime": "2023-04-06T22:28:26Z", + "deletionTime": "2023-04-06T22:45:55Z" } ] } }, { - "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "name": "0045cc2f-f262-44f7-94be-a8a81258114b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", "properties": { - "accountName": "restoredaccount-3867", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3266", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z" - } - ] + "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", + "creationTime": "2023-04-06T22:45:26Z", + "deletionTime": "2023-04-06T22:57:12Z" + } + ] } }, { - "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", "properties": { - "accountName": "r-table-account-4311", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:13:59Z", - "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-8379", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:13:12Z", + "deletionTime": "2023-04-06T23:33:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", - "creationTime": "2023-04-07T05:14:00Z", - "deletionTime": "2023-04-07T05:30:58Z" + "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", + "creationTime": "2023-04-06T23:13:14Z", + "deletionTime": "2023-04-06T23:33:31Z" } ] } }, { - "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", "properties": { - "accountName": "restoredaccount-7020", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-4898", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z" + "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", + "creationTime": "2023-04-06T23:32:37Z", + "deletionTime": "2023-04-06T23:45:21Z" } ] } }, { - "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", "properties": { - "accountName": "r-table-account-6934", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:58:40Z", - "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-97", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:01:21Z", + "deletionTime": "2023-04-07T00:03:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", - "creationTime": "2023-04-07T05:58:41Z", - "deletionTime": "2023-04-07T06:00:10Z" + "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", + "creationTime": "2023-04-07T00:01:22Z", + "deletionTime": "2023-04-07T00:03:03Z" } ] } }, { - "name": "6d446c65-d616-4aa3-8138-ed609a031011", + "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", "properties": { - "accountName": "cliz4gfhacxt3ra", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:02:28Z", - "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-359", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:19:33Z", + "deletionTime": "2023-04-07T00:20:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", - "creationTime": "2023-04-07T18:02:29Z", - "deletionTime": "2023-04-07T18:06:12Z" + "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", + "creationTime": "2023-04-07T00:19:34Z", + "deletionTime": "2023-04-07T00:20:32Z" } ] } }, { - "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", "properties": { - "accountName": "clizzr52zwge4ps", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:16:23Z", - "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-6322", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:35:00Z", + "deletionTime": "2023-04-07T00:51:27Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", - "creationTime": "2023-04-07T18:16:24Z", - "deletionTime": "2023-04-07T18:19:37Z" + "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", + "creationTime": "2023-04-07T00:35:01Z", + "deletionTime": "2023-04-07T00:51:27Z" } ] } }, { - "name": "ab946470-3753-427d-a821-ec8a57709a65", + "name": "89acddd1-7338-4be9-b3f3-a7c060975428", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", "properties": { - "accountName": "cliyfwfppqkfatd", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:23:09Z", - "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3920", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", - "creationTime": "2023-04-07T18:23:10Z", - "deletionTime": "2023-04-07T18:49:00Z" + "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", + "creationTime": "2023-04-07T00:51:03Z", + "deletionTime": "2023-04-07T01:03:16Z" } ] } }, { - "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", "properties": { - "accountName": "clinxdvetbmpu2e", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:54:49Z", - "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-grem-db-account-1985", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:20:59Z", + "deletionTime": "2023-04-07T01:39:59Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", - "creationTime": "2023-04-07T18:54:50Z", - "deletionTime": "2023-04-07T19:21:12Z" + "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", + "creationTime": "2023-04-07T01:21:01Z", + "deletionTime": "2023-04-07T01:39:59Z" } ] } }, { - "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", + "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", "properties": { - "accountName": "clilwpd6a2jivng", - "apiType": "Sql", - "creationTime": "2023-04-07T22:22:56Z", - "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-2245", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", - "creationTime": "2023-04-07T22:22:57Z", - "deletionTime": "2023-04-07T22:49:32Z" + "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", + "creationTime": "2023-04-07T01:39:12Z", + "deletionTime": "2023-04-07T01:51:17Z" } ] } }, { - "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", + "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", "properties": { - "accountName": "cli5ohlmiu76mcl", - "apiType": "Sql", - "creationTime": "2023-04-08T14:54:41Z", - "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6589", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:08:08Z", + "deletionTime": "2023-04-07T02:09:18Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", - "creationTime": "2023-04-08T14:54:42Z", - "deletionTime": "2023-04-08T15:00:16Z" + "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", + "creationTime": "2023-04-07T02:08:09Z", + "deletionTime": "2023-04-07T02:09:18Z" } ] } }, { - "name": "20547469-51f9-4bd8-af49-537306f0b327", + "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", "properties": { - "accountName": "clifmmb7dwsbns2", - "apiType": "Sql", - "creationTime": "2023-04-08T15:18:01Z", - "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-455", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:23:44Z", + "deletionTime": "2023-04-07T02:42:21Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", - "creationTime": "2023-04-08T15:18:02Z", - "deletionTime": "2023-04-08T15:49:43Z" + "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", + "creationTime": "2023-04-07T02:23:45Z", + "deletionTime": "2023-04-07T02:42:21Z" } ] } }, { - "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", "properties": { - "accountName": "cliv5od2aotadzs", - "apiType": "Sql", - "creationTime": "2023-04-08T15:52:34Z", - "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-27", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", - "creationTime": "2023-04-08T15:52:35Z", - "deletionTime": "2023-04-08T16:18:52Z" + "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", + "creationTime": "2023-04-07T02:41:51Z", + "deletionTime": "2023-04-07T02:53:44Z" } ] } }, { - "name": "62bf06d8-9e56-4434-9078-423179904be7", + "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", "properties": { - "accountName": "clijr7md3oh7aue", - "apiType": "Sql", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-4096", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:09:53Z", + "deletionTime": "2023-04-07T03:26:55Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z" + "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", + "creationTime": "2023-04-07T03:09:54Z", + "deletionTime": "2023-04-07T03:26:55Z" } ] } }, { - "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", "properties": { - "accountName": "clidkdojm4zyywo", - "apiType": "Sql", - "creationTime": "2023-04-08T17:18:16Z", - "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-1168", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", - "creationTime": "2023-04-08T17:18:17Z", - "deletionTime": "2023-04-08T17:22:23Z" + "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", + "creationTime": "2023-04-07T03:26:04Z", + "deletionTime": "2023-04-07T03:38:12Z" } ] } }, { - "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", "properties": { - "accountName": "clidhqrfu4m2zyv", - "apiType": "Sql", - "creationTime": "2023-04-10T17:53:22Z", - "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6117", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T03:54:19Z", + "deletionTime": "2023-04-07T03:55:39Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", - "creationTime": "2023-04-10T17:53:23Z", - "deletionTime": "2023-04-10T17:56:06Z" - } - ] + "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", + "creationTime": "2023-04-07T03:54:20Z", + "deletionTime": "2023-04-07T03:55:39Z" + } + ] } }, { - "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "name": "0554d9f5-654a-4d8b-b684-27f659539579", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", "properties": { - "accountName": "mk-ps-pna-enabled", - "apiType": "Sql", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-5255", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:11:45Z", + "deletionTime": "2023-04-07T04:12:39Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z" + "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", + "creationTime": "2023-04-07T04:11:47Z", + "deletionTime": "2023-04-07T04:12:39Z" } ] } }, { - "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "name": "fece0537-1813-4eca-ba83-43a475cc913c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", "properties": { - "accountName": "mk-test-ps-pna-disabled", - "apiType": "Sql", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-555", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:26:38Z", + "deletionTime": "2023-04-07T04:45:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z" + "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", + "creationTime": "2023-04-07T04:26:39Z", + "deletionTime": "2023-04-07T04:45:11Z" } ] } }, { - "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", "properties": { - "accountName": "mayank-test-src", - "apiType": "Sql", - "creationTime": "2023-04-12T19:51:34Z", - "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-3867", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", - "creationTime": "2023-04-12T19:51:35Z", - "deletionTime": "2023-04-12T23:26:03Z" + "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", + "creationTime": "2023-04-07T04:44:29Z", + "deletionTime": "2023-04-07T04:57:02Z" } ] } }, { - "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", "properties": { - "accountName": "climpgqg4rhbujz", - "apiType": "Sql", - "creationTime": "2023-04-13T13:44:29Z", - "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-4311", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:13:59Z", + "deletionTime": "2023-04-07T05:30:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", - "creationTime": "2023-04-13T13:44:30Z", - "deletionTime": "2023-04-13T13:48:14Z" + "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", + "creationTime": "2023-04-07T05:14:00Z", + "deletionTime": "2023-04-07T05:30:58Z" } ] } }, { - "name": "6d55af6c-8889-4938-ba25-28afb7858035", + "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", "properties": { - "accountName": "mayank-src", - "apiType": "Sql", - "creationTime": "2023-04-13T17:30:02Z", - "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "restoredaccount-7020", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", - "creationTime": "2023-04-13T17:30:03Z", - "deletionTime": "2023-04-13T18:35:56Z" + "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", + "creationTime": "2023-04-07T05:30:07Z", + "deletionTime": "2023-04-07T05:42:16Z" } ] } }, { - "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", "properties": { - "accountName": "mayank-pspreview-test", - "apiType": "Sql", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "r-table-account-6934", + "apiType": "Table, Sql", + "creationTime": "2023-04-07T05:58:40Z", + "deletionTime": "2023-04-07T06:00:10Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z" + "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", + "creationTime": "2023-04-07T05:58:41Z", + "deletionTime": "2023-04-07T06:00:10Z" } ] } }, { - "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "name": "6d446c65-d616-4aa3-8138-ed609a031011", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", "properties": { - "accountName": "r-database-account-3188", - "apiType": "Sql", - "creationTime": "2023-04-18T13:44:01Z", - "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cliz4gfhacxt3ra", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:02:28Z", + "deletionTime": "2023-04-07T18:06:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", - "creationTime": "2023-04-18T13:44:02Z", - "deletionTime": "2023-04-18T14:06:35Z" + "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", + "creationTime": "2023-04-07T18:02:29Z", + "deletionTime": "2023-04-07T18:06:12Z" } ] } }, { - "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", "properties": { - "accountName": "restoredaccount-5903", - "apiType": "Sql", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clizzr52zwge4ps", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:16:23Z", + "deletionTime": "2023-04-07T18:19:37Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z" + "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", + "creationTime": "2023-04-07T18:16:24Z", + "deletionTime": "2023-04-07T18:19:37Z" } ] } }, { - "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "name": "ab946470-3753-427d-a821-ec8a57709a65", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", "properties": { - "accountName": "r-database-account-8442", - "apiType": "Sql", - "creationTime": "2023-04-18T18:21:09Z", - "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "cliyfwfppqkfatd", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:23:09Z", + "deletionTime": "2023-04-07T18:49:00Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", - "creationTime": "2023-04-18T18:21:10Z", - "deletionTime": "2023-04-18T18:43:26Z" + "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", + "creationTime": "2023-04-07T18:23:10Z", + "deletionTime": "2023-04-07T18:49:00Z" } ] } }, { - "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", "properties": { - "accountName": "restoredaccount-5883", - "apiType": "Sql", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "clinxdvetbmpu2e", + "apiType": "MongoDB", + "creationTime": "2023-04-07T18:54:49Z", + "deletionTime": "2023-04-07T19:21:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z" + "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", + "creationTime": "2023-04-07T18:54:50Z", + "deletionTime": "2023-04-07T19:21:12Z" } ] } }, { - "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", "properties": { - "accountName": "r-database-account-8968", + "accountName": "clilwpd6a2jivng", "apiType": "Sql", - "creationTime": "2023-04-18T20:58:17Z", - "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-07T22:22:56Z", + "deletionTime": "2023-04-07T22:49:32Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", - "creationTime": "2023-04-18T20:58:18Z", - "deletionTime": "2023-04-18T21:21:06Z" + "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", + "creationTime": "2023-04-07T22:22:57Z", + "deletionTime": "2023-04-07T22:49:32Z" } ] } }, { - "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", "properties": { - "accountName": "restoredaccount-8805", + "accountName": "cli5ohlmiu76mcl", "apiType": "Sql", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-08T14:54:41Z", + "deletionTime": "2023-04-08T15:00:16Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z" + "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", + "creationTime": "2023-04-08T14:54:42Z", + "deletionTime": "2023-04-08T15:00:16Z" } ] } }, { - "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "name": "20547469-51f9-4bd8-af49-537306f0b327", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", "properties": { - "accountName": "r-database-account-7565", + "accountName": "clifmmb7dwsbns2", "apiType": "Sql", - "creationTime": "2023-04-19T04:54:02Z", - "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-08T15:18:01Z", + "deletionTime": "2023-04-08T15:49:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", - "creationTime": "2023-04-19T04:54:03Z", - "deletionTime": "2023-04-19T05:17:07Z" + "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", + "creationTime": "2023-04-08T15:18:02Z", + "deletionTime": "2023-04-08T15:49:43Z" } ] } }, { - "name": "a440fc94-a486-473c-bdeb-b62363814132", + "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", "properties": { - "accountName": "restoredaccount-8250", + "accountName": "cliv5od2aotadzs", "apiType": "Sql", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-08T15:52:34Z", + "deletionTime": "2023-04-08T16:18:52Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z" + "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", + "creationTime": "2023-04-08T15:52:35Z", + "deletionTime": "2023-04-08T16:18:52Z" } ] } }, { - "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "name": "62bf06d8-9e56-4434-9078-423179904be7", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", "properties": { - "accountName": "r-database-account-3177", + "accountName": "clijr7md3oh7aue", "apiType": "Sql", - "creationTime": "2023-04-19T07:32:19Z", - "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", - "creationTime": "2023-04-19T07:32:20Z", - "deletionTime": "2023-04-19T07:54:43Z" + "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", + "creationTime": "2023-04-08T16:23:16Z", + "deletionTime": "2023-04-08T16:25:31Z" } ] } }, { - "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", "properties": { - "accountName": "restoredaccount-9058", + "accountName": "clidkdojm4zyywo", "apiType": "Sql", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-08T17:18:16Z", + "deletionTime": "2023-04-08T17:22:23Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z" + "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", + "creationTime": "2023-04-08T17:18:17Z", + "deletionTime": "2023-04-08T17:22:23Z" } ] } }, { - "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", "properties": { - "accountName": "r-database-account-9523", + "accountName": "clidhqrfu4m2zyv", "apiType": "Sql", - "creationTime": "2023-04-19T19:31:56Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-10T17:53:22Z", + "deletionTime": "2023-04-10T17:56:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", - "creationTime": "2023-04-19T19:31:57Z", - "deletionTime": "2023-04-19T23:47:56Z" + "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", + "creationTime": "2023-04-10T17:53:23Z", + "deletionTime": "2023-04-10T17:56:06Z" } ] } }, { - "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", "properties": { - "accountName": "restoredaccount-4287", + "accountName": "mk-ps-pna-enabled", "apiType": "Sql", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z" + "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", + "creationTime": "2023-04-12T21:10:14Z", + "deletionTime": "2023-04-12T23:25:35Z" } ] } }, { - "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", "properties": { - "accountName": "r-database-account-8435", + "accountName": "mk-test-ps-pna-disabled", "apiType": "Sql", - "creationTime": "2023-04-06T02:11:39Z", - "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", - "creationTime": "2023-04-06T02:11:40Z", - "deletionTime": "2023-04-19T23:49:01Z" + "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", + "creationTime": "2023-04-12T20:25:24Z", + "deletionTime": "2023-04-12T23:25:49Z" } ] } }, { - "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", "properties": { - "accountName": "r-database-account-5580", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T18:31:49Z", - "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "accountName": "mayank-test-src", + "apiType": "Sql", + "creationTime": "2023-04-12T19:51:34Z", + "deletionTime": "2023-04-12T23:26:03Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", - "creationTime": "2023-04-05T18:31:50Z", - "deletionTime": "2023-04-19T23:53:21Z" + "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", + "creationTime": "2023-04-12T19:51:35Z", + "deletionTime": "2023-04-12T23:26:03Z" } ] } }, { - "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", "properties": { - "accountName": "r-database-account-163", + "accountName": "climpgqg4rhbujz", "apiType": "Sql", - "creationTime": "2023-04-18T16:23:17Z", - "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-13T13:44:29Z", + "deletionTime": "2023-04-13T13:48:14Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", - "creationTime": "2023-04-18T16:23:18Z", - "deletionTime": "2023-04-19T23:54:07Z" + "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", + "creationTime": "2023-04-13T13:44:30Z", + "deletionTime": "2023-04-13T13:48:14Z" } ] } }, { - "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "name": "6d55af6c-8889-4938-ba25-28afb7858035", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", "properties": { - "accountName": "r-database-account-8550", + "accountName": "mayank-src", "apiType": "Sql", - "creationTime": "2023-04-06T02:07:24Z", - "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-13T17:30:02Z", + "deletionTime": "2023-04-13T18:35:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", - "creationTime": "2023-04-06T02:07:26Z", - "deletionTime": "2023-04-19T23:57:08Z" + "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", + "creationTime": "2023-04-13T17:30:03Z", + "deletionTime": "2023-04-13T18:35:56Z" } ] } }, { - "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", "properties": { - "accountName": "r-database-account-605", + "accountName": "mayank-pspreview-test", "apiType": "Sql", - "creationTime": "2023-04-20T00:04:33Z", - "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", - "creationTime": "2023-04-20T00:04:34Z", - "deletionTime": "2023-04-20T00:05:28Z" + "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", + "creationTime": "2023-04-13T18:12:05Z", + "deletionTime": "2023-04-13T18:36:07Z" } ] } }, { - "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", "properties": { - "accountName": "r-database-account-1077", + "accountName": "r-database-account-3188", "apiType": "Sql", - "creationTime": "2023-04-20T00:07:31Z", - "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-18T13:44:01Z", + "deletionTime": "2023-04-18T14:06:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", - "creationTime": "2023-04-20T00:07:32Z", - "deletionTime": "2023-04-20T00:30:02Z" + "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", + "creationTime": "2023-04-18T13:44:02Z", + "deletionTime": "2023-04-18T14:06:35Z" } ] } }, { - "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", "properties": { - "accountName": "restoredaccount-5322", + "accountName": "restoredaccount-5903", "apiType": "Sql", - "creationTime": "2023-04-20T00:29:33Z", - "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", - "creationTime": "2023-04-20T00:29:33Z", - "deletionTime": "2023-04-20T00:30:06Z" + "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", + "creationTime": "2023-04-18T14:06:05Z", + "deletionTime": "2023-04-18T14:17:19Z" } ] } }, { - "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", "properties": { - "accountName": "r-database-account-5132", + "accountName": "r-database-account-8442", "apiType": "Sql", - "creationTime": "2023-04-20T02:59:33Z", - "deletionTime": "2023-04-20T03:00:22Z", - "oldestRestorableTime": "2023-03-21T03:03:02Z", - "restorableLocations": [] + "creationTime": "2023-04-18T18:21:09Z", + "deletionTime": "2023-04-18T18:43:26Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", + "creationTime": "2023-04-18T18:21:10Z", + "deletionTime": "2023-04-18T18:43:26Z" + } + ] } }, { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", + "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", "properties": { - "accountName": "drop-continuous7", + "accountName": "restoredaccount-5883", "apiType": "Sql", - "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", - "creationTime": "2022-05-26T18:49:52Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", + "creationTime": "2023-04-18T18:42:47Z", + "deletionTime": "2023-04-18T18:53:38Z" } ] } }, { - "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "location": "East US", + "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", "properties": { - "accountName": "periodicacctdrop", + "accountName": "r-database-account-8968", "apiType": "Sql", - "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T03:02:59Z", + "creationTime": "2023-04-18T20:58:17Z", + "deletionTime": "2023-04-18T21:21:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", - "creationTime": "2022-08-24T22:57:51Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", + "creationTime": "2023-04-18T20:58:18Z", + "deletionTime": "2023-04-18T21:21:06Z" } ] } }, { - "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", - "location": "East US", + "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", "properties": { - "accountName": "periodicacctdrop2", + "accountName": "restoredaccount-8805", "apiType": "Sql", - "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", - "creationTime": "2022-05-26T20:16:50Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", + "creationTime": "2023-04-18T21:20:39Z", + "deletionTime": "2023-04-18T21:31:49Z" } ] } }, { - "name": "b169ba58-4696-4196-99a4-51995d99f004", - "location": "East US", + "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", "properties": { - "accountName": "readregionrestore-1", + "accountName": "r-database-account-7565", "apiType": "Sql", - "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-19T04:54:02Z", + "deletionTime": "2023-04-19T05:17:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "Southeast Asia", - "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", - "creationTime": "2023-03-02T00:15:37Z" - }, - { - "locationName": "Central India", - "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", - "creationTime": "2023-03-02T00:38:10Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", + "creationTime": "2023-04-19T04:54:03Z", + "deletionTime": "2023-04-19T05:17:07Z" } ] } }, { - "name": "83301fff-71b5-4cb0-a399-3c6331b78411", - "location": "East US", + "name": "a440fc94-a486-473c-bdeb-b62363814132", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", "properties": { - "accountName": "portal-mongo-test", - "apiType": "MongoDB", - "creationTime": "2023-03-27T17:28:08Z", - "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "accountName": "restoredaccount-8250", + "apiType": "Sql", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", - "creationTime": "2023-03-27T17:28:09Z", - "deletionTime": "2023-03-27T17:30:49Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", + "creationTime": "2023-04-19T05:16:14Z", + "deletionTime": "2023-04-19T05:27:21Z" } ] } }, { - "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "location": "East US", + "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", "properties": { - "accountName": "amisi-8bd4a726", + "accountName": "r-database-account-3177", "apiType": "Sql", - "creationTime": "2023-03-29T07:24:07Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-19T07:32:19Z", + "deletionTime": "2023-04-19T07:54:43Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", - "creationTime": "2023-03-29T07:26:03Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", - "creationTime": "2023-03-29T07:24:08Z", - "deletionTime": "2023-03-29T07:44:16Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", + "creationTime": "2023-04-19T07:32:20Z", + "deletionTime": "2023-04-19T07:54:43Z" } ] } }, { - "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", - "location": "East US", + "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", "properties": { - "accountName": "amisi-da11000f", + "accountName": "restoredaccount-9058", "apiType": "Sql", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", - "creationTime": "2023-03-29T07:09:11Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", + "creationTime": "2023-04-19T07:54:08Z", + "deletionTime": "2023-04-19T08:05:30Z" } ] } }, { - "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "location": "East US", + "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", "properties": { - "accountName": "dsapaliga-restore-test2", + "accountName": "r-database-account-9523", "apiType": "Sql", - "creationTime": "2023-03-29T19:36:21Z", - "deletionTime": "2023-03-29T22:55:47Z", - "oldestRestorableTime": "2023-03-22T22:55:47Z", + "creationTime": "2023-04-19T19:31:56Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", - "creationTime": "2023-03-29T19:36:22Z", - "deletionTime": "2023-03-29T22:55:47Z" + "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", + "creationTime": "2023-04-19T19:31:57Z", + "deletionTime": "2023-04-19T23:47:56Z" } ] } }, { - "name": "66326971-fd72-4b66-9495-da9f95f0e86a", - "location": "East US", + "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", "properties": { - "accountName": "dsapaliga-restore-test3", + "accountName": "restoredaccount-4287", "apiType": "Sql", - "creationTime": "2023-03-29T21:45:59Z", - "deletionTime": "2023-03-29T22:55:54Z", - "oldestRestorableTime": "2023-03-22T22:55:54Z", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", - "creationTime": "2023-03-29T21:48:10Z", - "deletionTime": "2023-03-29T21:57:56Z" - }, { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", - "creationTime": "2023-03-29T21:46:00Z", - "deletionTime": "2023-03-29T22:55:54Z" + "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", + "creationTime": "2023-04-19T19:54:04Z", + "deletionTime": "2023-04-19T23:47:56Z" } ] } }, { - "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", - "location": "East US", + "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", "properties": { - "accountName": "dsapaliga-restore-test4", + "accountName": "r-database-account-8435", "apiType": "Sql", - "creationTime": "2023-03-29T22:08:33Z", - "deletionTime": "2023-03-29T22:56:00Z", - "oldestRestorableTime": "2023-03-22T22:56:00Z", + "creationTime": "2023-04-06T02:11:39Z", + "deletionTime": "2023-04-19T23:49:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", - "creationTime": "2023-03-29T22:08:34Z", - "deletionTime": "2023-03-29T22:56:00Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", + "creationTime": "2023-04-06T02:11:40Z", + "deletionTime": "2023-04-19T23:49:01Z" } ] } }, { - "name": "84a35eb5-784c-4923-a52f-60bd04765953", - "location": "East US", + "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", "properties": { - "accountName": "dsapaliga-restore-test6", - "apiType": "Sql", - "creationTime": "2023-03-29T22:24:23Z", - "deletionTime": "2023-03-29T22:56:18Z", - "oldestRestorableTime": "2023-03-22T22:56:18Z", + "accountName": "r-database-account-5580", + "apiType": "Gremlin, Sql", + "creationTime": "2023-04-05T18:31:49Z", + "deletionTime": "2023-04-19T23:53:21Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", - "creationTime": "2023-03-29T22:26:42Z", - "deletionTime": "2023-03-29T22:56:18Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", - "creationTime": "2023-03-29T22:24:24Z", - "deletionTime": "2023-03-29T22:56:18Z" + "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", + "creationTime": "2023-04-05T18:31:50Z", + "deletionTime": "2023-04-19T23:53:21Z" } ] } }, { - "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", - "location": "East US", + "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", "properties": { - "accountName": "dsapaliga-restored-westus-m", + "accountName": "r-database-account-163", "apiType": "Sql", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z", - "oldestRestorableTime": "2023-03-22T22:56:46Z", + "creationTime": "2023-04-18T16:23:17Z", + "deletionTime": "2023-04-19T23:54:07Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z" + "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", + "creationTime": "2023-04-18T16:23:18Z", + "deletionTime": "2023-04-19T23:54:07Z" } ] } }, { - "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "location": "East US", + "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", "properties": { - "accountName": "cli-continuous30-sopplsfv", + "accountName": "r-database-account-8550", "apiType": "Sql", - "creationTime": "2023-03-29T23:59:38Z", - "deletionTime": "2023-03-30T00:12:32Z", - "oldestRestorableTime": "2023-03-23T00:12:32Z", + "creationTime": "2023-04-06T02:07:24Z", + "deletionTime": "2023-04-19T23:57:08Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", - "creationTime": "2023-03-30T00:02:04Z", - "deletionTime": "2023-03-30T00:12:32Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", - "creationTime": "2023-03-29T23:59:39Z", - "deletionTime": "2023-03-30T00:12:32Z" + "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", + "creationTime": "2023-04-06T02:07:26Z", + "deletionTime": "2023-04-19T23:57:08Z" } ] } }, { - "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "location": "East US", + "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", "properties": { - "accountName": "cli-continuous30-l5utea24-restored", + "accountName": "r-database-account-605", "apiType": "Sql", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", + "creationTime": "2023-04-20T00:04:33Z", + "deletionTime": "2023-04-20T00:05:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z" + "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", + "creationTime": "2023-04-20T00:04:34Z", + "deletionTime": "2023-04-20T00:05:28Z" } ] } }, { - "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", - "location": "East US", + "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", "properties": { - "accountName": "cli-continuous30-l5utea24", + "accountName": "r-database-account-1077", "apiType": "Sql", - "creationTime": "2023-03-30T00:33:44Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", + "creationTime": "2023-04-20T00:07:31Z", + "deletionTime": "2023-04-20T00:30:02Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", - "creationTime": "2023-03-30T00:36:04Z", - "deletionTime": "2023-03-30T01:02:30Z" - }, + "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", + "creationTime": "2023-04-20T00:07:32Z", + "deletionTime": "2023-04-20T00:30:02Z" + } + ] + } + }, + { + "name": "f3db04bc-7552-4f70-af65-a7be0274a695", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", + "properties": { + "accountName": "restoredaccount-5322", + "apiType": "Sql", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", - "creationTime": "2023-03-30T00:33:45Z", - "deletionTime": "2023-03-30T01:02:30Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", + "creationTime": "2023-04-20T00:29:33Z", + "deletionTime": "2023-04-20T00:30:06Z" } ] } }, { - "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", - "location": "East US", + "name": "aeb8c455-4d77-45bd-a193-a84dded67185", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", "properties": { - "accountName": "cli-continuous30-3eb7aosu", + "accountName": "r-database-account-5132", "apiType": "Sql", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z", - "oldestRestorableTime": "2023-03-23T03:46:34Z", + "creationTime": "2023-04-20T02:59:33Z", + "deletionTime": "2023-04-20T03:00:22Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", - "creationTime": "2023-03-30T03:35:19Z", - "deletionTime": "2023-03-30T03:46:34Z" - }, + "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", + "creationTime": "2023-04-20T02:59:34Z", + "deletionTime": "2023-04-20T03:00:22Z" + } + ] + } + }, + { + "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", + "properties": { + "accountName": "r-database-account-3663", + "apiType": "Sql", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d6b3797d-2293-4f03-9583-871ccf0f3d38", + "creationTime": "2023-04-20T03:02:48Z", + "deletionTime": "2023-04-20T03:25:34Z" } ] } }, { - "name": "856077e3-8335-4b95-9577-2ebf016ee892", - "location": "East US", + "name": "934fa420-f11f-4b42-83e3-1856e5d57188", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", "properties": { - "accountName": "cli-continuous30-tqwxb6nj", + "accountName": "restoredaccount-1053", "apiType": "Sql", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z", - "oldestRestorableTime": "2023-03-23T04:05:05Z", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", - "creationTime": "2023-03-30T03:53:50Z", - "deletionTime": "2023-03-30T04:05:05Z" - }, + "regionalDatabaseAccountInstanceId": "257e3c80-4916-4971-8342-e3285b0c6f2b", + "creationTime": "2023-04-20T03:24:53Z", + "deletionTime": "2023-04-20T03:25:36Z" + } + ] + } + }, + { + "name": "02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/02efc3a3-5e5b-40e2-9e42-69cef3e64be5", + "properties": { + "accountName": "r-database-account-9798", + "apiType": "Sql", + "creationTime": "2023-04-20T15:46:42Z", + "deletionTime": "2023-04-20T15:47:35Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b4910a67-bf8a-4e9d-bbe4-aeb7f0ac89e8", + "creationTime": "2023-04-20T15:46:43Z", + "deletionTime": "2023-04-20T15:47:35Z" } ] } }, { - "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "location": "East US", + "name": "cc0d3c92-ea53-4cde-851b-a323299d9838", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc0d3c92-ea53-4cde-851b-a323299d9838", "properties": { - "accountName": "cli-continuous30-cmjnvki7", + "accountName": "r-database-account-59", "apiType": "Sql", - "creationTime": "2023-03-30T04:58:52Z", - "deletionTime": "2023-03-30T05:12:19Z", - "oldestRestorableTime": "2023-03-23T05:12:19Z", + "creationTime": "2023-04-20T20:02:03Z", + "deletionTime": "2023-04-20T20:02:53Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", - "creationTime": "2023-03-30T05:01:09Z", - "deletionTime": "2023-03-30T05:12:19Z" - }, + "regionalDatabaseAccountInstanceId": "b0fb1f2d-5b3f-4c31-895b-223d5e0ffb78", + "creationTime": "2023-04-20T20:02:04Z", + "deletionTime": "2023-04-20T20:02:53Z" + } + ] + } + }, + { + "name": "95a2733f-a4b0-4602-917f-958259541b70", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/95a2733f-a4b0-4602-917f-958259541b70", + "properties": { + "accountName": "mayank-test-source", + "apiType": "Sql", + "creationTime": "2023-04-20T15:57:14Z", + "deletionTime": "2023-04-20T20:28:56Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", - "creationTime": "2023-03-30T04:58:53Z", - "deletionTime": "2023-03-30T05:12:19Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "87308be4-6d1f-4dff-979b-4abc3a276ea8", + "creationTime": "2023-04-20T15:57:15Z", + "deletionTime": "2023-04-20T20:28:56Z" } ] } }, { - "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "location": "East US", + "name": "0046d6f1-112d-403a-bd5e-b2ac35ba4a15", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0046d6f1-112d-403a-bd5e-b2ac35ba4a15", "properties": { - "accountName": "cli-continuous30-pmjqwgr5-restored", + "accountName": "mks-ps-pna-disable", "apiType": "Sql", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z" + "regionalDatabaseAccountInstanceId": "e55a8c04-5251-41d5-afd9-20fd858757e9", + "creationTime": "2023-04-20T17:07:14Z", + "deletionTime": "2023-04-20T20:28:57Z" } ] } }, { - "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", - "location": "East US", + "name": "c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c65fd789-da88-4f5f-9e94-ff2e2a02cfb6", "properties": { - "accountName": "cli-continuous30-pmjqwgr5", + "accountName": "mks-cli-pna-disabled", "apiType": "Sql", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", - "creationTime": "2023-03-30T14:12:07Z", - "deletionTime": "2023-03-30T14:38:59Z" - }, + "regionalDatabaseAccountInstanceId": "c496ffb2-ca3b-4a0f-9b54-d76db06a03e5", + "creationTime": "2023-04-20T16:21:22Z", + "deletionTime": "2023-04-20T20:28:58Z" + } + ] + } + }, + { + "name": "73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73951a1b-7a63-46b2-86a7-b0e8ee9a5c59", + "properties": { + "accountName": "r-database-account-8662", + "apiType": "Sql", + "creationTime": "2023-04-21T01:11:02Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "40ae612c-e5a5-4567-a7b3-d8cf456914e8", + "creationTime": "2023-04-21T01:11:03Z", + "deletionTime": "2023-04-21T01:11:58Z" } ] } }, { - "name": "f68b64bb-38f3-429b-be8f-81e44763929d", - "location": "East US", + "name": "4aaae931-db25-42d9-bd13-139f4758eded", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4aaae931-db25-42d9-bd13-139f4758eded", "properties": { - "accountName": "cli-continuous30-ta4jrave", + "accountName": "r-database-account-1680", "apiType": "Sql", - "creationTime": "2023-03-30T14:48:08Z", - "deletionTime": "2023-03-30T15:16:54Z", - "oldestRestorableTime": "2023-03-23T15:16:54Z", + "creationTime": "2023-04-20T20:13:32Z", + "deletionTime": "2023-04-21T01:11:58Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { "locationName": "West US", - "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", - "creationTime": "2023-03-30T14:50:33Z", - "deletionTime": "2023-03-30T15:16:54Z" - }, + "regionalDatabaseAccountInstanceId": "e356dbef-401c-495f-8395-51811a45809b", + "creationTime": "2023-04-20T20:13:33Z", + "deletionTime": "2023-04-21T01:11:58Z" + } + ] + } + }, + { + "name": "474160ba-27e5-4a35-b875-ef5340da8776", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/474160ba-27e5-4a35-b875-ef5340da8776", + "properties": { + "accountName": "r-database-account-3501", + "apiType": "Sql", + "creationTime": "2023-04-20T20:00:57Z", + "deletionTime": "2023-04-21T01:12:01Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", - "creationTime": "2023-03-30T14:48:09Z", - "deletionTime": "2023-03-30T15:16:54Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "32e5eac5-ae99-4409-86fa-d781b9deaf74", + "creationTime": "2023-04-20T20:00:58Z", + "deletionTime": "2023-04-21T01:12:01Z" } ] } }, { - "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "location": "East US", + "name": "2949c16c-e7e7-44c6-a95a-0ed67ec829f7", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2949c16c-e7e7-44c6-a95a-0ed67ec829f7", "properties": { - "accountName": "amisi-8bd4a726-restored", + "accountName": "r-database-account-7671", "apiType": "Sql", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-20T15:44:05Z", + "deletionTime": "2023-04-21T01:12:12Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "d06ce0ca-59fd-41b1-8962-69d08b11b063", + "creationTime": "2023-04-20T15:44:06Z", + "deletionTime": "2023-04-21T01:12:12Z" } ] } }, { - "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", - "location": "East US", + "name": "b2935e20-0e04-4401-95bb-ca4d1256fb91", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b2935e20-0e04-4401-95bb-ca4d1256fb91", "properties": { - "accountName": "amisi-765b8849", + "accountName": "r-database-account-6490", "apiType": "Sql", - "creationTime": "2023-03-30T20:15:03Z", - "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T03:02:59Z", + "creationTime": "2023-04-21T01:24:42Z", + "deletionTime": "2023-04-21T01:25:42Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", - "creationTime": "2023-03-30T20:15:04Z", - "deletionTime": "2023-03-31T06:20:15Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "4edd06be-b84f-43ea-9e41-e5987414c359", + "creationTime": "2023-04-21T01:24:43Z", + "deletionTime": "2023-04-21T01:25:42Z" } ] } }, { - "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "location": "Qatar Central", + "name": "b1231e1b-81ce-436d-a04e-82abe4bb26ce", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1231e1b-81ce-436d-a04e-82abe4bb26ce", "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "accountName": "r-database-account-6025", "apiType": "Sql", - "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "creationTime": "2023-04-21T01:36:17Z", + "deletionTime": "2023-04-21T01:59:57Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", - "creationTime": "2022-09-29T05:44:13Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "b210a4f2-0986-4cc5-a19a-9d2ff1376993", + "creationTime": "2023-04-21T01:36:18Z", + "deletionTime": "2023-04-21T01:59:57Z" } ] } }, { - "name": "a672303a-644d-4996-9d49-b3d2eddea72d", - "location": "Qatar Central", + "name": "4e75098e-0b3e-4837-8426-7db845b314f8", + "location": "West US", "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e75098e-0b3e-4837-8426-7db845b314f8", "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "accountName": "restoredaccount-6934", "apiType": "Sql", - "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T03:03:00Z", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", "restorableLocations": [ { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", - "creationTime": "2023-03-10T00:42:29Z" + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "6d90e3e7-84e4-4ea4-95a1-db32358e16b9", + "creationTime": "2023-04-21T01:59:14Z", + "deletionTime": "2023-04-21T02:10:11Z" } ] } - } - ] + }, + { + "name": "9189867f-ed3f-449a-a9ad-79a2d72fef11", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9189867f-ed3f-449a-a9ad-79a2d72fef11", + "properties": { + "accountName": "r-database-account-5595", + "apiType": "Sql", + "creationTime": "2023-04-21T09:24:31Z", + "deletionTime": "2023-04-21T09:25:21Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "158154f2-ba43-42d9-b432-506f23f61772", + "creationTime": "2023-04-21T09:24:32Z", + "deletionTime": "2023-04-21T09:25:21Z" + } + ] + } + }, + { + "name": "f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f02c31bc-a54b-49f4-86ef-9084c86dcbf3", + "properties": { + "accountName": "r-database-account-1525", + "apiType": "Sql", + "creationTime": "2023-04-21T09:35:25Z", + "deletionTime": "2023-04-21T09:59:04Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "be348493-ba83-4e93-b286-33c54f6a8792", + "creationTime": "2023-04-21T09:35:26Z", + "deletionTime": "2023-04-21T09:59:04Z" + } + ] + } + }, + { + "name": "ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca0fb097-1be2-4fe0-ad53-3257e0c88795", + "properties": { + "accountName": "restoredaccount-9007", + "apiType": "Sql", + "creationTime": "2023-04-21T09:58:13Z", + "deletionTime": "2023-04-21T10:09:15Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "2d9499b8-4a72-48e3-a816-2b973ac7e268", + "creationTime": "2023-04-21T09:58:13Z", + "deletionTime": "2023-04-21T10:09:15Z" + } + ] + } + }, + { + "name": "b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", + "location": "West US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8cc042d-c5ff-43c4-94b5-d79eb5d1428b", + "properties": { + "accountName": "r-database-account-6799", + "apiType": "Sql", + "creationTime": "2023-04-21T10:21:33Z", + "deletionTime": "2023-04-21T10:22:28Z", + "oldestRestorableTime": "2023-03-22T10:34:14Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f0255755-865d-40c4-8496-d20f264017e6", + "creationTime": "2023-04-21T10:21:34Z", + "deletionTime": "2023-04-21T10:22:28Z" + } + ] + } + }, + { + "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", + "properties": { + "accountName": "drop-continuous7", + "apiType": "Sql", + "creationTime": "2022-05-26T18:49:51Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", + "creationTime": "2022-05-26T18:49:52Z" + } + ] + } + }, + { + "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", + "properties": { + "accountName": "periodicacctdrop", + "apiType": "Sql", + "creationTime": "2022-08-24T22:57:51Z", + "oldestRestorableTime": "2023-04-14T10:34:12Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", + "creationTime": "2022-08-24T22:57:51Z" + } + ] + } + }, + { + "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", + "properties": { + "accountName": "periodicacctdrop2", + "apiType": "Sql", + "creationTime": "2022-05-26T20:16:50Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", + "creationTime": "2022-05-26T20:16:50Z" + } + ] + } + }, + { + "name": "b169ba58-4696-4196-99a4-51995d99f004", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", + "properties": { + "accountName": "readregionrestore-1", + "apiType": "Sql", + "creationTime": "2023-03-02T00:15:37Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "Southeast Asia", + "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", + "creationTime": "2023-03-02T00:15:37Z" + }, + { + "locationName": "Central India", + "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", + "creationTime": "2023-03-02T00:38:10Z" + } + ] + } + }, + { + "name": "83301fff-71b5-4cb0-a399-3c6331b78411", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", + "properties": { + "accountName": "portal-mongo-test", + "apiType": "MongoDB", + "creationTime": "2023-03-27T17:28:08Z", + "deletionTime": "2023-03-27T17:30:49Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", + "creationTime": "2023-03-27T17:28:09Z", + "deletionTime": "2023-03-27T17:30:49Z" + } + ] + } + }, + { + "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", + "properties": { + "accountName": "amisi-8bd4a726", + "apiType": "Sql", + "creationTime": "2023-03-29T07:24:07Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", + "creationTime": "2023-03-29T07:26:03Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", + "creationTime": "2023-03-29T07:24:08Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", + "properties": { + "accountName": "amisi-da11000f", + "apiType": "Sql", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", + "creationTime": "2023-03-29T07:09:11Z", + "deletionTime": "2023-03-29T07:44:16Z" + }, + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", + "creationTime": "2023-03-29T07:06:45Z", + "deletionTime": "2023-03-29T07:44:16Z" + } + ] + } + }, + { + "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", + "properties": { + "accountName": "dsapaliga-restore-test2", + "apiType": "Sql", + "creationTime": "2023-03-29T19:36:21Z", + "deletionTime": "2023-03-29T22:55:47Z", + "oldestRestorableTime": "2023-03-22T22:55:47Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", + "creationTime": "2023-03-29T19:36:22Z", + "deletionTime": "2023-03-29T22:55:47Z" + } + ] + } + }, + { + "name": "66326971-fd72-4b66-9495-da9f95f0e86a", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", + "properties": { + "accountName": "dsapaliga-restore-test3", + "apiType": "Sql", + "creationTime": "2023-03-29T21:45:59Z", + "deletionTime": "2023-03-29T22:55:54Z", + "oldestRestorableTime": "2023-03-22T22:55:54Z", + "restorableLocations": [ + { + "locationName": "East US 2", + "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", + "creationTime": "2023-03-29T21:48:10Z", + "deletionTime": "2023-03-29T21:57:56Z" + }, + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", + "creationTime": "2023-03-29T21:46:00Z", + "deletionTime": "2023-03-29T22:55:54Z" + } + ] + } + }, + { + "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", + "properties": { + "accountName": "dsapaliga-restore-test4", + "apiType": "Sql", + "creationTime": "2023-03-29T22:08:33Z", + "deletionTime": "2023-03-29T22:56:00Z", + "oldestRestorableTime": "2023-03-22T22:56:00Z", + "restorableLocations": [ + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", + "creationTime": "2023-03-29T22:08:34Z", + "deletionTime": "2023-03-29T22:56:00Z" + } + ] + } + }, + { + "name": "84a35eb5-784c-4923-a52f-60bd04765953", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", + "properties": { + "accountName": "dsapaliga-restore-test6", + "apiType": "Sql", + "creationTime": "2023-03-29T22:24:23Z", + "deletionTime": "2023-03-29T22:56:18Z", + "oldestRestorableTime": "2023-03-22T22:56:18Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", + "creationTime": "2023-03-29T22:26:42Z", + "deletionTime": "2023-03-29T22:56:18Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", + "creationTime": "2023-03-29T22:24:24Z", + "deletionTime": "2023-03-29T22:56:18Z" + } + ] + } + }, + { + "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", + "properties": { + "accountName": "dsapaliga-restored-westus-m", + "apiType": "Sql", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z", + "oldestRestorableTime": "2023-03-22T22:56:46Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", + "creationTime": "2023-03-29T22:45:51Z", + "deletionTime": "2023-03-29T22:56:46Z" + } + ] + } + }, + { + "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", + "properties": { + "accountName": "cli-continuous30-sopplsfv", + "apiType": "Sql", + "creationTime": "2023-03-29T23:59:38Z", + "deletionTime": "2023-03-30T00:12:32Z", + "oldestRestorableTime": "2023-03-23T00:12:32Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", + "creationTime": "2023-03-30T00:02:04Z", + "deletionTime": "2023-03-30T00:12:32Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", + "creationTime": "2023-03-29T23:59:39Z", + "deletionTime": "2023-03-30T00:12:32Z" + } + ] + } + }, + { + "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", + "properties": { + "accountName": "cli-continuous30-l5utea24-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", + "creationTime": "2023-03-30T01:00:58Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", + "properties": { + "accountName": "cli-continuous30-l5utea24", + "apiType": "Sql", + "creationTime": "2023-03-30T00:33:44Z", + "deletionTime": "2023-03-30T01:02:30Z", + "oldestRestorableTime": "2023-03-23T01:02:30Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", + "creationTime": "2023-03-30T00:36:04Z", + "deletionTime": "2023-03-30T01:02:30Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", + "creationTime": "2023-03-30T00:33:45Z", + "deletionTime": "2023-03-30T01:02:30Z" + } + ] + } + }, + { + "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", + "properties": { + "accountName": "cli-continuous30-3eb7aosu", + "apiType": "Sql", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z", + "oldestRestorableTime": "2023-03-23T03:46:34Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", + "creationTime": "2023-03-30T03:35:19Z", + "deletionTime": "2023-03-30T03:46:34Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", + "creationTime": "2023-03-30T03:33:05Z", + "deletionTime": "2023-03-30T03:46:34Z" + } + ] + } + }, + { + "name": "856077e3-8335-4b95-9577-2ebf016ee892", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", + "properties": { + "accountName": "cli-continuous30-tqwxb6nj", + "apiType": "Sql", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z", + "oldestRestorableTime": "2023-03-23T04:05:05Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", + "creationTime": "2023-03-30T03:53:50Z", + "deletionTime": "2023-03-30T04:05:05Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", + "creationTime": "2023-03-30T03:51:31Z", + "deletionTime": "2023-03-30T04:05:05Z" + } + ] + } + }, + { + "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", + "properties": { + "accountName": "cli-continuous30-cmjnvki7", + "apiType": "Sql", + "creationTime": "2023-03-30T04:58:52Z", + "deletionTime": "2023-03-30T05:12:19Z", + "oldestRestorableTime": "2023-03-23T05:12:19Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", + "creationTime": "2023-03-30T05:01:09Z", + "deletionTime": "2023-03-30T05:12:19Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", + "creationTime": "2023-03-30T04:58:53Z", + "deletionTime": "2023-03-30T05:12:19Z" + } + ] + } + }, + { + "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5-restored", + "apiType": "Sql", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", + "creationTime": "2023-03-30T14:37:17Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", + "properties": { + "accountName": "cli-continuous30-pmjqwgr5", + "apiType": "Sql", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z", + "oldestRestorableTime": "2023-03-23T14:38:59Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", + "creationTime": "2023-03-30T14:12:07Z", + "deletionTime": "2023-03-30T14:38:59Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", + "creationTime": "2023-03-30T14:09:44Z", + "deletionTime": "2023-03-30T14:38:59Z" + } + ] + } + }, + { + "name": "f68b64bb-38f3-429b-be8f-81e44763929d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", + "properties": { + "accountName": "cli-continuous30-ta4jrave", + "apiType": "Sql", + "creationTime": "2023-03-30T14:48:08Z", + "deletionTime": "2023-03-30T15:16:54Z", + "oldestRestorableTime": "2023-03-23T15:16:54Z", + "restorableLocations": [ + { + "locationName": "West US", + "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", + "creationTime": "2023-03-30T14:50:33Z", + "deletionTime": "2023-03-30T15:16:54Z" + }, + { + "locationName": "East US", + "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", + "creationTime": "2023-03-30T14:48:09Z", + "deletionTime": "2023-03-30T15:16:54Z" + } + ] + } + }, + { + "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", + "properties": { + "accountName": "amisi-8bd4a726-restored", + "apiType": "Sql", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "North Central US", + "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", + "creationTime": "2023-03-29T07:45:59Z", + "deletionTime": "2023-03-30T20:22:20Z" + } + ] + } + }, + { + "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", + "location": "East US", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", + "properties": { + "accountName": "amisi-765b8849", + "apiType": "Sql", + "creationTime": "2023-03-30T20:15:03Z", + "deletionTime": "2023-03-31T06:20:15Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "West Central US", + "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", + "creationTime": "2023-03-30T20:15:04Z", + "deletionTime": "2023-03-31T06:20:15Z" + } + ] + } + }, + { + "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", + "apiType": "Sql", + "creationTime": "2022-09-29T05:44:13Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", + "creationTime": "2022-09-29T05:44:13Z" + } + ] + } + }, + { + "name": "a672303a-644d-4996-9d49-b3d2eddea72d", + "location": "Qatar Central", + "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", + "properties": { + "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", + "apiType": "Sql", + "creationTime": "2023-03-10T00:42:29Z", + "oldestRestorableTime": "2023-03-22T10:34:12Z", + "restorableLocations": [ + { + "locationName": "Qatar Central", + "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", + "creationTime": "2023-03-10T00:42:29Z" + } + ] + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "120", + "Content-Type": "application/json", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-be1e4426f68b2f67-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5fa40f142640176be6d93e65faf1cc20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-database-5078" + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:16 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078/operationResults/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "26342823-3d2b-43e4-b0d3-c748eec8b2c2", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "fc4ef9f3-922e-4cf1-a075-98b35544c9ba", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103417Z:26342823-3d2b-43e4-b0d3-c748eec8b2c2" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-961de46a9e2a1bf2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "886ff60bddb538f36e0f0093d8085884", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:16 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af5d8c92-9c4b-4531-8e95-970ef986c888", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "af5d8c92-9c4b-4531-8e95-970ef986c888", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103417Z:af5d8c92-9c4b-4531-8e95-970ef986c888" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-437ba98b820e9d5a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6b465a7de5261c1ac43b2967cf34f92a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:18 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e292a60b-2ebf-4c30-9f8b-92416ef993e3", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "e292a60b-2ebf-4c30-9f8b-92416ef993e3", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103418Z:e292a60b-2ebf-4c30-9f8b-92416ef993e3" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-8700876c252b1ad4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "03592cf444820a6a135e96bdf6b8912c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c81249b3-ea23-41b5-a332-ef8f7c835a6f", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "c81249b3-ea23-41b5-a332-ef8f7c835a6f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103419Z:c81249b3-ea23-41b5-a332-ef8f7c835a6f" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-a54379dabdea529f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c3b9d180797526eadc52c37ab48c683a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:20 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0c29b27-5401-44aa-8bd9-b2f4f00ce477", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "e0c29b27-5401-44aa-8bd9-b2f4f00ce477", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103420Z:e0c29b27-5401-44aa-8bd9-b2f4f00ce477" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-78800bc0bad74077-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab9ed61555af3902ef3c58c84f5d260c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:22 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1f1352de-4297-4ea1-be35-046068f72f6e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "1f1352de-4297-4ea1-be35-046068f72f6e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103422Z:1f1352de-4297-4ea1-be35-046068f72f6e" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-802b74c28637440d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fee6fcaa357a7bb44232272f80f05587", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:26 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7a3f60a8-5929-4e3d-8f04-75ec2e3e1560", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "7a3f60a8-5929-4e3d-8f04-75ec2e3e1560", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103426Z:7a3f60a8-5929-4e3d-8f04-75ec2e3e1560" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fc4ef9f3-922e-4cf1-a075-98b35544c9ba?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-b701fd032a3df206-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "20a75cf5e5192a7dce80d4392022d77f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "116565ae-ed64-41df-9f6f-75e7fc5fc59c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "116565ae-ed64-41df-9f6f-75e7fc5fc59c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103434Z:116565ae-ed64-41df-9f6f-75e7fc5fc59c" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-63d4fdffe38882c97d756a00175a10dd-9eb1afd9683ba74e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b8d0b72c6aa5e0bf2122697c2ed3b8fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "479", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "479596af-af22-4f45-8e6d-8dc01a442e7b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "479596af-af22-4f45-8e6d-8dc01a442e7b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103435Z:479596af-af22-4f45-8e6d-8dc01a442e7b" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", + "name": "sql-database-5078", + "properties": { + "resource": { + "id": "sql-database-5078", + "_rid": "fXkyAA==", + "_self": "dbs/fXkyAA==/", + "_etag": "\u002200006900-0000-0700-0000-644266b00000\u0022", + "_colls": "colls/", + "_users": "users/", + "_ts": 1682073264 + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078/containers/sql-container-3518?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "489", + "Content-Type": "application/json", + "traceparent": "00-412846d9d8120e82843734928663f106-9e936bc773bc9bac-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b5f2d2d1f2057fc4bb2ff9607a5b1f5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": {}, + "location": "westcentralus", + "properties": { + "resource": { + "id": "sql-container-3518", + "indexingPolicy": { + "automatic": true, + "indexingMode": "consistent", + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point" + ] + } + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + } + }, + "options": { + "throughput": 700 + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:35 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078/containers/sql-container-3518/operationResults/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c703ca2-c8d1-4ce7-8ab7-db3c28c0b1b8", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "5254d1cb-1751-490e-9f3a-fb55e8d76ce1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103435Z:4c703ca2-c8d1-4ce7-8ab7-db3c28c0b1b8" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-091ca21829d713cb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4f4f53d6cae4c5260b39e93bc57fa7c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:35 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f90fe12-17f1-43cf-aa24-ddb0b5824b21", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "4f90fe12-17f1-43cf-aa24-ddb0b5824b21", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103435Z:4f90fe12-17f1-43cf-aa24-ddb0b5824b21" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-c445f0fa2c8f4acf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d0862049ddefef484755ed07fa477ebf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:36 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "359fc805-34f4-4fc1-b3b6-fc8213dedbdb", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "359fc805-34f4-4fc1-b3b6-fc8213dedbdb", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103437Z:359fc805-34f4-4fc1-b3b6-fc8213dedbdb" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-493a6b92997fb9d7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "278a3133cf0cdd77dc031464f74fd748", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:37 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "37105a8f-4e94-4425-800b-19f1c392314e", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "37105a8f-4e94-4425-800b-19f1c392314e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103438Z:37105a8f-4e94-4425-800b-19f1c392314e" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-642926fec23da0a4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "df3330572b75f8d80a5f088fdc1ecac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:38 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a3cf7203-2298-48b8-80ca-0a2c312fa2fc", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "a3cf7203-2298-48b8-80ca-0a2c312fa2fc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103439Z:a3cf7203-2298-48b8-80ca-0a2c312fa2fc" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-9162f0ff4caff3b7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "94072aba7ff47abaa9a9f3ebc9e4f8f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:40 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "05910a26-8dc6-4b76-bd65-48f6726c14c1", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "05910a26-8dc6-4b76-bd65-48f6726c14c1", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103441Z:05910a26-8dc6-4b76-bd65-48f6726c14c1" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-b2a510928e4f5fd5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c9b0a47e9e14084a58921cacc6e700bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:44 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5cab7858-0bd5-4b5d-90e3-b13735965227", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "5cab7858-0bd5-4b5d-90e3-b13735965227", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103445Z:5cab7858-0bd5-4b5d-90e3-b13735965227" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5254d1cb-1751-490e-9f3a-fb55e8d76ce1?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-87ebb9cb9689dba6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cda950394248d75475b936cc37ed2f26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:52 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7a1a21e1-ffca-4959-be3c-8f23c0f420cc", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "7a1a21e1-ffca-4959-be3c-8f23c0f420cc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103453Z:7a1a21e1-ffca-4959-be3c-8f23c0f420cc" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078/containers/sql-container-3518?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-412846d9d8120e82843734928663f106-c7e306cc648162aa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "38101167006e1bb0e0fe3c62630eb3c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "1374", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:34:53 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d6df0d8e-18f6-4be2-a7d0-fe2698ed063d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "d6df0d8e-18f6-4be2-a7d0-fe2698ed063d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T103454Z:d6df0d8e-18f6-4be2-a7d0-fe2698ed063d" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615/sqlDatabases/sql-database-5078/containers/sql-container-3518", + "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", + "name": "sql-container-3518", + "properties": { + "resource": { + "id": "sql-container-3518", + "indexingPolicy": { + "indexingMode": "consistent", + "automatic": true, + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/pathToNotIndex/*" + }, + { + "path": "/\u0022_etag\u0022/?" + } + ], + "spatialIndexes": [ + { + "path": "/*", + "types": [ + "Point", + "LineString", + "Polygon", + "MultiPolygon" + ] + } + ], + "compositeIndexes": [ + [ + { + "path": "/orderByPath1", + "order": "ascending" + }, + { + "path": "/orderByPath2", + "order": "descending" + } + ] + ] + }, + "partitionKey": { + "paths": [ + "/address/zipCode" + ], + "kind": "Hash" + }, + "uniqueKeyPolicy": { + "uniqueKeys": [] + }, + "conflictResolutionPolicy": { + "mode": "LastWriterWins", + "conflictResolutionPath": "/_ts", + "conflictResolutionProcedure": "" + }, + "backupPolicy": { + "type": 1 + }, + "geospatialConfig": { + "type": "Geography" + }, + "_rid": "fXkyAPsnJDo=", + "_ts": 1682073282, + "_self": "dbs/fXkyAA==/colls/fXkyAPsnJDo=/", + "_etag": "\u002200006e00-0000-0700-0000-644266c20000\u0022", + "_docs": "docs/", + "_sprocs": "sprocs/", + "_triggers": "triggers/", + "_udfs": "udfs/", + "_conflicts": "conflicts/", + "statistics": [ + { + "id": "0", + "sizeInKB": 0, + "documentCount": 0, + "sampledDistinctPartitionKeyCount": 0, + "partitionKeys": [] + } + ] + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282?api-version=2022-11-15-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "515", + "Content-Type": "application/json", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-4098c8bcc855c9d8-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a78b236ae2b503cd8545a687dd16a63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "kind": "GlobalDocumentDB", + "tags": { + "key1": "value1", + "key2": "value2" + }, + "location": "westus", + "properties": { + "locations": [ + { + "locationName": "westus", + "isZoneRedundant": false + } + ], + "databaseAccountOfferType": "Standard", + "createMode": "Restore", + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/22172c01-16ea-46c3-87fb-5c261b8068db", + "restoreTimestampInUtc": "2023-04-21T10:39:34.0000000Z" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "Cache-Control": "no-store, no-cache", + "Content-Length": "2773", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:00 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282/operationResults/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "837005d6-7ff6-4a33-9821-63846c7a1bfa", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e0b0d23a-6cb9-4bae-b9f0-75bcea473158", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104301Z:837005d6-7ff6-4a33-9821-63846c7a1bfa" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282", + "name": "restoredaccount-2282", + "location": "West US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-21T10:42:57.805258Z" + }, + "properties": { + "provisioningState": "Creating", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "66ff066b-72c1-4c7e-a7f9-56aba8c5ff87", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "", + "provisioningState": "Creating", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/22172c01-16ea-46c3-87fb-5c261b8068db", + "restoreTimestampInUtc": "2023-04-21T10:39:34Z", + "sourceBackupLocation": "West US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-21T10:42:57.805258Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-21T10:42:57.805258Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-21T10:42:57.805258Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-21T10:42:57.805258Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-3720a9feac686d11-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3b012474ebb6623cd4e796ac55b3622d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a602109a-2d30-4d49-80a1-2200804b05af", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "a602109a-2d30-4d49-80a1-2200804b05af", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104301Z:a602109a-2d30-4d49-80a1-2200804b05af" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-d8c59a177addd108-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c86cfed1eafde7df79d8ac3d65365e64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:01 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fe22e64c-96cf-4b65-85cd-4e2470851e95", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "fe22e64c-96cf-4b65-85cd-4e2470851e95", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104302Z:fe22e64c-96cf-4b65-85cd-4e2470851e95" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-4f8567eca5b75879-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "59f454ec2fd00aac095202e0b88c4adb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:02 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a3ec8a7a-c0c3-4e84-b8fd-fe2730cacde7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a3ec8a7a-c0c3-4e84-b8fd-fe2730cacde7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104303Z:a3ec8a7a-c0c3-4e84-b8fd-fe2730cacde7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-71400b463840ce07-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f3341b8b9e0889084419c2dd3ffefd9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:04 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cad06a56-dd71-4997-9cdf-a393b30f1ba7", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "cad06a56-dd71-4997-9cdf-a393b30f1ba7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104304Z:cad06a56-dd71-4997-9cdf-a393b30f1ba7" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-a55001241e811a38-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01bf328908bea15d5261bfaae8fe2fed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "227c5279-f9da-477a-b1be-2f18255a5057", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "227c5279-f9da-477a-b1be-2f18255a5057", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104306Z:227c5279-f9da-477a-b1be-2f18255a5057" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-b84605ccdad856b2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "49b2d18e6b014e5b4c6a15b66dcecb0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:10 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86d77691-560f-4c54-9914-b74433f7f9ee", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "86d77691-560f-4c54-9914-b74433f7f9ee", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104310Z:86d77691-560f-4c54-9914-b74433f7f9ee" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-ed714d6593ecfede-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8657645549cc821cbe92a0a6df5da145", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:18 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b9dcc276-e51a-4052-ba03-9ba464825f44", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "b9dcc276-e51a-4052-ba03-9ba464825f44", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104318Z:b9dcc276-e51a-4052-ba03-9ba464825f44" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-60cf933da3604148-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6d4fd5eab44b1e9dd671b553f2a63483", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:43:34 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b05fe0d8-91a9-4244-a20d-b83d0833f3fa", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "b05fe0d8-91a9-4244-a20d-b83d0833f3fa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104335Z:b05fe0d8-91a9-4244-a20d-b83d0833f3fa" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-646418362db06f38-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8455b495a9a74520b42f8a6ecab56eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:44:06 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ad8166ba-3e8f-45cd-8994-6d9486592ae9", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "ad8166ba-3e8f-45cd-8994-6d9486592ae9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104407Z:ad8166ba-3e8f-45cd-8994-6d9486592ae9" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-e475c8d67b5388b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "98cccfc95e7fa1bfc639af5a93c89017", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:44:39 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5447c5f8-efac-49cb-a8d1-7cc8387742d4", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "5447c5f8-efac-49cb-a8d1-7cc8387742d4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104439Z:5447c5f8-efac-49cb-a8d1-7cc8387742d4" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-cfe4b9f0e0356f3c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2b111d5e1d08419eb409b81b292f5320", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:45:11 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "19fff26e-6c43-48c0-b113-de9f94db6aba", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "19fff26e-6c43-48c0-b113-de9f94db6aba", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104511Z:19fff26e-6c43-48c0-b113-de9f94db6aba" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-4b4f7391289f0f9f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "238ac6029cda3703f4b3bd6df9c6b1ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:45:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f7452dd7-c8c0-42b4-8137-291050fba2fc", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "f7452dd7-c8c0-42b4-8137-291050fba2fc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104543Z:f7452dd7-c8c0-42b4-8137-291050fba2fc" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-9ef9c47a95f5d640-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac0f729f43a4ace5308be475a5a47897", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:46:15 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "75b0ca83-be5c-48f5-adbb-35c003fd1cad", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "75b0ca83-be5c-48f5-adbb-35c003fd1cad", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104615Z:75b0ca83-be5c-48f5-adbb-35c003fd1cad" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-be30749cc6b6ede7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cc578ee56d3ec23d1ad936555f3147ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:46:47 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "96ee62e0-8a85-481d-801d-0596c6bd7cfd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "96ee62e0-8a85-481d-801d-0596c6bd7cfd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104647Z:96ee62e0-8a85-481d-801d-0596c6bd7cfd" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-949fc8dd29be8321-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b67bcc58a61fbf7ce1ddf24eb78d9150", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:47:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5d60479-7cd0-45ef-88e8-6a14042df8be", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "e5d60479-7cd0-45ef-88e8-6a14042df8be", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104720Z:e5d60479-7cd0-45ef-88e8-6a14042df8be" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-b0fddd7fefcc29e4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6a87253be46e32ad354d92ca0c904cff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:47:51 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cc29fecb-43e7-47d0-ab4b-802237eddea2", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "cc29fecb-43e7-47d0-ab4b-802237eddea2", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104752Z:cc29fecb-43e7-47d0-ab4b-802237eddea2" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-e323bc108f507df9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d91df543c1283e781298eb607aef0a8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:48:23 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62ca03e7-a0f6-40d2-b021-ac56a711839d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "62ca03e7-a0f6-40d2-b021-ac56a711839d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104824Z:62ca03e7-a0f6-40d2-b021-ac56a711839d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-a096057e73956c3e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a1ae647dda9737f1f4881d214b1b250", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:48:55 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f2cfd3e-55c5-40de-b605-76425eb1ed40", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "2f2cfd3e-55c5-40de-b605-76425eb1ed40", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104856Z:2f2cfd3e-55c5-40de-b605-76425eb1ed40" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-14d9034953f44b51-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c20af291b86f7927ad4858d5f94cb846", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:49:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4bbe06b1-41b8-4e3a-8e1d-50884537ff57", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "4bbe06b1-41b8-4e3a-8e1d-50884537ff57", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T104928Z:4bbe06b1-41b8-4e3a-8e1d-50884537ff57" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-93b5ea04c8188816-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "268205421276665676aab9df40a62a60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:50:00 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6dac574d-5395-4286-9531-ff1adaf2c556", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "6dac574d-5395-4286-9531-ff1adaf2c556", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105001Z:6dac574d-5395-4286-9531-ff1adaf2c556" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-41a983a0dd010a78-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "88cf9ae648e48f1cbea08c6084a979d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:50:33 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "83494719-db43-4c42-ac7f-8c56eaa9a450", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "83494719-db43-4c42-ac7f-8c56eaa9a450", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105033Z:83494719-db43-4c42-ac7f-8c56eaa9a450" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-a50c1e2fe1ee13e4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e8f3a908c2f7fda9ca34bc5fe483807", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:51:05 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d2a3adf5-2fce-46ed-874e-10e79b455a53", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "d2a3adf5-2fce-46ed-874e-10e79b455a53", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105105Z:d2a3adf5-2fce-46ed-874e-10e79b455a53" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-9e00db84beeb852d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5eeff71e2f7cfa61e9f367d585f5e1cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:51:37 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0f78a14a-2cda-4e09-b027-8b21eee46f77", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "0f78a14a-2cda-4e09-b027-8b21eee46f77", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105137Z:0f78a14a-2cda-4e09-b027-8b21eee46f77" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-d2d786ac3a119fbb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "054ee7301b165931bf50eb40fc579076", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:52:09 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2746b641-b54c-4c82-b678-6026676911cf", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "2746b641-b54c-4c82-b678-6026676911cf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105209Z:2746b641-b54c-4c82-b678-6026676911cf" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-45907df47c726581-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8d4285681ab96155d995253b2404f9a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:52:41 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd04ee45-552a-4ec1-916b-9b92b8dd019d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "dd04ee45-552a-4ec1-916b-9b92b8dd019d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105241Z:dd04ee45-552a-4ec1-916b-9b92b8dd019d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-c97af3df451f0f95-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "17947fc232f902f0c6959f2c4321fd91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:53:13 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "61de6397-2211-4893-a881-09385e02833b", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "61de6397-2211-4893-a881-09385e02833b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105314Z:61de6397-2211-4893-a881-09385e02833b" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-2efe546b4ea4a8cd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "006df16254b3161291ed2c81f6f535bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:53:45 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ef7df01-9b35-481a-bcbe-61dcf7d4575d", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "7ef7df01-9b35-481a-bcbe-61dcf7d4575d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105346Z:7ef7df01-9b35-481a-bcbe-61dcf7d4575d" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-0519ac555e4d3d4e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c7e455779c3357c943fc6237b291db7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:54:17 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6ea57c24-6ed3-44af-8548-1618ceb5917a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6ea57c24-6ed3-44af-8548-1618ceb5917a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105418Z:6ea57c24-6ed3-44af-8548-1618ceb5917a" + }, + "ResponseBody": { + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-916fa83b95fab9a6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33d89497f9976df36d7e860b056f0bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:54:49 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c0e512ad-b4d2-4292-bfa0-537511c0f15a", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "c0e512ad-b4d2-4292-bfa0-537511c0f15a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105450Z:c0e512ad-b4d2-4292-bfa0-537511c0f15a" + }, + "ResponseBody": { + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "120", - "Content-Type": "application/json", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-c0a100b3f1c334a7-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "84d1018f035b78651ce4c9d44688d770", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-e32ee63ce9138ad5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fed4e46081a3e9cd74386b738eee9a67", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-database-1916" - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:04 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916/operationResults/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:55:21 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "688c35f2-3368-4699-8caa-8107884c6f67", + "x-ms-correlation-request-id": "c92c556f-b03f-4ec6-bf9a-8f843f9ca889", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "4108335b-c0fa-4a07-9a88-af57a1240570", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030305Z:688c35f2-3368-4699-8caa-8107884c6f67" + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "c92c556f-b03f-4ec6-bf9a-8f843f9ca889", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105522Z:c92c556f-b03f-4ec6-bf9a-8f843f9ca889" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-b4095f0275f14d3c-00", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-8fc035b107b4fe1e-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c13dabf22da2f99ced41bff3ee2e931c", + "x-ms-client-request-id": "62e974d0021c5e2351100f45f2702f25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -14909,91 +17424,241 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:04 GMT", + "Date": "Fri, 21 Apr 2023 10:55:54 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4f44a46-2d97-4444-974a-a2f93a7f99db", + "x-ms-correlation-request-id": "b90141cc-b3a4-4d03-9c05-8290f2b2f1fd", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "e4f44a46-2d97-4444-974a-a2f93a7f99db", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030305Z:e4f44a46-2d97-4444-974a-a2f93a7f99db" + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b90141cc-b3a4-4d03-9c05-8290f2b2f1fd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105554Z:b90141cc-b3a4-4d03-9c05-8290f2b2f1fd" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0b0d23a-6cb9-4bae-b9f0-75bcea473158?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-1a57316e384bbe3c-00", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-fc48b69947aca2d3-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ef9a6e5df14b199fe1171e4d2f81e657", + "x-ms-client-request-id": "97c3f4331e541614c6efbf5f8d80df7e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "21", + "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:06 GMT", + "Date": "Fri, 21 Apr 2023 10:56:26 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f2baf3f-bed7-4648-a312-67173d957571", + "x-ms-correlation-request-id": "760b72ac-0784-472e-bd1b-426977906086", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "1f2baf3f-bed7-4648-a312-67173d957571", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030306Z:1f2baf3f-bed7-4648-a312-67173d957571" + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "760b72ac-0784-472e-bd1b-426977906086", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105627Z:760b72ac-0784-472e-bd1b-426977906086" }, "ResponseBody": { - "status": "Enqueued" + "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-53206ae1119df864-00", + "traceparent": "00-79f93a5db7f92f7cdcf44b6b335e5874-7d33238af5651b44-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9ae28eab164bc8ce39111b7db62bcb37", + "x-ms-client-request-id": "913b1ee3a9855eb4c076ad927188f603", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "3107", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 10:56:26 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e51c9f1b-9c1b-4a7a-9037-4bf06280e278", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "e51c9f1b-9c1b-4a7a-9037-4bf06280e278", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105627Z:e51c9f1b-9c1b-4a7a-9037-4bf06280e278" + }, + "ResponseBody": { + "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282", + "name": "restoredaccount-2282", + "location": "West US", + "type": "Microsoft.DocumentDB/databaseAccounts", + "kind": "GlobalDocumentDB", + "tags": {}, + "systemData": { + "createdAt": "2023-04-21T10:56:05.1073196Z" + }, + "properties": { + "provisioningState": "Succeeded", + "documentEndpoint": "https://restoredaccount-2282.documents.azure.com:443/", + "sqlEndpoint": "https://restoredaccount-2282.documents.azure.com:443/", + "publicNetworkAccess": "Enabled", + "enableAutomaticFailover": false, + "enableMultipleWriteLocations": false, + "enablePartitionKeyMonitor": false, + "isVirtualNetworkFilterEnabled": false, + "virtualNetworkRules": [], + "EnabledApiTypes": "Sql", + "disableKeyBasedMetadataWriteAccess": false, + "enableFreeTier": false, + "enableAnalyticalStorage": false, + "analyticalStorageConfiguration": {}, + "instanceId": "66ff066b-72c1-4c7e-a7f9-56aba8c5ff87", + "createMode": "Restore", + "databaseAccountOfferType": "Standard", + "enableMaterializedViews": false, + "defaultIdentity": "FirstPartyIdentity", + "networkAclBypass": "None", + "disableLocalAuth": false, + "enablePartitionMerge": false, + "enableBurstCapacity": false, + "minimalTlsVersion": "Tls", + "consistencyPolicy": { + "defaultConsistencyLevel": "Session", + "maxIntervalInSeconds": 5, + "maxStalenessPrefix": 100 + }, + "configurationOverrides": {}, + "writeLocations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-2282-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "readLocations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-2282-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "locations": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "documentEndpoint": "https://restoredaccount-2282-westus.documents.azure.com:443/", + "provisioningState": "Succeeded", + "failoverPriority": 0, + "isZoneRedundant": false + } + ], + "failoverPolicies": [ + { + "id": "restoredaccount-2282-westus", + "locationName": "West US", + "failoverPriority": 0 + } + ], + "cors": [], + "capabilities": [], + "ipRules": [], + "backupPolicy": { + "type": "Continuous", + "continuousModeProperties": { + "tier": "Continuous30Days" + } + }, + "restoreParameters": { + "restoreMode": "PointInTime", + "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/22172c01-16ea-46c3-87fb-5c261b8068db", + "restoreTimestampInUtc": "2023-04-21T10:39:34Z", + "sourceBackupLocation": "West US", + "databasesToRestore": [] + }, + "networkAclBypassResourceIds": [], + "diagnosticLogSettings": { + "enableFullTextQuery": "None" + }, + "capacity": { + "totalThroughputLimit": -1 + }, + "keysMetadata": { + "primaryMasterKey": { + "generationTime": "2023-04-21T10:56:05.1073196Z" + }, + "secondaryMasterKey": { + "generationTime": "2023-04-21T10:56:05.1073196Z" + }, + "primaryReadonlyMasterKey": { + "generationTime": "2023-04-21T10:56:05.1073196Z" + }, + "secondaryReadonlyMasterKey": { + "generationTime": "2023-04-21T10:56:05.1073196Z" + } + } + }, + "identity": { + "type": "None" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-9615?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-43adcd46949da476-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "993f4608022bb21260d39c2d42c4d0d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:07 GMT", + "Date": "Fri, 21 Apr 2023 10:56:27 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97e3e061-055c-4136-b962-d3167321e6da", + "x-ms-correlation-request-id": "671f075b-89f7-49cd-8c0c-548edaf48876", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "97e3e061-055c-4136-b962-d3167321e6da", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030307Z:97e3e061-055c-4136-b962-d3167321e6da" + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105628Z:671f075b-89f7-49cd-8c0c-548edaf48876" }, "ResponseBody": { "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-e1319908981cd7af-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-f13b0a1c30f926ae-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2386b77a492a00ef0c23df8a0f4ec96b", + "x-ms-client-request-id": "4756bbf84540e1530c8930b10d871bfb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15002,29 +17667,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:08 GMT", + "Date": "Fri, 21 Apr 2023 10:56:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "402e91ef-5042-4d2f-a996-dcd0940ac90c", + "x-ms-correlation-request-id": "e70bfd52-2455-4570-89a0-144dab237d9d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "402e91ef-5042-4d2f-a996-dcd0940ac90c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030309Z:402e91ef-5042-4d2f-a996-dcd0940ac90c" + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "e70bfd52-2455-4570-89a0-144dab237d9d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105628Z:e70bfd52-2455-4570-89a0-144dab237d9d" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-8b1b31c633d20147-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-37e711c6bbf150d2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5f48675bf84c46d19fd1b63ad52163b6", + "x-ms-client-request-id": "e061dca622266acda6b559c62b3441de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15033,29 +17698,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:10 GMT", + "Date": "Fri, 21 Apr 2023 10:56:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65788973-9996-452b-95bd-ff9cdfebefec", + "x-ms-correlation-request-id": "8b414e4b-6da2-429c-86db-7255de5ff75d", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "65788973-9996-452b-95bd-ff9cdfebefec", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030311Z:65788973-9996-452b-95bd-ff9cdfebefec" + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "8b414e4b-6da2-429c-86db-7255de5ff75d", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105629Z:8b414e4b-6da2-429c-86db-7255de5ff75d" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-c992f9b65517ba66-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-841642f07c72fcb8-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "77d2e64cc2fb612d9fe18e273644b9ea", + "x-ms-client-request-id": "86355e2f896eeb903d80c7ab6dee7db8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15064,191 +17729,122 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:14 GMT", + "Date": "Fri, 21 Apr 2023 10:56:30 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "926c4e7d-1ed6-4ad4-b3ec-2d0241fcfcb4", + "x-ms-correlation-request-id": "20f8a1f4-7661-4f51-a1e2-0d38c68b0162", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "926c4e7d-1ed6-4ad4-b3ec-2d0241fcfcb4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030315Z:926c4e7d-1ed6-4ad4-b3ec-2d0241fcfcb4" + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "20f8a1f4-7661-4f51-a1e2-0d38c68b0162", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105630Z:20f8a1f4-7661-4f51-a1e2-0d38c68b0162" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4108335b-c0fa-4a07-9a88-af57a1240570?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-cf0cbe91ae294351-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-0cf01cf3fe68f711-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4e21b0476be282ebe63f835893b52aea", + "x-ms-client-request-id": "9437db49c320d517edeca18bec8db6d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:22 GMT", + "Date": "Fri, 21 Apr 2023 10:56:31 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1984bbdb-3957-4d49-92b6-18137e174acd", + "x-ms-correlation-request-id": "e4cfbc10-0d5c-46c1-8634-decd63c0fb56", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "1984bbdb-3957-4d49-92b6-18137e174acd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030323Z:1984bbdb-3957-4d49-92b6-18137e174acd" + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e4cfbc10-0d5c-46c1-8634-decd63c0fb56", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105631Z:e4cfbc10-0d5c-46c1-8634-decd63c0fb56" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-251ad5442db6a39f1da24525c816dcd4-93c41b0917d0e022-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-11da9407ae4b6724-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "283e29c0527b98703ae7c06a69a9105b", + "x-ms-client-request-id": "ae82524894521d8d4b75a3a65a22fcb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "479", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:23 GMT", + "Date": "Fri, 21 Apr 2023 10:56:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0aed876-1fea-420b-87fb-f6edab081659", + "x-ms-correlation-request-id": "d8503118-ffd6-4d7b-936f-53f19d1d84d9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "f0aed876-1fea-420b-87fb-f6edab081659", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030323Z:f0aed876-1fea-420b-87fb-f6edab081659" + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "d8503118-ffd6-4d7b-936f-53f19d1d84d9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105634Z:d8503118-ffd6-4d7b-936f-53f19d1d84d9" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", - "name": "sql-database-1916", - "properties": { - "resource": { - "id": "sql-database-1916", - "_rid": "u0JVAA==", - "_self": "dbs/u0JVAA==/", - "_etag": "\u002200005800-0000-0700-0000-6440ab700000\u0022", - "_colls": "colls/", - "_users": "users/", - "_ts": 1681959792 - } - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916/containers/sql-container-1070?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "489", - "Content-Type": "application/json", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-1645a17e6dca6d59-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ff25f2cbd414fbe05090bb3ed4ceeab7", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-49c96af64ff6ff78-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4f7ca137acfd6bbd475f9881e705ffaf", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-container-1070", - "indexingPolicy": { - "automatic": true, - "indexingMode": "consistent", - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point" - ] - } - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - } - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:23 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916/containers/sql-container-1070/operationResults/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 10:56:37 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1aa2c7e-c146-4375-ab10-1a13a2b42867", + "x-ms-correlation-request-id": "f2a2968a-bc8d-42f3-8525-2b0cb291204b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "a8101a58-d8ab-4d13-8de3-adf9c7f62807", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030324Z:d1aa2c7e-c146-4375-ab10-1a13a2b42867" + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "f2a2968a-bc8d-42f3-8525-2b0cb291204b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105638Z:f2a2968a-bc8d-42f3-8525-2b0cb291204b" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-e2a83a8e93e1a200-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-f5dc691ae1c49e29-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c2c74028ea0455ab5d2c2bc1b45a6518", + "x-ms-client-request-id": "1b63f0c9ce6bb4654e1a48ab1f707acb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15257,29 +17853,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:23 GMT", + "Date": "Fri, 21 Apr 2023 10:56:45 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23bea5b9-1e2d-4429-acce-e3e6507bd44c", + "x-ms-correlation-request-id": "61b7ce82-1dc7-47d8-9298-ff00ba2dd9c5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "23bea5b9-1e2d-4429-acce-e3e6507bd44c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030324Z:23bea5b9-1e2d-4429-acce-e3e6507bd44c" + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "61b7ce82-1dc7-47d8-9298-ff00ba2dd9c5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105646Z:61b7ce82-1dc7-47d8-9298-ff00ba2dd9c5" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-b740a2df26436582-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-d11b289252546b7a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "41c5b3d655035d86fee57600d8347b37", + "x-ms-client-request-id": "4a53e9ef67109bda951767f3fc0b3546", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15288,29 +17884,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:24 GMT", + "Date": "Fri, 21 Apr 2023 10:57:01 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12b488dc-187d-4ea7-adcd-0770c65f90e7", + "x-ms-correlation-request-id": "736e0d7f-99d4-4485-af15-fa927da8e857", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "12b488dc-187d-4ea7-adcd-0770c65f90e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030325Z:12b488dc-187d-4ea7-adcd-0770c65f90e7" + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "736e0d7f-99d4-4485-af15-fa927da8e857", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105702Z:736e0d7f-99d4-4485-af15-fa927da8e857" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-e8b14eecb261b0ee-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-e819fe036f162f62-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "94168c532706bab2bbb7a86442338a2e", + "x-ms-client-request-id": "6adcf475e1be694b3bc801e263114bd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15319,29 +17915,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:25 GMT", + "Date": "Fri, 21 Apr 2023 10:57:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d3f3651-5dba-4b6d-a2ca-a528316f4f02", + "x-ms-correlation-request-id": "3a2b860e-6e95-486e-b270-f6d0af62018e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "7d3f3651-5dba-4b6d-a2ca-a528316f4f02", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030326Z:7d3f3651-5dba-4b6d-a2ca-a528316f4f02" + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "3a2b860e-6e95-486e-b270-f6d0af62018e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105734Z:3a2b860e-6e95-486e-b270-f6d0af62018e" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-de7af2700bc8d0d3-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-6d2dc5c8792d72f9-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cdd5e2aefb53d32cb969c41f73ab7c28", + "x-ms-client-request-id": "fd91cde4b4b1629e15c885546672b842", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15350,29 +17946,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:27 GMT", + "Date": "Fri, 21 Apr 2023 10:58:06 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72ec240d-f9e8-44fb-9576-655d0bf69bed", + "x-ms-correlation-request-id": "507f7f2e-9011-4bdc-85cb-0c6beeee2df6", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "72ec240d-f9e8-44fb-9576-655d0bf69bed", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030327Z:72ec240d-f9e8-44fb-9576-655d0bf69bed" + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "507f7f2e-9011-4bdc-85cb-0c6beeee2df6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105806Z:507f7f2e-9011-4bdc-85cb-0c6beeee2df6" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-1cefd3fbd3879af6-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-0899301c96d91ecf-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "286ef3b1d144ae12000a864bac211acb", + "x-ms-client-request-id": "2b3502e410930e0d9eea0f4765f73783", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15381,29 +17977,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:29 GMT", + "Date": "Fri, 21 Apr 2023 10:58:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7920bd65-e20f-4dea-8c47-2280b8eff471", + "x-ms-correlation-request-id": "566f727a-80e0-483f-9d60-b26c740b8802", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "7920bd65-e20f-4dea-8c47-2280b8eff471", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030329Z:7920bd65-e20f-4dea-8c47-2280b8eff471" + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "566f727a-80e0-483f-9d60-b26c740b8802", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105839Z:566f727a-80e0-483f-9d60-b26c740b8802" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-a8b8323ac886fb65-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-80efe8bfa9c414c7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f651485bad5f58e35f42da9c63934610", + "x-ms-client-request-id": "2e0e91cc3779c094557a54f65bf702c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15412,349 +18008,153 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:33 GMT", + "Date": "Fri, 21 Apr 2023 10:59:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7a38503-ea6a-4458-b218-813d6157d179", + "x-ms-correlation-request-id": "542a526b-335f-4653-b722-7f46920d9820", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "e7a38503-ea6a-4458-b218-813d6157d179", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030334Z:e7a38503-ea6a-4458-b218-813d6157d179" + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "542a526b-335f-4653-b722-7f46920d9820", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105911Z:542a526b-335f-4653-b722-7f46920d9820" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8101a58-d8ab-4d13-8de3-adf9c7f62807?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-fba623524201a90a-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-be2a452e28d6b47d-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4fb3803b61c4ddead027cc4875e12698", + "x-ms-client-request-id": "61febe101fdbd442bf835fc7a557fc1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:41 GMT", + "Date": "Fri, 21 Apr 2023 10:59:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b3a7ffd-4715-4dcd-86cc-f8bbe9431219", + "x-ms-correlation-request-id": "cc4bd3b5-756b-4c8a-928a-40e043a52945", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "6b3a7ffd-4715-4dcd-86cc-f8bbe9431219", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030342Z:6b3a7ffd-4715-4dcd-86cc-f8bbe9431219" + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "cc4bd3b5-756b-4c8a-928a-40e043a52945", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T105943Z:cc4bd3b5-756b-4c8a-928a-40e043a52945" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916/containers/sql-container-1070?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6a5b45c84fcfa5584c86615489ed4dc2-2365ad7e4d9663e3-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-a41165ae1cc88876-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2bc4f84f865a03c90f15c901f6754a6d", + "x-ms-client-request-id": "d58802908964acc86d75d619bb16b2a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "1374", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:03:41 GMT", + "Date": "Fri, 21 Apr 2023 11:00:15 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50c7ed19-9a73-4c83-83d9-4231c4c6f257", + "x-ms-correlation-request-id": "41739aa4-ad6a-4901-b669-1707ce0b8de6", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "50c7ed19-9a73-4c83-83d9-4231c4c6f257", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T030342Z:50c7ed19-9a73-4c83-83d9-4231c4c6f257" + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "41739aa4-ad6a-4901-b669-1707ce0b8de6", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110015Z:41739aa4-ad6a-4901-b669-1707ce0b8de6" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663/sqlDatabases/sql-database-1916/containers/sql-container-1070", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", - "name": "sql-container-1070", - "properties": { - "resource": { - "id": "sql-container-1070", - "indexingPolicy": { - "indexingMode": "consistent", - "automatic": true, - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - }, - { - "path": "/\u0022_etag\u0022/?" - } - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point", - "LineString", - "Polygon", - "MultiPolygon" - ] - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - }, - "uniqueKeyPolicy": { - "uniqueKeys": [] - }, - "conflictResolutionPolicy": { - "mode": "LastWriterWins", - "conflictResolutionPath": "/_ts", - "conflictResolutionProcedure": "" - }, - "backupPolicy": { - "type": 1 - }, - "geospatialConfig": { - "type": "Geography" - }, - "_rid": "u0JVAMT1a2M=", - "_ts": 1681959811, - "_self": "dbs/u0JVAA==/colls/u0JVAMT1a2M=/", - "_etag": "\u002200005d00-0000-0700-0000-6440ab830000\u0022", - "_docs": "docs/", - "_sprocs": "sprocs/", - "_triggers": "triggers/", - "_udfs": "udfs/", - "_conflicts": "conflicts/", - "statistics": [ - { - "id": "0", - "sizeInKB": 0, - "documentCount": 0, - "sampledDistinctPartitionKeyCount": 0, - "partitionKeys": [] - } - ] - } - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053?api-version=2022-11-15-preview", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "515", - "Content-Type": "application/json", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-f9d63c4c155ce8a6-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6e2c0f7506cb5ef9732537e09be37e1c", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-171198199eaf52e7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a73747e7d5f9aca74e3a6ff6d7cd1bfe", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "location": "westus", - "properties": { - "locations": [ - { - "locationName": "westus", - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "createMode": "Restore", - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", - "restoreTimestampInUtc": "2023-04-20T03:07:18.0000000Z" - } - } - }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", - "Content-Length": "2773", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:51 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053/operationResults/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 11:00:47 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95a64f2e-be4f-4854-bfbf-41fd8e77c017", + "x-ms-correlation-request-id": "69803333-00ad-4b84-b372-f17d450104f8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "3f35ee32-ad2e-40aa-9bdc-0cb114aa518d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031152Z:95a64f2e-be4f-4854-bfbf-41fd8e77c017" + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "69803333-00ad-4b84-b372-f17d450104f8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110048Z:69803333-00ad-4b84-b372-f17d450104f8" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053", - "name": "restoredaccount-1053", - "location": "West US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T03:11:49.333724Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "934fa420-f11f-4b42-83e3-1856e5d57188", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", - "restoreTimestampInUtc": "2023-04-20T03:07:18Z", - "sourceBackupLocation": "West US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T03:11:49.333724Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T03:11:49.333724Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:11:49.333724Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:11:49.333724Z" - } - } - }, - "identity": { - "type": "None" - } + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-0bd2660e5cd4380d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5965367d2c6e8764f651f366492918a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 11:01:19 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "22baa5a4-2f15-4d8b-bcf6-84989181a24c", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "22baa5a4-2f15-4d8b-bcf6-84989181a24c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110120Z:22baa5a4-2f15-4d8b-bcf6-84989181a24c" + }, + "ResponseBody": { + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-d005cfe280d5d5aa-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-7172f7e0290feb07-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d1ff845f29faf283cbcde76091237432", + "x-ms-client-request-id": "5ddfb8d0551fba255adc872a1ad1d4a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15763,29 +18163,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:51 GMT", + "Date": "Fri, 21 Apr 2023 11:01:51 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cb059ba-2558-4253-a0e3-5ce7735937c2", + "x-ms-correlation-request-id": "f1c3460a-ec00-4fb5-8e6f-92a28afb7457", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0cb059ba-2558-4253-a0e3-5ce7735937c2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031152Z:0cb059ba-2558-4253-a0e3-5ce7735937c2" + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "f1c3460a-ec00-4fb5-8e6f-92a28afb7457", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110152Z:f1c3460a-ec00-4fb5-8e6f-92a28afb7457" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-4de53bf84c8c1454-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-80c20f239a5d3f96-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "28b4e54b9edfc0a85a75bf8c5660758c", + "x-ms-client-request-id": "849cd75959b1bb38e3b0b0a7e2416225", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15794,29 +18194,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:53 GMT", + "Date": "Fri, 21 Apr 2023 11:02:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c26cbd86-163e-4db2-a63e-67f9d102ddb6", + "x-ms-correlation-request-id": "9db1cf6f-3464-4fba-a3b1-b660b0a84706", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "c26cbd86-163e-4db2-a63e-67f9d102ddb6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031153Z:c26cbd86-163e-4db2-a63e-67f9d102ddb6" + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "9db1cf6f-3464-4fba-a3b1-b660b0a84706", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110224Z:9db1cf6f-3464-4fba-a3b1-b660b0a84706" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-b8b02a14e3c9cfe5-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-117e3e8ea15db1f2-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "16815acbace41821c978044ece54258c", + "x-ms-client-request-id": "1e25c521beed27de11aafe92a43a6c24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15825,29 +18225,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:54 GMT", + "Date": "Fri, 21 Apr 2023 11:02:56 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6767dc1-1996-4f71-b7a3-f309baee7710", + "x-ms-correlation-request-id": "394b8cd1-5827-4679-a5d2-3bcdee9bc80a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "d6767dc1-1996-4f71-b7a3-f309baee7710", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031154Z:d6767dc1-1996-4f71-b7a3-f309baee7710" + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "394b8cd1-5827-4679-a5d2-3bcdee9bc80a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110257Z:394b8cd1-5827-4679-a5d2-3bcdee9bc80a" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-ed3ba766443de356-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-5d8e75efce0561fe-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "034d7dca3232c0fedc3e76846af79b6a", + "x-ms-client-request-id": "710c537c948c76f780247a6fa57dd819", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15856,29 +18256,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:55 GMT", + "Date": "Fri, 21 Apr 2023 11:03:28 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c933b161-df0c-49a0-8c4b-2689f0abd84c", + "x-ms-correlation-request-id": "827221de-9fcf-4a1d-8918-55ff70bcd349", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "c933b161-df0c-49a0-8c4b-2689f0abd84c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031155Z:c933b161-df0c-49a0-8c4b-2689f0abd84c" + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "827221de-9fcf-4a1d-8918-55ff70bcd349", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110329Z:827221de-9fcf-4a1d-8918-55ff70bcd349" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-bf590e2c99899ebb-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-d063677788d648e4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "36955b575ea19e4dc39b5e669a59f206", + "x-ms-client-request-id": "54086279b5ac9bb2f97473065ba516a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15887,29 +18287,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:11:57 GMT", + "Date": "Fri, 21 Apr 2023 11:04:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21501b63-7f9e-4462-a735-c146dcbb5400", + "x-ms-correlation-request-id": "c7de39c9-bc9c-44c1-b293-025178bf0aaa", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "21501b63-7f9e-4462-a735-c146dcbb5400", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031157Z:21501b63-7f9e-4462-a735-c146dcbb5400" + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "c7de39c9-bc9c-44c1-b293-025178bf0aaa", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110401Z:c7de39c9-bc9c-44c1-b293-025178bf0aaa" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-3e2c236886e81dcd-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-398d42eaa5fe1795-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d9c23250711298595cc039a5359caed2", + "x-ms-client-request-id": "8e2a8b43f0348d98ceae9ec9436f8294", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15918,29 +18318,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:12:01 GMT", + "Date": "Fri, 21 Apr 2023 11:04:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43a495cd-fad8-4940-870c-237d31f8eb5f", + "x-ms-correlation-request-id": "4b8c9cb1-2efe-41ed-afb9-15c2e89fdd32", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "43a495cd-fad8-4940-870c-237d31f8eb5f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031201Z:43a495cd-fad8-4940-870c-237d31f8eb5f" + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "4b8c9cb1-2efe-41ed-afb9-15c2e89fdd32", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110433Z:4b8c9cb1-2efe-41ed-afb9-15c2e89fdd32" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-2bcb5da8f074fba8-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-4b5f722a0d770e03-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "72f699dceebf6bea2fae3f97d3972682", + "x-ms-client-request-id": "4218e4d11831c778a071781820f11bdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15949,29 +18349,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:12:09 GMT", + "Date": "Fri, 21 Apr 2023 11:05:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab41df08-a6ea-4b3c-90e3-ec37b1398f0d", + "x-ms-correlation-request-id": "d0f674bf-0058-4072-a254-9c41b199f749", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "ab41df08-a6ea-4b3c-90e3-ec37b1398f0d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031209Z:ab41df08-a6ea-4b3c-90e3-ec37b1398f0d" + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "d0f674bf-0058-4072-a254-9c41b199f749", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110505Z:d0f674bf-0058-4072-a254-9c41b199f749" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-8411c3f2cef2a192-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-08cc14a915d01c42-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3734704cc234e65702fcdae024a86926", + "x-ms-client-request-id": "192bd00d4a5388e5ca7b86fd17e85789", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -15980,29 +18380,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:12:25 GMT", + "Date": "Fri, 21 Apr 2023 11:05:37 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38f95a25-e4f5-4f27-863e-5c9a4bc00a86", + "x-ms-correlation-request-id": "a03e3015-fe5f-4523-b4e2-36c60edcc8e5", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "38f95a25-e4f5-4f27-863e-5c9a4bc00a86", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031225Z:38f95a25-e4f5-4f27-863e-5c9a4bc00a86" + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "a03e3015-fe5f-4523-b4e2-36c60edcc8e5", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110538Z:a03e3015-fe5f-4523-b4e2-36c60edcc8e5" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-296dc95dca360632-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-7d1e278ae80d7601-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "008a8bed7f6261474856a96431c1c4c5", + "x-ms-client-request-id": "7635dff2d48c2a771263eec278806cdc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16011,60 +18411,93 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:12:57 GMT", + "Date": "Fri, 21 Apr 2023 11:06:10 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d9f633d-f67a-45d4-8c5d-dfe3040769ad", + "x-ms-correlation-request-id": "72ba23d9-6930-4090-87e9-c39162398ca9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "9d9f633d-f67a-45d4-8c5d-dfe3040769ad", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031258Z:9d9f633d-f67a-45d4-8c5d-dfe3040769ad" + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "72ba23d9-6930-4090-87e9-c39162398ca9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110610Z:72ba23d9-6930-4090-87e9-c39162398ca9" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c8b65b6f-7b5f-4c10-9fc5-c9d149e7905d?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-513eb10579436dc1-00", + "traceparent": "00-6af7273abd772e2230e3cb2afd5037d4-88eced8c7f26112b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c459b69a7668199d411070c214094687", + "x-ms-client-request-id": "72bcc29368438740ff9077b6927bafb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 11:06:42 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0440abf8-b268-4b47-b968-5524f80f6205", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "0440abf8-b268-4b47-b968-5524f80f6205", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110642Z:0440abf8-b268-4b47-b968-5524f80f6205" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6972/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2282?api-version=2022-11-15-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-dd4f1f1afe5b55b7-00", + "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4125ee19a4bb394e580006ef5b22104a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:13:29 GMT", + "Date": "Fri, 21 Apr 2023 11:06:43 GMT", + "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4504b468-a91b-4f02-826c-c2aec62bf36e", + "x-ms-correlation-request-id": "641ec3c3-db9b-49f6-8d23-70448dd49b22", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "4504b468-a91b-4f02-826c-c2aec62bf36e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031330Z:4504b468-a91b-4f02-826c-c2aec62bf36e" + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "707fab15-4796-415a-8b73-d0772bb51cd8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110643Z:641ec3c3-db9b-49f6-8d23-70448dd49b22" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-d7a8d92f927f000c-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-c9860476e47750f4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "48a91945260ccd2029d3efde18f3b440", + "x-ms-client-request-id": "89a836b32a5aef2173831a4261502bdc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16073,29 +18506,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:14:01 GMT", + "Date": "Fri, 21 Apr 2023 11:06:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c48aef3f-a60c-4840-87f9-6ef688258919", + "x-ms-correlation-request-id": "f5481a0f-ceb0-48d8-a59a-4cfd3635573c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "c48aef3f-a60c-4840-87f9-6ef688258919", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031402Z:c48aef3f-a60c-4840-87f9-6ef688258919" + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "f5481a0f-ceb0-48d8-a59a-4cfd3635573c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110643Z:f5481a0f-ceb0-48d8-a59a-4cfd3635573c" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-da74b1fa4ce09dce-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-9a165042867f0684-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6d461438a44f77beee70be520e854c3e", + "x-ms-client-request-id": "e9a72d805a11358aa99ba30e2d52dc97", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16104,29 +18537,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:14:33 GMT", + "Date": "Fri, 21 Apr 2023 11:06:44 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b31f62c3-aefa-49ff-832d-f8ea1db70a2f", + "x-ms-correlation-request-id": "cd90eb44-654f-41ce-b5a5-b772af4de9c8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b31f62c3-aefa-49ff-832d-f8ea1db70a2f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031434Z:b31f62c3-aefa-49ff-832d-f8ea1db70a2f" + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "cd90eb44-654f-41ce-b5a5-b772af4de9c8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110644Z:cd90eb44-654f-41ce-b5a5-b772af4de9c8" }, "ResponseBody": { - "status": "Dequeued" + "status": "Enqueued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-ab4cd24a9d479841-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-09aefd3d29defde6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "181e220f7c1774b8968b9b9486bf004e", + "x-ms-client-request-id": "253c6f688679e3ef887ae1a9ca02284d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16135,29 +18568,60 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:15:06 GMT", + "Date": "Fri, 21 Apr 2023 11:06:45 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5d6ce85-9e59-41a2-a8ce-8a7a74fd02f6", + "x-ms-correlation-request-id": "24df56ae-740c-4932-8cb6-8037969fd376", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e5d6ce85-9e59-41a2-a8ce-8a7a74fd02f6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031506Z:e5d6ce85-9e59-41a2-a8ce-8a7a74fd02f6" + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "24df56ae-740c-4932-8cb6-8037969fd376", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110645Z:24df56ae-740c-4932-8cb6-8037969fd376" + }, + "ResponseBody": { + "status": "Enqueued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-46d4d3cc74f842ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2f7b9a82af195985ab73e0be8712c121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "21", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 11:06:46 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "813a7778-c9a0-4e1c-8e26-40458a3cc4fd", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "813a7778-c9a0-4e1c-8e26-40458a3cc4fd", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110647Z:813a7778-c9a0-4e1c-8e26-40458a3cc4fd" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-6ccf20f7bf939a6b-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-d6603e5a5b486c30-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "008a305bd9c3a1385a32599c67cebea4", + "x-ms-client-request-id": "f1da82a60614f9623dc3609779e16aa6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16166,29 +18630,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:15:38 GMT", + "Date": "Fri, 21 Apr 2023 11:06:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "107b4db1-d912-4d6e-9ae1-341fb7214e3c", + "x-ms-correlation-request-id": "a073dc51-467d-4041-87fc-8c2fda4649d8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "107b4db1-d912-4d6e-9ae1-341fb7214e3c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031539Z:107b4db1-d912-4d6e-9ae1-341fb7214e3c" + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "a073dc51-467d-4041-87fc-8c2fda4649d8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110649Z:a073dc51-467d-4041-87fc-8c2fda4649d8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-aab0b5405c28a093-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-961ddced7078db08-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f6ceb1879cd4bb285cd2d7c30829f12e", + "x-ms-client-request-id": "928c5673add6b97deae27906a6305c75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16197,29 +18661,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:16:11 GMT", + "Date": "Fri, 21 Apr 2023 11:06:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48059334-9c80-4045-8da2-db779b7f8a4c", + "x-ms-correlation-request-id": "52db2343-e781-467c-bb51-8756f41edcb4", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "48059334-9c80-4045-8da2-db779b7f8a4c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031611Z:48059334-9c80-4045-8da2-db779b7f8a4c" + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "52db2343-e781-467c-bb51-8756f41edcb4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110653Z:52db2343-e781-467c-bb51-8756f41edcb4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-b2cdcb7031ea57e4-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-81b51425dd3d2358-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ddf6706f4cfa367bea7dbde5221c0cc8", + "x-ms-client-request-id": "4702bfb836287b383782f1554eeee0ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16228,29 +18692,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:16:43 GMT", + "Date": "Fri, 21 Apr 2023 11:07:00 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5f12c3e-259f-41cc-a49c-c94aac95a691", + "x-ms-correlation-request-id": "365951b6-837e-494a-9239-197b68272c91", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "d5f12c3e-259f-41cc-a49c-c94aac95a691", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031643Z:d5f12c3e-259f-41cc-a49c-c94aac95a691" + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "365951b6-837e-494a-9239-197b68272c91", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110701Z:365951b6-837e-494a-9239-197b68272c91" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-4f0027f29e240f4e-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-fcc9ab666563d671-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d40df7cd0af1bf7908cea3f002749831", + "x-ms-client-request-id": "304b39082f86f94a052107328c5c530c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16259,29 +18723,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:17:15 GMT", + "Date": "Fri, 21 Apr 2023 11:07:16 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afd13f8a-19e3-4128-804e-fc8270bc23f0", + "x-ms-correlation-request-id": "ecdf0dc7-2eeb-4512-99ba-d00b4e9277ae", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "afd13f8a-19e3-4128-804e-fc8270bc23f0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031716Z:afd13f8a-19e3-4128-804e-fc8270bc23f0" + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "ecdf0dc7-2eeb-4512-99ba-d00b4e9277ae", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110717Z:ecdf0dc7-2eeb-4512-99ba-d00b4e9277ae" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-242c77ffe8acdd33-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-3bb941f78919617a-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f62c2b41e0d73aa936970b57de43983f", + "x-ms-client-request-id": "b9deeb6722de3c7e1d105b54bb276afb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16290,29 +18754,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:17:47 GMT", + "Date": "Fri, 21 Apr 2023 11:07:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11ae5d41-358e-4b80-959d-dfb10dd84dfd", + "x-ms-correlation-request-id": "c34bca96-0634-4f5c-9c6e-7923f9a11e51", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "11ae5d41-358e-4b80-959d-dfb10dd84dfd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031748Z:11ae5d41-358e-4b80-959d-dfb10dd84dfd" + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "c34bca96-0634-4f5c-9c6e-7923f9a11e51", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110749Z:c34bca96-0634-4f5c-9c6e-7923f9a11e51" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-fe41257d27429839-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-eac759954f63bd69-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "11f50ec51c1b653df736d52ba88a3475", + "x-ms-client-request-id": "6cfdae012be589ee750942062e05efdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16321,29 +18785,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:18:20 GMT", + "Date": "Fri, 21 Apr 2023 11:08:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4809f108-77d7-44af-b3b9-a6a379029642", + "x-ms-correlation-request-id": "ba200e61-833e-492a-8fd7-b16e931a210a", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "4809f108-77d7-44af-b3b9-a6a379029642", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031820Z:4809f108-77d7-44af-b3b9-a6a379029642" + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "ba200e61-833e-492a-8fd7-b16e931a210a", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110821Z:ba200e61-833e-492a-8fd7-b16e931a210a" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-3939fdc8cb839a6a-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-41d454b5d0570db6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f7a38ce416efecf04dd29d59fe21e0c4", + "x-ms-client-request-id": "62eee42f270fe5ecbb0f1376d4f63edd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16352,29 +18816,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:18:52 GMT", + "Date": "Fri, 21 Apr 2023 11:08:53 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a73d1461-9935-468f-b62e-26f35a9c4db8", + "x-ms-correlation-request-id": "20b51406-8d5b-481c-9380-9e01825f62a7", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a73d1461-9935-468f-b62e-26f35a9c4db8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031852Z:a73d1461-9935-468f-b62e-26f35a9c4db8" + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "20b51406-8d5b-481c-9380-9e01825f62a7", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110853Z:20b51406-8d5b-481c-9380-9e01825f62a7" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-dfa29d9fb37371eb-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-1a39b4ca603d8189-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f32a6336867e2515edc7ffa00a7d92ac", + "x-ms-client-request-id": "dd300bb6e65e3b27fc5444d5e0770d17", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16383,29 +18847,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:19:24 GMT", + "Date": "Fri, 21 Apr 2023 11:09:25 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddbe76cf-925a-4487-955f-8214b4b98e01", + "x-ms-correlation-request-id": "09d2bfe0-e65a-401a-8f8e-9d9e46e53ce8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "ddbe76cf-925a-4487-955f-8214b4b98e01", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031925Z:ddbe76cf-925a-4487-955f-8214b4b98e01" + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "09d2bfe0-e65a-401a-8f8e-9d9e46e53ce8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110926Z:09d2bfe0-e65a-401a-8f8e-9d9e46e53ce8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-c0d146521963d4a9-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-c5d58d39a72c38a4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "52739663a0a0af501e09c3497ee366d5", + "x-ms-client-request-id": "d6257f200739daecc217b1d61877b57e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16414,29 +18878,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:19:57 GMT", + "Date": "Fri, 21 Apr 2023 11:09:57 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c33bf98-e926-47e5-bc60-83336a77208f", + "x-ms-correlation-request-id": "e5168d8e-292b-4bee-8c35-3634323c5ebf", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "5c33bf98-e926-47e5-bc60-83336a77208f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T031957Z:5c33bf98-e926-47e5-bc60-83336a77208f" + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "e5168d8e-292b-4bee-8c35-3634323c5ebf", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T110958Z:e5168d8e-292b-4bee-8c35-3634323c5ebf" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-dfa25d6d3d4e12ac-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-31792f3419ace6f5-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "44f5115640605df6777e0928164fe2cf", + "x-ms-client-request-id": "225064cb11d5487cbdb265bbe2170544", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16445,29 +18909,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:20:29 GMT", + "Date": "Fri, 21 Apr 2023 11:10:29 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc5b60aa-6324-4589-8850-9dcfafa55cf3", + "x-ms-correlation-request-id": "85994a42-dd04-4536-9036-f612ba11511f", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "dc5b60aa-6324-4589-8850-9dcfafa55cf3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032029Z:dc5b60aa-6324-4589-8850-9dcfafa55cf3" + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "85994a42-dd04-4536-9036-f612ba11511f", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111030Z:85994a42-dd04-4536-9036-f612ba11511f" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-b9d4c41115b8aa0d-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-78dd5ea844a28150-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "68f6f1408eae9524137ad575c2cba60a", + "x-ms-client-request-id": "5455fb0167d1afa41f551b4635512385", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16476,29 +18940,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:21:01 GMT", + "Date": "Fri, 21 Apr 2023 11:11:01 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6efffb55-3e2e-4830-8901-b14e38327b8f", + "x-ms-correlation-request-id": "d182c256-0d43-4d36-99e1-a8c5f700c846", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "6efffb55-3e2e-4830-8901-b14e38327b8f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032101Z:6efffb55-3e2e-4830-8901-b14e38327b8f" + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "d182c256-0d43-4d36-99e1-a8c5f700c846", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111102Z:d182c256-0d43-4d36-99e1-a8c5f700c846" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-7a01e31977c54bbc-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-7f25e713d8ca0da6-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f94a29614d88224b9f15db21962799ce", + "x-ms-client-request-id": "7b09c59eea270f4203dc1986a130f7ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16507,29 +18971,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:21:33 GMT", + "Date": "Fri, 21 Apr 2023 11:11:33 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5be2f9e1-feb9-4955-ab29-5aa10867b384", + "x-ms-correlation-request-id": "c668e442-036c-4caf-9da7-9c6840e7c5bc", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "5be2f9e1-feb9-4955-ab29-5aa10867b384", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032133Z:5be2f9e1-feb9-4955-ab29-5aa10867b384" + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "c668e442-036c-4caf-9da7-9c6840e7c5bc", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111134Z:c668e442-036c-4caf-9da7-9c6840e7c5bc" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-85c9c78860b09618-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-e338e9794ae186e7-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8c09f426feedc726ec5f30e56b809aab", + "x-ms-client-request-id": "1dd46c12612263adbfa0037ff635136b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16538,29 +19002,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:22:05 GMT", + "Date": "Fri, 21 Apr 2023 11:12:05 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b81346a-2559-4ea4-a5fb-406ee2ef08a4", + "x-ms-correlation-request-id": "01e928d8-d026-41c7-a07b-e0af8315bff8", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "8b81346a-2559-4ea4-a5fb-406ee2ef08a4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032205Z:8b81346a-2559-4ea4-a5fb-406ee2ef08a4" + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "01e928d8-d026-41c7-a07b-e0af8315bff8", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111206Z:01e928d8-d026-41c7-a07b-e0af8315bff8" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-6d2fa83fd137a61d-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-8af3291654fc6795-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ecc7ffd7e804f247a5d3c899b302feec", + "x-ms-client-request-id": "1d1ce08f890d161db84651f44e1e0def", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16569,29 +19033,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:22:37 GMT", + "Date": "Fri, 21 Apr 2023 11:12:39 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6144af03-39cd-4bdb-afb2-d3f2b1347599", + "x-ms-correlation-request-id": "f18919d8-c436-461d-8c22-6423f7a62703", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "6144af03-39cd-4bdb-afb2-d3f2b1347599", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032238Z:6144af03-39cd-4bdb-afb2-d3f2b1347599" + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "f18919d8-c436-461d-8c22-6423f7a62703", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111239Z:f18919d8-c436-461d-8c22-6423f7a62703" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-5f2fb83f1446820f-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-3cb82943bcb97191-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ce4e06e119c2621c03830d281d66b71e", + "x-ms-client-request-id": "c8346f5d067c3d6317a6bb86e7c219cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16600,29 +19064,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:23:09 GMT", + "Date": "Fri, 21 Apr 2023 11:13:11 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bfd551b-2681-4bfb-9555-e850cb3113a2", + "x-ms-correlation-request-id": "a137a652-f0de-47cd-a677-9f6ad425f8c4", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "6bfd551b-2681-4bfb-9555-e850cb3113a2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032310Z:6bfd551b-2681-4bfb-9555-e850cb3113a2" + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "a137a652-f0de-47cd-a677-9f6ad425f8c4", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111311Z:a137a652-f0de-47cd-a677-9f6ad425f8c4" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-7b1fe95e3f34f8f8-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-5de0f653fa693de4-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "974a2f7aac603ec9ac17e61a358d14e9", + "x-ms-client-request-id": "c0f6adc8da14889e4fbd64db10b915a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16631,29 +19095,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:23:41 GMT", + "Date": "Fri, 21 Apr 2023 11:13:43 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71d93398-5da1-4b70-8276-c94f64afca3d", + "x-ms-correlation-request-id": "39e0574b-7157-4753-8c88-6b8eeb45ef88", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "71d93398-5da1-4b70-8276-c94f64afca3d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032342Z:71d93398-5da1-4b70-8276-c94f64afca3d" + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "39e0574b-7157-4753-8c88-6b8eeb45ef88", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111343Z:39e0574b-7157-4753-8c88-6b8eeb45ef88" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-6a9b660f44ab5f74-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-7e7e3194d5535898-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "64044460cc31bde8e364e981da1ed53f", + "x-ms-client-request-id": "862114934b0089ee7dde0666cd962ff5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16662,29 +19126,29 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:24:14 GMT", + "Date": "Fri, 21 Apr 2023 11:14:15 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cd0dd2d-221d-4208-8f10-da0ab74868f0", + "x-ms-correlation-request-id": "c56634f3-b8c5-4ea8-bde5-666e39467e7b", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "7cd0dd2d-221d-4208-8f10-da0ab74868f0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032414Z:7cd0dd2d-221d-4208-8f10-da0ab74868f0" + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "c56634f3-b8c5-4ea8-bde5-666e39467e7b", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111415Z:c56634f3-b8c5-4ea8-bde5-666e39467e7b" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-d391ef6e2e039e19-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-0c863866101bfcd1-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "831eaa1c67b8348b3d1022ab32022d75", + "x-ms-client-request-id": "a02b832c4c2783dad1ac78bfa1872d5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16693,270 +19157,180 @@ "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:24:46 GMT", + "Date": "Fri, 21 Apr 2023 11:14:48 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2d466d6-76db-493b-91ae-6f9bfe52f766", + "x-ms-correlation-request-id": "e4341055-a91f-4a04-9766-7cee9d5d793e", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "e2d466d6-76db-493b-91ae-6f9bfe52f766", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032447Z:e2d466d6-76db-493b-91ae-6f9bfe52f766" + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "e4341055-a91f-4a04-9766-7cee9d5d793e", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111448Z:e4341055-a91f-4a04-9766-7cee9d5d793e" }, "ResponseBody": { "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f35ee32-ad2e-40aa-9bdc-0cb114aa518d?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-42d40dab62beddbe-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-1984bf385cda1b7b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d8c7246f5261aeec478cb3fbc347638d", + "x-ms-client-request-id": "d3f31a9093a17dccbe6d4236d437bab8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "22", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:18 GMT", + "Date": "Fri, 21 Apr 2023 11:15:20 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f47fb154-61d3-49c6-8c43-38ddc76f76d7", + "x-ms-correlation-request-id": "8a51211f-306e-48ab-8c1c-8656efbae49c", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "f47fb154-61d3-49c6-8c43-38ddc76f76d7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032519Z:f47fb154-61d3-49c6-8c43-38ddc76f76d7" + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "8a51211f-306e-48ab-8c1c-8656efbae49c", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111520Z:8a51211f-306e-48ab-8c1c-8656efbae49c" }, "ResponseBody": { - "status": "Succeeded" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053?api-version=2022-11-15-preview", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5f06f6bd65b349355fc52bc222d10ad6-eb93bdce4dac6e88-00", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-8b3d50f6c923807b-00", "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8bfda741906ef830b8cf2721a93d8be1", + "x-ms-client-request-id": "8cae6e8e748d4679399eb454d22fe7f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "Content-Length": "3107", + "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:18 GMT", + "Date": "Fri, 21 Apr 2023 11:15:52 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d71a0f23-de1b-4f59-b3ec-fab6bb584247", + "x-ms-correlation-request-id": "8cdf1563-8eb7-4774-a706-e7dabc61bc91", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "d71a0f23-de1b-4f59-b3ec-fab6bb584247", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032519Z:d71a0f23-de1b-4f59-b3ec-fab6bb584247" + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "8cdf1563-8eb7-4774-a706-e7dabc61bc91", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111552Z:8cdf1563-8eb7-4774-a706-e7dabc61bc91" }, "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053", - "name": "restoredaccount-1053", - "location": "West US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T03:24:52.8838638Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://restoredaccount-1053.documents.azure.com:443/", - "sqlEndpoint": "https://restoredaccount-1053.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "934fa420-f11f-4b42-83e3-1856e5d57188", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-1053-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-1053-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "documentEndpoint": "https://restoredaccount-1053-westus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-1053-westus", - "locationName": "West US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", - "restoreTimestampInUtc": "2023-04-20T03:07:18Z", - "sourceBackupLocation": "West US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T03:24:52.8838638Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T03:24:52.8838638Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:24:52.8838638Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:24:52.8838638Z" - } - } - }, - "identity": { - "type": "None" - } + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-3663?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ce10265c2ab1cc5ce5a070d2e7872be3-cd79d6d48e891b32-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b6127436fc56c9ddbd703c2cb49071f5", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-14608de33a3e17a3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b3d6a7b15ba39954b6aee2ba0aa4af9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/335d829e-0cfd-4d5c-a6be-0086c515fbcb?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:19 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/335d829e-0cfd-4d5c-a6be-0086c515fbcb?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 11:16:24 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "234ce0ca-556d-45e4-a1fc-9822d6c1f67f", + "x-ms-correlation-request-id": "37691624-1311-4751-9277-c9416e920a92", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "335d829e-0cfd-4d5c-a6be-0086c515fbcb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032520Z:234ce0ca-556d-45e4-a1fc-9822d6c1f67f" + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "37691624-1311-4751-9277-c9416e920a92", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111624Z:37691624-1311-4751-9277-c9416e920a92" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" } }, { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-1053?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", + "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a700391c4678fdd9db8a074bcdc375ce-e9c9489534b602b2-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4ec4d200ac354537c933cdfe53044428", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-950ac2a23d1c5396-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3330bff1a0d81cd1a0ad9903de78aa8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8cd1d92c-bcf0-4849-87d1-2107364b9742?api-version=2022-11-15-preview", "Cache-Control": "no-store, no-cache", "Content-Length": "21", "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:21 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationResults/8cd1d92c-bcf0-4849-87d1-2107364b9742?api-version=2022-11-15-preview", + "Date": "Fri, 21 Apr 2023 11:16:55 GMT", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c31ca29-a72e-46a9-a3ee-7ae8410ad7be", + "x-ms-correlation-request-id": "cc56acd8-4275-4f88-b49f-1760db9d7bb9", "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "8cd1d92c-bcf0-4849-87d1-2107364b9742", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032521Z:9c31ca29-a72e-46a9-a3ee-7ae8410ad7be" + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "cc56acd8-4275-4f88-b49f-1760db9d7bb9", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111656Z:cc56acd8-4275-4f88-b49f-1760db9d7bb9" }, "ResponseBody": { - "status": "Enqueued" + "status": "Dequeued" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/707fab15-4796-415a-8b73-d0772bb51cd8?api-version=2022-11-15-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68b2e19b642204aeebd50db3ae392c38-b326a85c92766790-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2c844c85076132151914d5de92bf3c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "Content-Length": "22", + "Content-Type": "application/json", + "Date": "Fri, 21 Apr 2023 11:17:28 GMT", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d7782834-90ca-443d-bec0-20e810570412", + "x-ms-gatewayversion": "version=2.14.0", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "d7782834-90ca-443d-bec0-20e810570412", + "x-ms-routing-request-id": "SOUTHCENTRALUS:20230421T111729Z:d7782834-90ca-443d-bec0-20e810570412" + }, + "ResponseBody": { + "status": "Succeeded" } } ], "Variables": { "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1180441962", + "RandomSeed": "1148502674", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestore.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestore.json deleted file mode 100644 index cd4eae6c9af6..000000000000 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestore.json +++ /dev/null @@ -1,16864 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-1407?api-version=**", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-14330757be776f61d33a5193acfaeebe-0be9657980752f74-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f8b2f2c248f86f627727be1efd59cdf5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:29:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "443ab659-0ba5-4208-89ea-d979ccc1d514", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "443ab659-0ba5-4208-89ea-d979ccc1d514", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002949Z:443ab659-0ba5-4208-89ea-d979ccc1d514" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407", - "name": "dbaccount-1407", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "575", - "Content-Type": "application/json", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-f06f8d09ac5ff00a-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f8cab7e214e2692623b8429fca96c534", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": {}, - "location": "westcentralus", - "properties": { - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxStalenessPrefix": 300, - "maxIntervalInSeconds": 1000 - }, - "locations": [ - { - "locationName": "westcentralus", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "isVirtualNetworkFilterEnabled": true, - "enableAutomaticFailover": false, - "connectorOffer": "Small", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "backupPolicy": { - "type": "Continuous" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "2478", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:53 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/operationResults/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f0690f6-d509-4bf4-b181-5f6f2a240ac6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "f8afd132-4ad6-4104-b184-d9321f352543", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002954Z:3f0690f6-d509-4bf4-b181-5f6f2a240ac6" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849", - "name": "r-database-account-5849", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T00:29:52.6378281Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": true, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": { - "schemaType": "WellDefined" - }, - "instanceId": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "createMode": "Default", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T00:29:52.6378281Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T00:29:52.6378281Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:29:52.6378281Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:29:52.6378281Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-41c401a7c6ecacf4-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dd88149ea18ddedf8c8ed58f20cfad91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:53 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cbf2115-3999-497e-be94-8b40dd052a02", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "6cbf2115-3999-497e-be94-8b40dd052a02", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002954Z:6cbf2115-3999-497e-be94-8b40dd052a02" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-422d222fb6ebcd50-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c9bfeaf9e4d747e48d80ffcd52be6d32", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:54 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd470296-157e-4c99-98c4-040d1a515e66", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "fd470296-157e-4c99-98c4-040d1a515e66", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002955Z:fd470296-157e-4c99-98c4-040d1a515e66" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-2355adef3df8aaca-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b6013730e80d9da6af1884fac59b2929", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:55 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ac58eed-78fb-4854-8650-5e8b286c0c97", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "5ac58eed-78fb-4854-8650-5e8b286c0c97", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002956Z:5ac58eed-78fb-4854-8650-5e8b286c0c97" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-38c54a5879681d5f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "116d3067bf31ba332f41500ca1128bcd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:57 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ce8375a-91f6-45db-945e-3e2e8321904f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "1ce8375a-91f6-45db-945e-3e2e8321904f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002957Z:1ce8375a-91f6-45db-945e-3e2e8321904f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-4d54d34f49eab1e6-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e85fa220f6ce1184432219be5fea82f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:29:59 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42c3be58-567e-46bb-839c-a998cb9e726e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "42c3be58-567e-46bb-839c-a998cb9e726e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T002959Z:42c3be58-567e-46bb-839c-a998cb9e726e" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-2310bccebb407881-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2165d6565c507101044687cc9899fb9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:30:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28d8236c-3dc7-4dd3-be85-d211ca33bf43", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "28d8236c-3dc7-4dd3-be85-d211ca33bf43", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003003Z:28d8236c-3dc7-4dd3-be85-d211ca33bf43" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-c3dc256fed62c56d-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "22d9b78c403b715bac5ccd0fa5745a45", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:30:11 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e6d6057-2ab4-4fa0-a211-71e075317ae9", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "8e6d6057-2ab4-4fa0-a211-71e075317ae9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003011Z:8e6d6057-2ab4-4fa0-a211-71e075317ae9" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-cb68892710844219-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cbb65dbe6aacc47ca1ede4876fb779a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:30:27 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f19cb21-41ee-4e1a-b939-cda978936f67", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "1f19cb21-41ee-4e1a-b939-cda978936f67", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003027Z:1f19cb21-41ee-4e1a-b939-cda978936f67" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-39c2be0e68331539-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a7327b265f1015b67af475f48ef1cb90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:31:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac8f7fc3-fb15-4aa9-ae73-4b466c0a1806", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "ac8f7fc3-fb15-4aa9-ae73-4b466c0a1806", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003100Z:ac8f7fc3-fb15-4aa9-ae73-4b466c0a1806" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-d5888c12a18adcd8-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3a0d41eb2fe321f13a15804e5cd301f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:31:31 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "734e23ed-b4f7-4bd9-88a8-91ab469d0d59", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "734e23ed-b4f7-4bd9-88a8-91ab469d0d59", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003132Z:734e23ed-b4f7-4bd9-88a8-91ab469d0d59" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-57c61c9cab368f69-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2ae823e3b3415f35a7a151b7f58835af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75ba21c8-2862-47c1-a19f-49a7afd81777", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "75ba21c8-2862-47c1-a19f-49a7afd81777", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003204Z:75ba21c8-2862-47c1-a19f-49a7afd81777" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f8afd132-4ad6-4104-b184-d9321f352543?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-5d5a2794edf86cb8-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2d9b53213faaf7c68a116dfade68b8a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:35 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "850f8806-761a-4185-a814-357b8fdb912d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "850f8806-761a-4185-a814-357b8fdb912d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003236Z:850f8806-761a-4185-a814-357b8fdb912d" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-77d2638e80de87ff79e3540c551eba2c-b731bad114ae4a0c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6b1080f3a109384f0cae9241de3a2cb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "2927", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:35 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0db6cfd3-fcf0-4995-a467-dab5b4c116a3", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "0db6cfd3-fcf0-4995-a467-dab5b4c116a3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003236Z:0db6cfd3-fcf0-4995-a467-dab5b4c116a3" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849", - "name": "r-database-account-5849", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T00:32:14.6979951Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-5849.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-5849.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": true, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": { - "schemaType": "WellDefined" - }, - "instanceId": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "createMode": "Default", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-5849-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-5849-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-5849-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "r-database-account-5849-westcentralus", - "locationName": "West Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T00:32:14.6979951Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T00:32:14.6979951Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:32:14.6979951Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T00:32:14.6979951Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-9171f893f3035c8e5a0ccd57ae7109fb-3f17fbb70deb8a8e-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "082cd1e0d437a44a5df09f30463a803f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "454", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:32:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "841a345e-9043-412e-a3b7-b5e0f8d93aa6", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "841a345e-9043-412e-a3b7-b5e0f8d93aa6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003236Z:841a345e-9043-412e-a3b7-b5e0f8d93aa6" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", - "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "CosmosDB-Backup-Restore", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-00cea86763184881f31d505696b6aab4-a552e1616c9d66c3-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "75c4a9e8ca777fa6046320fbac84194f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "467699", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 00:32:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b455b37-ccf2-4e17-b001-023137622779", - "x-ms-original-request-ids": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "2b455b37-ccf2-4e17-b001-023137622779", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003241Z:2b455b37-ccf2-4e17-b001-023137622779" - }, - "ResponseBody": { - "value": [ - { - "name": "22c487b3-d5c7-45de-be94-38fecee66cd3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/22c487b3-d5c7-45de-be94-38fecee66cd3", - "properties": { - "accountName": "barprod-systemid-sw-1109027095", - "apiType": "Sql", - "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "debbeba6-2699-44df-a689-5e9a867f51e5", - "creationTime": "2022-12-13T19:12:36Z" - } - ] - } - }, - { - "name": "2b49ac91-ad60-4807-9b6b-4041645b4f5e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b49ac91-ad60-4807-9b6b-4041645b4f5e", - "properties": { - "accountName": "barprod-systemid-sw-1109027095-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5bd4a33-9470-4496-a2ba-6d31b52ff4b1", - "creationTime": "2022-12-13T19:33:35Z" - } - ] - } - }, - { - "name": "13e27035-3df0-42e7-8048-6d0cbd5c7f80", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/13e27035-3df0-42e7-8048-6d0cbd5c7f80", - "properties": { - "accountName": "barprod-systemid-sw-1305567950", - "apiType": "Sql", - "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "fc983ed2-abe6-4914-a686-46bcdc85a54e", - "creationTime": "2022-12-13T21:09:31Z" - } - ] - } - }, - { - "name": "a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", - "properties": { - "accountName": "barprod-systemid-sw-1305567950-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "2438a28c-af6b-4e7f-9984-6a644cf0e897", - "creationTime": "2022-12-13T21:30:58Z" - } - ] - } - }, - { - "name": "84e4a829-6f5a-4ca5-bdc5-86b650e38aea", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/84e4a829-6f5a-4ca5-bdc5-86b650e38aea", - "properties": { - "accountName": "vinh-restore-fail", - "apiType": "Sql", - "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f4eed423-2ade-4121-94a1-22c3aa3f7a17", - "creationTime": "2022-12-13T22:07:03Z" - } - ] - } - }, - { - "name": "d494b442-7138-4a38-8f78-b301967b497b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d494b442-7138-4a38-8f78-b301967b497b", - "properties": { - "accountName": "vinh-restore-fail2", - "apiType": "Sql", - "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c49dc5ba-6bdb-4470-b8b3-afa33fe3112a", - "creationTime": "2022-12-13T22:10:55Z" - } - ] - } - }, - { - "name": "9e46844f-6285-4408-b60f-9de3c6aab0cf", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e46844f-6285-4408-b60f-9de3c6aab0cf", - "properties": { - "accountName": "vinh-restore-not-fail3", - "apiType": "Sql", - "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "9131c392-b756-489b-aafd-0f9227b15fc6", - "creationTime": "2022-12-13T23:32:55Z" - } - ] - } - }, - { - "name": "49c3f2e6-d728-41f9-8dff-257140ec7aa1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/49c3f2e6-d728-41f9-8dff-257140ec7aa1", - "properties": { - "accountName": "barprod-systemid-sw-1525116479", - "apiType": "Sql", - "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6ab357f4-901f-4b4d-b01f-25fd52c525d7", - "creationTime": "2022-12-13T23:28:40Z" - } - ] - } - }, - { - "name": "24dd6ee0-d69d-4f3b-b14c-319245f75a1a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/24dd6ee0-d69d-4f3b-b14c-319245f75a1a", - "properties": { - "accountName": "barprod-systemid-sw-1526492563", - "apiType": "Sql", - "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d91ab187-9143-4584-9a21-e7ffab1a8b51", - "creationTime": "2022-12-13T23:30:15Z" - } - ] - } - }, - { - "name": "f6c79664-838d-45f6-82dc-58dd1ea6aa69", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f6c79664-838d-45f6-82dc-58dd1ea6aa69", - "properties": { - "accountName": "barprod-systemid-sw-1526492563-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "550716f8-9a42-4512-bd9f-d8a864df27c2", - "creationTime": "2022-12-13T23:51:46Z" - } - ] - } - }, - { - "name": "db48bc7b-8dae-4fcd-a131-b3220fac8b0a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db48bc7b-8dae-4fcd-a131-b3220fac8b0a", - "properties": { - "accountName": "barprod-systemid-sw-1525116479-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "a416d1a0-a506-4baa-b833-460653ff60c4", - "creationTime": "2022-12-13T23:54:20Z" - } - ] - } - }, - { - "name": "3c95a287-aaeb-464e-a79d-cad370f919b1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c95a287-aaeb-464e-a79d-cad370f919b1", - "properties": { - "accountName": "vinh-restore-fail-2identities", - "apiType": "Sql", - "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "5dc84958-10f0-4c44-b51d-b860e41c4801", - "creationTime": "2022-12-16T01:32:31Z" - } - ] - } - }, - { - "name": "2b128b5f-7348-49a7-99b2-4cf75919d54e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b128b5f-7348-49a7-99b2-4cf75919d54e", - "properties": { - "accountName": "cli-xrr-k6di52knuaghjx6ns", - "apiType": "Sql", - "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "69017173-ea84-4fab-a59e-dcda978e7641", - "creationTime": "2023-04-06T15:49:23Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "c24b16be-2f6b-441f-86cb-bab05c86c299", - "creationTime": "2023-04-06T15:51:35Z" - } - ] - } - }, - { - "name": "60c98996-836d-441d-84bf-dd71663bc121", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/60c98996-836d-441d-84bf-dd71663bc121", - "properties": { - "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", - "apiType": "Sql", - "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b0a87252-bf99-40cb-b5bc-9afcf6580e23", - "creationTime": "2023-04-06T17:07:39Z" - } - ] - } - }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, - { - "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "properties": { - "accountName": "r-database-account-5849", - "apiType": "Sql", - "creationTime": "2023-04-20T00:32:15Z", - "oldestRestorableTime": "2023-04-20T00:32:15Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", - "creationTime": "2023-04-20T00:32:16Z" - } - ] - } - }, - { - "name": "2217666b-a543-4788-adf9-f8059e864343", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2217666b-a543-4788-adf9-f8059e864343", - "properties": { - "accountName": "cli-xrr-jvikyutenetrnlpvv-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T23:38:55Z", - "deletionTime": "2023-04-05T23:40:47Z", - "oldestRestorableTime": "2023-03-29T23:40:47Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "299aef44-c8ef-4cc0-9e04-234195bc3daa", - "creationTime": "2023-04-05T23:38:55Z", - "deletionTime": "2023-04-05T23:40:47Z" - } - ] - } - }, - { - "name": "8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", - "properties": { - "accountName": "cli-xrr-jvikyutenetrnlpvv", - "apiType": "Sql", - "creationTime": "2023-04-05T22:22:58Z", - "deletionTime": "2023-04-05T23:40:48Z", - "oldestRestorableTime": "2023-03-29T23:40:48Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5bb2cfc-69d8-4117-aae6-985ddc57ecd4", - "creationTime": "2023-04-05T22:23:00Z", - "deletionTime": "2023-04-05T23:40:48Z" - } - ] - } - }, - { - "name": "18ad6f7b-4a4c-414a-af6e-c0c0794275a9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/18ad6f7b-4a4c-414a-af6e-c0c0794275a9", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T15:41:19Z", - "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b9fc8ff1-bb30-4f1d-962a-b9e7108a9b58", - "creationTime": "2023-04-06T15:45:43Z", - "deletionTime": "2023-04-06T16:51:10Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c666de0b-5116-4c8f-9273-e18afaa847ef", - "creationTime": "2023-04-06T15:41:19Z", - "deletionTime": "2023-04-06T16:51:10Z" - } - ] - } - }, - { - "name": "621ef049-57db-46e5-b21b-abb7d9fbc7d1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/621ef049-57db-46e5-b21b-abb7d9fbc7d1", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T17:50:09Z", - "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d9fe4287-0192-4d20-9c13-7d8240ff9b4e", - "creationTime": "2023-04-06T17:52:38Z", - "deletionTime": "2023-04-06T18:56:25Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d9b2f14a-b42e-47d2-94c5-9e4a669c2bd1", - "creationTime": "2023-04-06T17:50:10Z", - "deletionTime": "2023-04-06T18:56:25Z" - } - ] - } - }, - { - "name": "8107171d-0bae-4a08-9ac9-42f31d494443", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8107171d-0bae-4a08-9ac9-42f31d494443", - "properties": { - "accountName": "cli-xrr-g7yczvt2zofiguzec-restored", - "apiType": "Sql", - "creationTime": "2023-04-06T19:04:42Z", - "deletionTime": "2023-04-06T19:05:19Z", - "oldestRestorableTime": "2023-03-30T19:05:19Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b02de377-f83f-4e90-9533-f08d5e81a700", - "creationTime": "2023-04-06T19:04:42Z", - "deletionTime": "2023-04-06T19:05:19Z" - } - ] - } - }, - { - "name": "780cc0ea-0ba6-47d1-84da-ca1d24f3d411", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/780cc0ea-0ba6-47d1-84da-ca1d24f3d411", - "properties": { - "accountName": "cli-xrr-g7yczvt2zofiguzec", - "apiType": "Sql", - "creationTime": "2023-04-06T17:44:45Z", - "deletionTime": "2023-04-06T19:05:19Z", - "oldestRestorableTime": "2023-03-30T19:05:19Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "3718d4c7-c627-444e-8f6b-be2e444c55ed", - "creationTime": "2023-04-06T17:47:20Z", - "deletionTime": "2023-04-06T19:05:19Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "27e66009-ee24-4168-8c82-c65648eecb4d", - "creationTime": "2023-04-06T17:44:46Z", - "deletionTime": "2023-04-06T19:05:19Z" - } - ] - } - }, - { - "name": "3c050d72-850b-4a5c-b352-10100c9dbc9f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c050d72-850b-4a5c-b352-10100c9dbc9f", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T19:55:04Z", - "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "677324d5-f1fe-4862-b496-e76ae3028aac", - "creationTime": "2023-04-06T19:58:16Z", - "deletionTime": "2023-04-06T21:02:28Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "95bc63cb-8474-4d19-b075-01ac042cf578", - "creationTime": "2023-04-06T19:55:06Z", - "deletionTime": "2023-04-06T21:02:28Z" - } - ] - } - }, - { - "name": "eed95519-8c04-4871-a9a2-2a2894cb94df", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/eed95519-8c04-4871-a9a2-2a2894cb94df", - "properties": { - "accountName": "restored-ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-06T22:30:52Z", - "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "6d790f06-7de4-4cb4-9e08-83096f4b8578", - "creationTime": "2023-04-06T22:30:52Z", - "deletionTime": "2023-04-06T22:32:02Z" - } - ] - } - }, - { - "name": "fb22603e-7627-45ce-a52f-92cbb70ebd86", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fb22603e-7627-45ce-a52f-92cbb70ebd86", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:17Z", - "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "41b5569f-2256-4f98-9b6e-26c070557a53", - "creationTime": "2023-04-06T21:14:20Z", - "deletionTime": "2023-04-06T22:32:04Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d835a5bf-29c1-4c4f-bc76-fc0dca1ac730", - "creationTime": "2023-04-06T21:11:18Z", - "deletionTime": "2023-04-06T22:32:04Z" - } - ] - } - }, - { - "name": "92d85476-12b6-43c3-94dc-5e7b80acfc6f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/92d85476-12b6-43c3-94dc-5e7b80acfc6f", - "properties": { - "accountName": "amisitestpitracc1-restored1", - "apiType": "Sql", - "creationTime": "2023-04-07T05:15:13Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-31T16:42:28Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "548c7363-9c92-493b-aee5-fdcadf24d35a", - "creationTime": "2023-04-07T05:15:13Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "932dc036-7768-49c5-b84a-3f3d34c1e612", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/932dc036-7768-49c5-b84a-3f3d34c1e612", - "properties": { - "accountName": "new-acc", - "apiType": "Sql", - "creationTime": "2023-04-07T04:11:01Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-31T16:42:28Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6bd731dd-1700-464f-8899-bd368cc85aac", - "creationTime": "2023-04-07T04:11:01Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "9fbe0e1d-baac-4500-ae10-a216f9729ca6", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9fbe0e1d-baac-4500-ae10-a216f9729ca6", - "properties": { - "accountName": "amisitestpitracc1-restored1", - "apiType": "Sql", - "creationTime": "2023-04-07T18:52:04Z", - "deletionTime": "2023-04-07T19:03:48Z", - "oldestRestorableTime": "2023-03-31T19:03:48Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "992ce2d9-3bb2-4521-88e2-6da041fab90e", - "creationTime": "2023-04-07T18:52:04Z", - "deletionTime": "2023-04-07T19:03:48Z" - } - ] - } - }, - { - "name": "cc3cd261-363c-4bab-9ba7-cc5fb46602c0", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/cc3cd261-363c-4bab-9ba7-cc5fb46602c0", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T20:14:52Z", - "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d5ff53da-a80d-4a29-8a41-bb2265458254", - "creationTime": "2023-04-07T20:14:53Z", - "deletionTime": "2023-04-07T21:19:01Z" - } - ] - } - }, - { - "name": "09413a43-255a-4ddf-88c0-76edcec1c2de", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/09413a43-255a-4ddf-88c0-76edcec1c2de", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T21:36:53Z", - "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "a387f10f-908a-4c90-850a-9bbdd283b73c", - "creationTime": "2023-04-07T21:36:54Z", - "deletionTime": "2023-04-07T22:53:51Z" - } - ] - } - }, - { - "name": "758db8a5-60e2-449f-a604-e625601bb5f8", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/758db8a5-60e2-449f-a604-e625601bb5f8", - "properties": { - "accountName": "restored-ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T22:53:05Z", - "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b42f5986-3a73-4da1-9c76-c40ad176c27d", - "creationTime": "2023-04-07T22:53:05Z", - "deletionTime": "2023-04-07T22:53:51Z" - } - ] - } - }, - { - "name": "a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105-restored", - "apiType": "Sql", - "creationTime": "2023-04-10T15:47:08Z", - "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "8e488c7d-0087-4e18-bc96-9d237043a7fc", - "creationTime": "2023-04-10T15:47:08Z", - "deletionTime": "2023-04-10T15:47:59Z" - } - ] - } - }, - { - "name": "e707fcc6-0240-4633-966c-9ef1b4eec147", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e707fcc6-0240-4633-966c-9ef1b4eec147", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-10T14:28:30Z", - "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "88184430-bbae-4221-96e5-1354de1e5de2", - "creationTime": "2023-04-10T14:30:49Z", - "deletionTime": "2023-04-10T15:47:59Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "671fa58b-535f-4c1a-b0a3-f673e7bddbfb", - "creationTime": "2023-04-10T14:28:31Z", - "deletionTime": "2023-04-10T15:47:59Z" - } - ] - } - }, - { - "name": "038f848f-248e-4bae-9d05-8e153eae6852", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/038f848f-248e-4bae-9d05-8e153eae6852", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-10T17:43:02Z", - "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "5108b700-4b47-4609-bd62-4fa7fa0539c9", - "creationTime": "2023-04-10T17:43:03Z", - "deletionTime": "2023-04-10T18:59:57Z" - } - ] - } - }, - { - "name": "3347c551-f760-4ebe-8aeb-5b35070ac7f7", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3347c551-f760-4ebe-8aeb-5b35070ac7f7", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106-restored", - "apiType": "Sql", - "creationTime": "2023-04-10T18:59:04Z", - "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "cb2da128-5457-434e-a389-1b1b80b8f083", - "creationTime": "2023-04-10T18:59:04Z", - "deletionTime": "2023-04-10T18:59:58Z" - } - ] - } - }, - { - "name": "96da75d3-7481-447b-9604-492f6a4854fd", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/96da75d3-7481-447b-9604-492f6a4854fd", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T21:49:40Z", - "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "f4c62b36-0050-40e1-998f-7f66a0a2c43d", - "creationTime": "2023-04-14T21:49:40Z", - "deletionTime": "2023-04-14T21:51:26Z" - } - ] - } - }, - { - "name": "913dafbd-608a-4fc3-93ce-8f5ca6124be7", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/913dafbd-608a-4fc3-93ce-8f5ca6124be7", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-14T20:29:55Z", - "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "39d3dcc4-0ecf-49fe-a68b-d87891f01380", - "creationTime": "2023-04-14T20:32:48Z", - "deletionTime": "2023-04-14T21:51:27Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "bcac2557-d18a-406f-977d-c8a6374b411a", - "creationTime": "2023-04-14T20:29:56Z", - "deletionTime": "2023-04-14T21:51:27Z" - } - ] - } - }, - { - "name": "202a4dbe-7599-4b7e-b69d-7168f2837f3a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/202a4dbe-7599-4b7e-b69d-7168f2837f3a", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-14T22:00:54Z", - "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "77b1870a-f938-41fe-a3e4-a83bd87a80be", - "creationTime": "2023-04-14T22:00:55Z", - "deletionTime": "2023-04-14T23:18:25Z" - } - ] - } - }, - { - "name": "c4c969be-9110-4a37-8473-00163ab95ee3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c4c969be-9110-4a37-8473-00163ab95ee3", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T23:17:22Z", - "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "56d11020-be62-4ef2-b535-d75a4a3ad01d", - "creationTime": "2023-04-14T23:17:22Z", - "deletionTime": "2023-04-14T23:18:25Z" - } - ] - } - }, - { - "name": "7c1a5422-fef5-4863-a2a6-ce07680d98bb", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7c1a5422-fef5-4863-a2a6-ce07680d98bb", - "properties": { - "accountName": "amisitestpitracc1", - "apiType": "Sql", - "creationTime": "2023-03-31T07:03:37Z", - "deletionTime": "2023-04-15T05:55:20Z", - "oldestRestorableTime": "2023-04-08T05:55:20Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "961c371c-2aea-446a-aaf3-abbbcfd2d73e", - "creationTime": "2023-04-02T17:08:56Z", - "deletionTime": "2023-04-15T05:55:20Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1d43fc2f-c366-46ab-8e14-38841a7fdfc1", - "creationTime": "2023-03-31T07:03:38Z", - "deletionTime": "2023-04-15T05:55:20Z" - } - ] - } - }, - { - "name": "3b30043c-455c-486f-98fb-f4d705658916", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3b30043c-455c-486f-98fb-f4d705658916", - "properties": { - "accountName": "r-database-account-177", - "apiType": "Sql", - "creationTime": "2023-04-17T19:11:24Z", - "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3d497d7c-c0c1-4c87-9aac-2c64a401be46", - "creationTime": "2023-04-17T19:11:25Z", - "deletionTime": "2023-04-17T19:14:59Z" - } - ] - } - }, - { - "name": "3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", - "properties": { - "accountName": "r-database-account-5987", - "apiType": "Sql", - "creationTime": "2023-04-17T19:41:46Z", - "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "533f84f3-c315-473c-8427-a21e5666eb6a", - "creationTime": "2023-04-17T19:41:47Z", - "deletionTime": "2023-04-17T19:45:17Z" - } - ] - } - }, - { - "name": "d196e206-a656-4c8d-a68e-9812ce4f79bc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d196e206-a656-4c8d-a68e-9812ce4f79bc", - "properties": { - "accountName": "r-database-account-192", - "apiType": "Sql", - "creationTime": "2023-04-17T21:39:56Z", - "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "56ca1104-e63a-4a62-a989-d323f5054121", - "creationTime": "2023-04-17T21:39:56Z", - "deletionTime": "2023-04-17T21:43:27Z" - } - ] - } - }, - { - "name": "c0a3bbc1-fc95-40f3-80e9-806d25576bbc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c0a3bbc1-fc95-40f3-80e9-806d25576bbc", - "properties": { - "accountName": "r-database-account-5405", - "apiType": "Sql", - "creationTime": "2023-04-17T22:20:01Z", - "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "36e17308-f9d4-4164-bb08-3494bd3a4300", - "creationTime": "2023-04-17T22:20:02Z", - "deletionTime": "2023-04-17T22:21:35Z" - } - ] - } - }, - { - "name": "45618f6c-684d-44ca-a63f-35c48cb1f22c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/45618f6c-684d-44ca-a63f-35c48cb1f22c", - "properties": { - "accountName": "r-database-account-4655", - "apiType": "Sql", - "creationTime": "2023-04-17T22:44:28Z", - "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b38ac40d-982c-46b7-8543-8374985f0e7f", - "creationTime": "2023-04-17T22:44:28Z", - "deletionTime": "2023-04-17T22:51:35Z" - } - ] - } - }, - { - "name": "b7a602eb-c62c-4686-94de-3203389c0ca8", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b7a602eb-c62c-4686-94de-3203389c0ca8", - "properties": { - "accountName": "r-database-account-1012", - "apiType": "Sql", - "creationTime": "2023-04-17T23:20:58Z", - "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "cba81aa1-1ff7-4e1f-a41f-46929e08d5df", - "creationTime": "2023-04-17T23:20:59Z", - "deletionTime": "2023-04-17T23:22:34Z" - } - ] - } - }, - { - "name": "6e977886-5eb0-4960-8a20-66df95947300", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6e977886-5eb0-4960-8a20-66df95947300", - "properties": { - "accountName": "r-database-account-364", - "apiType": "Sql", - "creationTime": "2023-04-17T23:38:00Z", - "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "63e0bfd9-f384-4e7b-a046-5e9292075995", - "creationTime": "2023-04-17T23:38:01Z", - "deletionTime": "2023-04-17T23:54:37Z" - } - ] - } - }, - { - "name": "b08b9da7-4548-4a01-aed7-5b69236ab9eb", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b08b9da7-4548-4a01-aed7-5b69236ab9eb", - "properties": { - "accountName": "r-database-account-5281", - "apiType": "Sql", - "creationTime": "2023-04-17T23:57:24Z", - "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "4ac58158-102d-4284-b780-5d003a8615ba", - "creationTime": "2023-04-17T23:57:25Z", - "deletionTime": "2023-04-17T23:58:57Z" - } - ] - } - }, - { - "name": "9390e99e-9079-48ac-b5cd-5760496b20ae", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9390e99e-9079-48ac-b5cd-5760496b20ae", - "properties": { - "accountName": "r-database-account-525", - "apiType": "Sql", - "creationTime": "2023-04-18T00:12:13Z", - "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b77da411-6c07-48d0-9c5e-80111da2c689", - "creationTime": "2023-04-18T00:12:14Z", - "deletionTime": "2023-04-18T00:15:52Z" - } - ] - } - }, - { - "name": "396130a8-4ded-4e10-92ab-5a252e2609ca", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/396130a8-4ded-4e10-92ab-5a252e2609ca", - "properties": { - "accountName": "r-database-account-4899", - "apiType": "Sql", - "creationTime": "2023-04-18T00:34:02Z", - "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "fda5034d-bd49-4a8e-98eb-3962584fe36c", - "creationTime": "2023-04-18T00:34:03Z", - "deletionTime": "2023-04-18T00:37:41Z" - } - ] - } - }, - { - "name": "0b561650-220e-49b2-89e7-e02c797c5104", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b561650-220e-49b2-89e7-e02c797c5104", - "properties": { - "accountName": "r-database-account-2485", - "apiType": "Sql", - "creationTime": "2023-04-18T01:04:49Z", - "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c80c0753-1c3e-4d09-84de-aa3af341ebec", - "creationTime": "2023-04-18T01:04:49Z", - "deletionTime": "2023-04-18T01:08:23Z" - } - ] - } - }, - { - "name": "9884fa67-17cc-4ab1-9611-34567fba800c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9884fa67-17cc-4ab1-9611-34567fba800c", - "properties": { - "accountName": "r-database-account-6167", - "apiType": "Sql", - "creationTime": "2023-04-18T01:21:53Z", - "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c9d166ff-65cb-4027-8f4d-cd2b823e1351", - "creationTime": "2023-04-18T01:21:54Z", - "deletionTime": "2023-04-18T01:33:08Z" - } - ] - } - }, - { - "name": "b362127b-54f7-4fd5-a5d2-0d23e3f0036d", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b362127b-54f7-4fd5-a5d2-0d23e3f0036d", - "properties": { - "accountName": "r-database-account-7767", - "apiType": "Sql", - "creationTime": "2023-04-18T02:09:18Z", - "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "451df3a0-f1dd-49e9-a51f-54b36e59413c", - "creationTime": "2023-04-18T02:09:19Z", - "deletionTime": "2023-04-18T03:26:25Z" - } - ] - } - }, - { - "name": "3f551a34-02ea-40f3-9d4a-05fb5cffc82b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3f551a34-02ea-40f3-9d4a-05fb5cffc82b", - "properties": { - "accountName": "restoredaccount-2452", - "apiType": "Sql", - "creationTime": "2023-04-18T03:25:35Z", - "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "491aee71-a14e-49f6-9199-48ab60993d85", - "creationTime": "2023-04-18T03:25:35Z", - "deletionTime": "2023-04-18T03:36:07Z" - } - ] - } - }, - { - "name": "baa31ca8-6687-4ad2-81c8-698ae261d580", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/baa31ca8-6687-4ad2-81c8-698ae261d580", - "properties": { - "accountName": "r-database-account-6395", - "apiType": "Sql", - "creationTime": "2023-04-18T13:32:30Z", - "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "91294dbc-b175-4134-8083-e6bca7c34ebb", - "creationTime": "2023-04-18T13:32:31Z", - "deletionTime": "2023-04-18T13:33:25Z" - } - ] - } - }, - { - "name": "51a901f8-bd15-4e0f-bf4e-94fd88fecf37", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/51a901f8-bd15-4e0f-bf4e-94fd88fecf37", - "properties": { - "accountName": "r-database-account-8228", - "apiType": "Sql", - "creationTime": "2023-04-17T22:55:26Z", - "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1cbf7297-7176-4542-9fa4-49d7e5e91bfa", - "creationTime": "2023-04-17T22:55:27Z", - "deletionTime": "2023-04-18T14:27:44Z" - } - ] - } - }, - { - "name": "57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", - "properties": { - "accountName": "r-database-account-9915", - "apiType": "Sql", - "creationTime": "2023-04-18T16:11:57Z", - "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b8ffc20c-97b8-465d-bdd3-60552f5a057c", - "creationTime": "2023-04-18T16:11:58Z", - "deletionTime": "2023-04-18T16:12:45Z" - } - ] - } - }, - { - "name": "7b3b3638-2bbd-47da-8416-8aca4ecc6741", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7b3b3638-2bbd-47da-8416-8aca4ecc6741", - "properties": { - "accountName": "r-database-account-7194", - "apiType": "Sql", - "creationTime": "2023-04-18T16:27:03Z", - "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f50c51e3-0925-4b0d-b12a-49116bd4c79f", - "creationTime": "2023-04-18T16:27:05Z", - "deletionTime": "2023-04-18T17:46:27Z" - } - ] - } - }, - { - "name": "81614a8b-b1e1-44a3-a223-2f2bdb60a73a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81614a8b-b1e1-44a3-a223-2f2bdb60a73a", - "properties": { - "accountName": "restoredaccount-9479", - "apiType": "Sql", - "creationTime": "2023-04-18T17:45:32Z", - "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "3edd60a8-0eb0-4d85-b25b-90c44c85b27f", - "creationTime": "2023-04-18T17:45:32Z", - "deletionTime": "2023-04-18T17:57:15Z" - } - ] - } - }, - { - "name": "a618d01f-1ae8-44b2-90d9-0e139e7c41ff", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a618d01f-1ae8-44b2-90d9-0e139e7c41ff", - "properties": { - "accountName": "r-database-account-3726", - "apiType": "Sql", - "creationTime": "2023-04-18T18:09:59Z", - "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "0371b9da-8df6-4189-9e14-250f3be44384", - "creationTime": "2023-04-18T18:10:00Z", - "deletionTime": "2023-04-18T18:10:51Z" - } - ] - } - }, - { - "name": "fedcb6fb-2428-4bd1-8afa-faebdef8a10f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fedcb6fb-2428-4bd1-8afa-faebdef8a10f", - "properties": { - "accountName": "r-database-account-1774", - "apiType": "Sql", - "creationTime": "2023-04-18T19:06:06Z", - "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ac9a99bf-4f6b-479e-80bf-7b16a84ac481", - "creationTime": "2023-04-18T19:06:07Z", - "deletionTime": "2023-04-18T20:23:01Z" - } - ] - } - }, - { - "name": "edc97856-e68e-4881-8f7c-7939b9bd2678", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/edc97856-e68e-4881-8f7c-7939b9bd2678", - "properties": { - "accountName": "restoredaccount-4128", - "apiType": "Sql", - "creationTime": "2023-04-18T20:22:32Z", - "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "f5cf519e-fb56-4c39-963c-615683e9d6a0", - "creationTime": "2023-04-18T20:22:32Z", - "deletionTime": "2023-04-18T20:33:48Z" - } - ] - } - }, - { - "name": "34394e29-5e17-4da2-a734-ba74301275a5", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/34394e29-5e17-4da2-a734-ba74301275a5", - "properties": { - "accountName": "r-database-account-6660", - "apiType": "Sql", - "creationTime": "2023-04-18T20:47:01Z", - "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "28e95726-a165-4f67-a7e1-c416b1a9348f", - "creationTime": "2023-04-18T20:47:02Z", - "deletionTime": "2023-04-18T20:47:57Z" - } - ] - } - }, - { - "name": "ace1682c-5308-4c5d-a9db-7ff549629e40", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ace1682c-5308-4c5d-a9db-7ff549629e40", - "properties": { - "accountName": "r-database-account-9177", - "apiType": "Sql", - "creationTime": "2023-04-18T22:42:05Z", - "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "accc8467-dc2a-4143-b608-9c2344bb1e2e", - "creationTime": "2023-04-18T22:42:06Z", - "deletionTime": "2023-04-18T22:42:43Z" - } - ] - } - }, - { - "name": "4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", - "properties": { - "accountName": "r-database-account-2021", - "apiType": "Sql", - "creationTime": "2023-04-18T23:07:37Z", - "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "16dfa240-459b-4603-85b8-a396991a5e97", - "creationTime": "2023-04-18T23:07:38Z", - "deletionTime": "2023-04-18T23:08:08Z" - } - ] - } - }, - { - "name": "f8009a8a-a683-4969-a990-03f2fbc2c357", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f8009a8a-a683-4969-a990-03f2fbc2c357", - "properties": { - "accountName": "r-database-account-8744", - "apiType": "Sql", - "creationTime": "2023-04-19T03:02:08Z", - "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "17fd7f68-0b30-4914-ba38-df23f7fd370f", - "creationTime": "2023-04-19T03:02:09Z", - "deletionTime": "2023-04-19T04:19:02Z" - } - ] - } - }, - { - "name": "133f8fa2-4579-4865-a24c-025431c27770", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/133f8fa2-4579-4865-a24c-025431c27770", - "properties": { - "accountName": "restoredaccount-3290", - "apiType": "Sql", - "creationTime": "2023-04-19T04:18:33Z", - "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "8f15ca6f-59e6-4bc4-8d12-e34438839844", - "creationTime": "2023-04-19T04:18:33Z", - "deletionTime": "2023-04-19T04:29:51Z" - } - ] - } - }, - { - "name": "363500e0-8574-42d3-bcb0-78b9930907ed", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/363500e0-8574-42d3-bcb0-78b9930907ed", - "properties": { - "accountName": "r-database-account-9591", - "apiType": "Sql", - "creationTime": "2023-04-19T04:42:38Z", - "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "7d495937-f573-4895-a5a2-f7a57e189e0a", - "creationTime": "2023-04-19T04:42:39Z", - "deletionTime": "2023-04-19T04:43:26Z" - } - ] - } - }, - { - "name": "539f95cf-af16-4c95-8ba6-3d96971c755e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/539f95cf-af16-4c95-8ba6-3d96971c755e", - "properties": { - "accountName": "r-database-account-8090", - "apiType": "Sql", - "creationTime": "2023-04-19T05:41:29Z", - "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ffff6e0c-bb13-4441-9bfb-4eab39131773", - "creationTime": "2023-04-19T05:41:30Z", - "deletionTime": "2023-04-19T06:58:53Z" - } - ] - } - }, - { - "name": "48bd7479-e12e-42d5-9693-f0795eca3d89", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/48bd7479-e12e-42d5-9693-f0795eca3d89", - "properties": { - "accountName": "restoredaccount-6404", - "apiType": "Sql", - "creationTime": "2023-04-19T06:58:18Z", - "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "fa2c002a-9218-4777-a5cd-1880bde715ea", - "creationTime": "2023-04-19T06:58:18Z", - "deletionTime": "2023-04-19T07:09:02Z" - } - ] - } - }, - { - "name": "075a5d48-f9d7-4306-b262-03b3737ba475", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/075a5d48-f9d7-4306-b262-03b3737ba475", - "properties": { - "accountName": "r-database-account-4017", - "apiType": "Sql", - "creationTime": "2023-04-19T07:21:28Z", - "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b14d2cf8-83ac-45ff-bc4e-1f199f848240", - "creationTime": "2023-04-19T07:21:29Z", - "deletionTime": "2023-04-19T07:22:09Z" - } - ] - } - }, - { - "name": "2e6d7920-9c30-41cf-ab15-20d2f5c82abf", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2e6d7920-9c30-41cf-ab15-20d2f5c82abf", - "properties": { - "accountName": "r-database-account-2005", - "apiType": "Sql", - "creationTime": "2023-04-19T17:40:33Z", - "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5d1cf26-ce18-43b2-9533-62904f9851a1", - "creationTime": "2023-04-19T17:40:34Z", - "deletionTime": "2023-04-19T18:57:32Z" - } - ] - } - }, - { - "name": "4ca1a638-30f9-412c-ba0e-e032a5b27651", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4ca1a638-30f9-412c-ba0e-e032a5b27651", - "properties": { - "accountName": "restoredaccount-7552", - "apiType": "Sql", - "creationTime": "2023-04-19T18:56:48Z", - "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "294a8817-cd2a-41a8-90a9-581dde2404b3", - "creationTime": "2023-04-19T18:56:48Z", - "deletionTime": "2023-04-19T19:08:15Z" - } - ] - } - }, - { - "name": "707bd438-bc4a-4206-bf34-42de3238ba79", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/707bd438-bc4a-4206-bf34-42de3238ba79", - "properties": { - "accountName": "r-database-account-646", - "apiType": "Sql", - "creationTime": "2023-04-19T19:21:04Z", - "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6591ef21-988f-47ed-8b0c-1545a5528b09", - "creationTime": "2023-04-19T19:21:05Z", - "deletionTime": "2023-04-19T19:21:53Z" - } - ] - } - }, - { - "name": "5c92ee4f-9697-48ae-815d-9b14ae598781", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c92ee4f-9697-48ae-815d-9b14ae598781", - "properties": { - "accountName": "r-database-account-9891", - "apiType": "Sql", - "creationTime": "2023-04-19T20:56:22Z", - "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "53a6a001-bc9f-4171-9928-fcc9a77577e5", - "creationTime": "2023-04-19T20:56:23Z", - "deletionTime": "2023-04-19T22:13:46Z" - } - ] - } - }, - { - "name": "8c8b9024-40be-4f92-a466-8370faf4eacd", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8c8b9024-40be-4f92-a466-8370faf4eacd", - "properties": { - "accountName": "restoredaccount-8231", - "apiType": "Sql", - "creationTime": "2023-04-19T22:12:50Z", - "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "6340bdaf-07bb-45b1-b411-7921b7a52e97", - "creationTime": "2023-04-19T22:12:50Z", - "deletionTime": "2023-04-19T22:23:58Z" - } - ] - } - }, - { - "name": "5c6333bd-6bc8-4e1f-8672-9e386c60eef1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c6333bd-6bc8-4e1f-8672-9e386c60eef1", - "properties": { - "accountName": "r-database-account-26", - "apiType": "Sql", - "creationTime": "2023-04-19T22:36:04Z", - "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "e9a47ca5-930f-4aa6-ac17-36a7cbe8cba8", - "creationTime": "2023-04-19T22:36:04Z", - "deletionTime": "2023-04-19T22:37:08Z" - } - ] - } - }, - { - "name": "9519c744-78d1-42ce-84bb-777e7c3cb046", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9519c744-78d1-42ce-84bb-777e7c3cb046", - "properties": { - "accountName": "r-database-account-8825", - "apiType": "Sql", - "creationTime": "2023-04-19T23:39:20Z", - "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f435cc2e-e45b-4157-8e44-37f29671a9c0", - "creationTime": "2023-04-19T23:39:21Z", - "deletionTime": "2023-04-19T23:47:25Z" - } - ] - } - }, - { - "name": "9e112cc2-439e-4cc6-aa49-7fb930652213", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e112cc2-439e-4cc6-aa49-7fb930652213", - "properties": { - "accountName": "r-database-account-9118", - "apiType": "Sql", - "creationTime": "2023-04-19T20:20:11Z", - "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d7145521-4702-4ca4-a561-a25cc303c858", - "creationTime": "2023-04-19T20:20:12Z", - "deletionTime": "2023-04-19T23:48:12Z" - } - ] - } - }, - { - "name": "789de828-aa5f-47fb-8313-a13a25376c97", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/789de828-aa5f-47fb-8313-a13a25376c97", - "properties": { - "accountName": "r-database-account-904", - "apiType": "Sql", - "creationTime": "2023-04-17T22:35:24Z", - "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "765fa936-f0ff-4ded-8e4a-19d48f425802", - "creationTime": "2023-04-17T22:35:25Z", - "deletionTime": "2023-04-19T23:48:20Z" - } - ] - } - }, - { - "name": "7bfa7165-82b3-40d0-bbb5-4b71c77a620c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7bfa7165-82b3-40d0-bbb5-4b71c77a620c", - "properties": { - "accountName": "r-database-account-8401", - "apiType": "Sql", - "creationTime": "2023-04-19T02:38:50Z", - "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3d83dafe-7b63-4dc2-a490-57664ae4913a", - "creationTime": "2023-04-19T02:38:51Z", - "deletionTime": "2023-04-19T23:49:12Z" - } - ] - } - }, - { - "name": "4e974916-da87-4016-bbe3-0618f3aecf2c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4e974916-da87-4016-bbe3-0618f3aecf2c", - "properties": { - "accountName": "r-database-account-6679", - "apiType": "Sql", - "creationTime": "2023-04-17T22:29:22Z", - "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ebb1e8c4-224f-47ea-b7e1-a09f1aa3a132", - "creationTime": "2023-04-17T22:29:23Z", - "deletionTime": "2023-04-19T23:53:08Z" - } - ] - } - }, - { - "name": "d256cb21-a1a9-42a0-81db-13f0a6c1137e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d256cb21-a1a9-42a0-81db-13f0a6c1137e", - "properties": { - "accountName": "r-database-account-6099", - "apiType": "Sql", - "creationTime": "2023-04-18T16:25:48Z", - "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "2cf7c4ff-1b46-433d-affd-af97ad9aec94", - "creationTime": "2023-04-18T16:25:49Z", - "deletionTime": "2023-04-19T23:53:11Z" - } - ] - } - }, - { - "name": "9b3db21c-08d7-4198-bc30-4cc6808f495b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9b3db21c-08d7-4198-bc30-4cc6808f495b", - "properties": { - "accountName": "r-database-account-5433", - "apiType": "Sql", - "creationTime": "2023-04-17T22:54:36Z", - "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f72b5e7f-5e80-4c3e-9b0b-e8fa06258f58", - "creationTime": "2023-04-17T22:54:37Z", - "deletionTime": "2023-04-19T23:53:30Z" - } - ] - } - }, - { - "name": "030969ae-8f77-4a8c-a143-3ea7918a6a15", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/030969ae-8f77-4a8c-a143-3ea7918a6a15", - "properties": { - "accountName": "r-database-account-4785", - "apiType": "Sql", - "creationTime": "2023-04-19T23:51:43Z", - "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1dcb01a3-a653-44fc-9622-575fe1d69e1e", - "creationTime": "2023-04-19T23:51:44Z", - "deletionTime": "2023-04-19T23:53:36Z" - } - ] - } - }, - { - "name": "f901e9d9-57d4-4939-ab5a-853d33125da9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f901e9d9-57d4-4939-ab5a-853d33125da9", - "properties": { - "accountName": "r-database-account-4144", - "apiType": "Sql", - "creationTime": "2023-04-17T22:38:31Z", - "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ef92e1be-ac4e-4aaa-9525-ba1966156f15", - "creationTime": "2023-04-17T22:38:32Z", - "deletionTime": "2023-04-19T23:53:44Z" - } - ] - } - }, - { - "name": "e2c2398c-3aa1-4d04-84da-64bb557292f3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e2c2398c-3aa1-4d04-84da-64bb557292f3", - "properties": { - "accountName": "r-database-account-2826", - "apiType": "Sql", - "creationTime": "2023-04-19T19:54:34Z", - "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c03d8e05-59e3-420e-a9be-fba97b9d05bf", - "creationTime": "2023-04-19T19:54:35Z", - "deletionTime": "2023-04-19T23:53:47Z" - } - ] - } - }, - { - "name": "33c24168-b5c2-47d4-9762-d577d358c06a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/33c24168-b5c2-47d4-9762-d577d358c06a", - "properties": { - "accountName": "r-database-account-168", - "apiType": "Sql", - "creationTime": "2023-04-19T22:47:58Z", - "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "047a0df3-b96b-4dfe-acf1-88b2de702c89", - "creationTime": "2023-04-19T22:47:59Z", - "deletionTime": "2023-04-19T23:54:08Z" - } - ] - } - }, - { - "name": "9f83a8dd-4124-4fde-8ae0-88721048ec59", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9f83a8dd-4124-4fde-8ae0-88721048ec59", - "properties": { - "accountName": "r-database-account-1528", - "apiType": "Sql", - "creationTime": "2023-04-17T21:38:01Z", - "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b3d11030-af2a-4a09-9290-79c78ece3c5a", - "creationTime": "2023-04-17T21:38:02Z", - "deletionTime": "2023-04-19T23:54:11Z" - } - ] - } - }, - { - "name": "d88e6a3c-687d-4990-a516-da739070bf81", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", - "properties": { - "accountName": "kal-continuous7", - "apiType": "Sql", - "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", - "creationTime": "2022-06-07T20:09:39Z" - } - ] - } - }, - { - "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "properties": { - "accountName": "kal-continuous7-restored1", - "apiType": "Sql", - "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", - "creationTime": "2022-06-10T19:23:44Z" - } - ] - } - }, - { - "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", - "properties": { - "accountName": "kal-continuous7-demorestore", - "apiType": "Sql", - "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", - "creationTime": "2022-06-10T21:20:46Z" - } - ] - } - }, - { - "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "properties": { - "accountName": "test-billing-continuous30", - "apiType": "Sql", - "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", - "creationTime": "2022-07-28T21:54:21Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", - "creationTime": "2022-08-31T21:09:14Z" - }, - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", - "creationTime": "2022-08-31T22:24:21Z" - } - ] - } - }, - { - "name": "e84733a9-ee18-456c-b12b-1d37e542608b", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", - "properties": { - "accountName": "new-cosmsosdb-account", - "apiType": "Sql", - "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", - "creationTime": "2022-08-31T20:34:40Z" - } - ] - } - }, - { - "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", - "properties": { - "accountName": "amisitestpitracc", - "apiType": "Sql", - "creationTime": "2023-03-29T04:22:22Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", - "creationTime": "2023-03-29T04:22:23Z", - "deletionTime": "2023-03-30T19:57:43Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", - "creationTime": "2023-03-29T07:29:18Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "2414c009-8022-442c-9ab6-81c276eb2a99", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", - "properties": { - "accountName": "vinh-periodic", - "apiType": "Sql", - "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", - "creationTime": "2022-06-06T19:53:54Z" - } - ] - } - }, - { - "name": "5716280d-381e-4045-b936-d0edbfc7317b", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", - "properties": { - "accountName": "databaseaccount9284", - "apiType": "Sql", - "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", - "creationTime": "2022-09-20T05:50:06Z" - } - ] - } - }, - { - "name": "34a9cb27-53a5-4143-9af7-810285110075", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", - "properties": { - "accountName": "databaseaccount6234", - "apiType": "Sql", - "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", - "creationTime": "2022-09-20T09:04:23Z" - } - ] - } - }, - { - "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "properties": { - "accountName": "databaseaccount8251", - "apiType": "Sql", - "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", - "creationTime": "2022-09-20T16:29:45Z" - } - ] - } - }, - { - "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", - "properties": { - "accountName": "sql-portal-test", - "apiType": "Sql", - "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", - "creationTime": "2023-03-08T18:47:23Z" - } - ] - } - }, - { - "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "properties": { - "accountName": "dsapaliga-xrr-cu", - "apiType": "Sql", - "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", - "creationTime": "2023-03-30T15:10:47Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", - "creationTime": "2023-03-30T15:13:00Z" - } - ] - } - }, - { - "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", - "properties": { - "accountName": "databaseaccount2058", - "apiType": "MongoDB", - "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", - "creationTime": "2022-04-14T02:10:49Z" - } - ] - } - }, - { - "name": "fce807d5-4358-4ea1-8130-0439181f6be0", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", - "properties": { - "accountName": "vinh-demo-periodic", - "apiType": "Sql", - "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", - "creationTime": "2022-05-26T04:53:41Z" - } - ] - } - }, - { - "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "properties": { - "accountName": "vinh-demo-continous30", - "apiType": "Sql", - "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", - "creationTime": "2022-05-26T03:29:42Z" - } - ] - } - }, - { - "name": "9177692a-0db9-4c0c-af1d-af0310418b43", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", - "properties": { - "accountName": "vinh-demo-continous7", - "apiType": "Sql", - "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", - "creationTime": "2022-05-26T04:14:50Z" - } - ] - } - }, - { - "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", - "properties": { - "accountName": "vinh-demo-periodic2", - "apiType": "Sql", - "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", - "creationTime": "2022-05-26T18:12:07Z" - } - ] - } - }, - { - "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "properties": { - "accountName": "vinh-demo-continous7-2", - "apiType": "Sql", - "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", - "creationTime": "2022-05-26T18:05:53Z" - } - ] - } - }, - { - "name": "9484f425-a747-4e73-b8c4-04983e984315", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", - "properties": { - "accountName": "clip2dbd2gollbc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z" - } - ] - } - }, - { - "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", - "properties": { - "accountName": "cli3fpzmlckewgo", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:36:38Z", - "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", - "creationTime": "2023-04-07T19:36:40Z", - "deletionTime": "2023-04-07T19:56:52Z" - } - ] - } - }, - { - "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", - "properties": { - "accountName": "cliftacbeowmtnb", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z" - } - ] - } - }, - { - "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "properties": { - "accountName": "clipofi2jwwbtu4", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:22:17Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", - "creationTime": "2023-04-07T21:22:18Z", - "deletionTime": "2023-04-07T21:42:59Z" - } - ] - } - }, - { - "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", - "properties": { - "accountName": "cliwq55chmmvzvu", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T13:41:40Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", - "creationTime": "2023-04-14T13:41:42Z", - "deletionTime": "2023-04-14T14:02:52Z" - } - ] - } - }, - { - "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "properties": { - "accountName": "clixsitnvbfssqd", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z" - } - ] - } - }, - { - "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", - "properties": { - "accountName": "clinwxgmq26mrzy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T14:50:51Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", - "creationTime": "2023-04-14T14:50:52Z", - "deletionTime": "2023-04-14T15:10:01Z" - } - ] - } - }, - { - "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", - "properties": { - "accountName": "clibaor2akp53uy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z" - } - ] - } - }, - { - "name": "40dbd153-3d36-42b7-8649-48e6307849f9", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", - "properties": { - "accountName": "cliiumnemwk33v5", - "apiType": "Sql", - "creationTime": "2023-04-14T16:48:09Z", - "oldestRestorableTime": "2023-04-14T16:48:09Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", - "creationTime": "2023-04-14T16:48:10Z" - } - ] - } - }, - { - "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "properties": { - "accountName": "cli-continuous30-cylyo7wg-restored", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z" - } - ] - } - }, - { - "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", - "properties": { - "accountName": "cli-continuous30-cylyo7wg", - "apiType": "Sql", - "creationTime": "2023-03-24T15:42:44Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", - "creationTime": "2023-03-24T15:42:45Z", - "deletionTime": "2023-03-24T16:01:53Z" - } - ] - } - }, - { - "name": "8c9286c5-c880-449c-9030-327de00e36b6", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", - "properties": { - "accountName": "cli-continuous30-wuye4s75", - "apiType": "Sql", - "creationTime": "2023-03-24T16:04:54Z", - "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", - "creationTime": "2023-03-24T16:04:55Z", - "deletionTime": "2023-03-24T16:12:17Z" - } - ] - } - }, - { - "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "properties": { - "accountName": "cli-continuous30-qpysbnmc", - "apiType": "Sql", - "creationTime": "2023-03-24T16:45:16Z", - "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", - "creationTime": "2023-03-24T16:45:17Z", - "deletionTime": "2023-03-24T16:52:22Z" - } - ] - } - }, - { - "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "properties": { - "accountName": "cli-continuous30-4uv42csa", - "apiType": "Sql", - "creationTime": "2023-03-24T17:01:08Z", - "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", - "creationTime": "2023-03-24T17:01:09Z", - "deletionTime": "2023-03-24T17:07:36Z" - } - ] - } - }, - { - "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "properties": { - "accountName": "cli-continuous30-e6tglvvh", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:31Z", - "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", - "creationTime": "2023-03-24T19:18:32Z", - "deletionTime": "2023-03-24T19:24:33Z" - } - ] - } - }, - { - "name": "bbc21107-730f-460e-a806-f73643e95a9b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", - "properties": { - "accountName": "cli-continuous30-mgbfodqo", - "apiType": "Sql", - "creationTime": "2023-03-29T20:28:56Z", - "deletionTime": "2023-03-29T20:31:58Z", - "oldestRestorableTime": "2023-03-22T20:31:58Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", - "creationTime": "2023-03-29T20:28:57Z", - "deletionTime": "2023-03-29T20:31:58Z" - } - ] - } - }, - { - "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "properties": { - "accountName": "cli-continuous30-pqnqtvrw", - "apiType": "Sql", - "creationTime": "2023-03-29T20:35:21Z", - "deletionTime": "2023-03-29T20:38:56Z", - "oldestRestorableTime": "2023-03-22T20:38:56Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", - "creationTime": "2023-03-29T20:37:50Z", - "deletionTime": "2023-03-29T20:38:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", - "creationTime": "2023-03-29T20:35:22Z", - "deletionTime": "2023-03-29T20:38:56Z" - } - ] - } - }, - { - "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", - "properties": { - "accountName": "cli-continuous30-nbcgdudl", - "apiType": "Sql", - "creationTime": "2023-03-29T20:49:15Z", - "deletionTime": "2023-03-29T20:52:54Z", - "oldestRestorableTime": "2023-03-22T20:52:54Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", - "creationTime": "2023-03-29T20:51:44Z", - "deletionTime": "2023-03-29T20:52:54Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", - "creationTime": "2023-03-29T20:49:16Z", - "deletionTime": "2023-03-29T20:52:54Z" - } - ] - } - }, - { - "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "properties": { - "accountName": "cli-continuous30-fvguiiqd", - "apiType": "Sql", - "creationTime": "2023-03-29T20:58:03Z", - "deletionTime": "2023-03-29T21:26:03Z", - "oldestRestorableTime": "2023-03-22T21:26:03Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", - "creationTime": "2023-03-29T21:00:45Z", - "deletionTime": "2023-03-29T21:26:03Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", - "creationTime": "2023-03-29T20:58:04Z", - "deletionTime": "2023-03-29T21:26:03Z" - } - ] - } - }, - { - "name": "648c8b93-36da-440c-801c-19d18e3b3f21", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", - "properties": { - "accountName": "cli-continuous30-of2nmx5u", - "apiType": "Sql", - "creationTime": "2023-03-29T22:12:53Z", - "deletionTime": "2023-03-29T22:16:03Z", - "oldestRestorableTime": "2023-03-22T22:16:03Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", - "creationTime": "2023-03-29T22:12:54Z", - "deletionTime": "2023-03-29T22:16:03Z" - } - ] - } - }, - { - "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "properties": { - "accountName": "cli-continuous30-guwsy4ak", - "apiType": "Sql", - "creationTime": "2023-03-29T22:43:18Z", - "deletionTime": "2023-03-29T22:48:52Z", - "oldestRestorableTime": "2023-03-22T22:48:52Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", - "creationTime": "2023-03-29T22:45:41Z", - "deletionTime": "2023-03-29T22:48:52Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", - "creationTime": "2023-03-29T22:43:19Z", - "deletionTime": "2023-03-29T22:48:52Z" - } - ] - } - }, - { - "name": "751f535c-90ad-422c-8791-d85058c83f19", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", - "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z" - } - ] - } - }, - { - "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", - "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h", - "apiType": "Sql", - "creationTime": "2023-04-05T22:25:06Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", - "creationTime": "2023-04-05T22:25:07Z", - "deletionTime": "2023-04-05T22:47:27Z" - } - ] - } - }, - { - "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", - "properties": { - "accountName": "cli-systemid-pml7r44tlwdv-restored", - "apiType": "Sql", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z" - } - ] - } - }, - { - "name": "9962f6da-506f-408b-927f-4eb07a12c382", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", - "properties": { - "accountName": "cli-systemid-pml7r44tlwdv", - "apiType": "Sql", - "creationTime": "2023-04-07T15:43:38Z", - "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", - "creationTime": "2023-04-07T15:43:39Z", - "deletionTime": "2023-04-07T16:06:55Z" - } - ] - } - }, - { - "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", - "properties": { - "accountName": "cli-continuous30-5xp42uvg", - "apiType": "Sql", - "creationTime": "2023-04-07T16:35:15Z", - "deletionTime": "2023-04-07T16:38:01Z", - "oldestRestorableTime": "2023-03-31T16:38:01Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", - "creationTime": "2023-04-07T16:35:16Z", - "deletionTime": "2023-04-07T16:38:01Z" - } - ] - } - }, - { - "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", - "properties": { - "accountName": "cli-continuous7-kadtogihc", - "apiType": "Sql", - "creationTime": "2023-04-07T16:56:03Z", - "deletionTime": "2023-04-07T16:57:45Z", - "oldestRestorableTime": "2023-03-31T16:56:56Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", - "creationTime": "2023-04-07T16:56:04Z", - "deletionTime": "2023-04-07T16:57:45Z" - } - ] - } - }, - { - "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", - "properties": { - "accountName": "cli-continuous7-ghrp5g2r3", - "apiType": "Sql", - "creationTime": "2023-04-07T17:01:55Z", - "deletionTime": "2023-04-07T17:04:46Z", - "oldestRestorableTime": "2023-03-31T17:04:46Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", - "creationTime": "2023-04-07T17:01:56Z", - "deletionTime": "2023-04-07T17:04:46Z" - } - ] - } - }, - { - "name": "53c25e9f-44ca-4509-adcd-23802185cba8", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", - "properties": { - "accountName": "cli-periodic-d6qxquiv72md", - "apiType": "Sql", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z", - "oldestRestorableTime": "2023-04-07T17:18:47Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z" - } - ] - } - }, - { - "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", - "properties": { - "accountName": "cliufubmalcsuyb", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z" - } - ] - } - }, - { - "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", - "properties": { - "accountName": "clitfyptqa45syc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:33:20Z", - "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", - "creationTime": "2023-04-07T17:33:21Z", - "deletionTime": "2023-04-07T17:52:53Z" - } - ] - } - }, - { - "name": "329d5785-2f04-451c-a748-f79d0f562ff9", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", - "properties": { - "accountName": "cliahilffivwqwi", - "apiType": "MongoDB", - "creationTime": "2023-04-07T19:26:23Z", - "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", - "creationTime": "2023-04-07T19:26:24Z", - "deletionTime": "2023-04-07T19:31:01Z" - } - ] - } - }, - { - "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", - "properties": { - "accountName": "cli5nu6pl77n5ia", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:12:03Z", - "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", - "creationTime": "2023-04-07T20:12:04Z", - "deletionTime": "2023-04-07T20:16:06Z" - } - ] - } - }, - { - "name": "ced5610b-4422-469f-a9ca-f83235fea285", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", - "properties": { - "accountName": "clisrkiadnudmcc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:25:32Z", - "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", - "creationTime": "2023-04-07T20:25:33Z", - "deletionTime": "2023-04-07T20:29:54Z" - } - ] - } - }, - { - "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", - "properties": { - "accountName": "cliypixaxarcyzp", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:36:05Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", - "creationTime": "2023-04-07T20:36:06Z", - "deletionTime": "2023-04-07T20:56:57Z" - } - ] - } - }, - { - "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", - "properties": { - "accountName": "clilnfxvj3jbdds", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z" - } - ] - } - }, - { - "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", - "properties": { - "accountName": "cliwoaphmlu77h5", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:56:14Z", - "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", - "creationTime": "2023-04-07T21:56:15Z", - "deletionTime": "2023-04-07T21:59:20Z" - } - ] - } - }, - { - "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", - "properties": { - "accountName": "clioh53zckfrcxk", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T22:04:54Z", - "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", - "creationTime": "2023-04-07T22:04:55Z", - "deletionTime": "2023-04-07T22:09:53Z" - } - ] - } - }, - { - "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", - "properties": { - "accountName": "cli7cixib236qbg", - "apiType": "Sql", - "creationTime": "2023-04-08T17:25:42Z", - "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", - "creationTime": "2023-04-08T17:25:44Z", - "deletionTime": "2023-04-08T17:29:36Z" - } - ] - } - }, - { - "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", - "properties": { - "accountName": "cli-continuous7-hfvk4t4fj", - "apiType": "Sql", - "creationTime": "2023-04-13T14:48:07Z", - "deletionTime": "2023-04-13T14:49:43Z", - "oldestRestorableTime": "2023-04-06T14:49:43Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", - "creationTime": "2023-04-13T14:48:08Z", - "deletionTime": "2023-04-13T14:49:43Z" - } - ] - } - }, - { - "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", - "properties": { - "accountName": "cli-continuous7-zputoz3gu", - "apiType": "Sql", - "creationTime": "2023-04-14T13:23:19Z", - "deletionTime": "2023-04-14T13:26:29Z", - "oldestRestorableTime": "2023-04-07T13:26:29Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", - "creationTime": "2023-04-14T13:23:20Z", - "deletionTime": "2023-04-14T13:26:29Z" - } - ] - } - }, - { - "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", - "properties": { - "accountName": "cli-continuous7-737ullqld", - "apiType": "Sql", - "creationTime": "2023-04-14T13:36:13Z", - "deletionTime": "2023-04-14T13:38:00Z", - "oldestRestorableTime": "2023-04-07T13:38:00Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", - "creationTime": "2023-04-14T13:36:14Z", - "deletionTime": "2023-04-14T13:38:00Z" - } - ] - } - }, - { - "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", - "properties": { - "accountName": "clidiym44m6kuui", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z" - } - ] - } - }, - { - "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", - "properties": { - "accountName": "clifxznjcelc2k7", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:07:29Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", - "creationTime": "2023-04-14T14:07:30Z", - "deletionTime": "2023-04-14T14:27:29Z" - } - ] - } - }, - { - "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", - "properties": { - "accountName": "clifdo3gehahcp3", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:32:21Z", - "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", - "creationTime": "2023-04-14T14:32:22Z", - "deletionTime": "2023-04-14T14:36:53Z" - } - ] - } - }, - { - "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", - "properties": { - "accountName": "clijvrcnqk7clgr", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:39:15Z", - "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", - "creationTime": "2023-04-14T15:39:16Z", - "deletionTime": "2023-04-14T15:59:46Z" - } - ] - } - }, - { - "name": "84f8e018-f026-4a8c-94df-a833c68247b4", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", - "properties": { - "accountName": "cliw5rqb5ajsohh", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z" - } - ] - } - }, - { - "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", - "properties": { - "accountName": "cliz3js7jmkwxxb", - "apiType": "Sql", - "creationTime": "2023-04-14T16:51:53Z", - "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", - "creationTime": "2023-04-14T16:51:54Z", - "deletionTime": "2023-04-14T16:55:53Z" - } - ] - } - }, - { - "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", - "properties": { - "accountName": "cliamicotk3huk3", - "apiType": "MongoDB", - "creationTime": "2023-04-14T16:59:34Z", - "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", - "creationTime": "2023-04-14T16:59:35Z", - "deletionTime": "2023-04-14T17:04:35Z" - } - ] - } - }, - { - "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", - "properties": { - "accountName": "cli7fcxogqa75ng", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T17:07:39Z", - "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", - "creationTime": "2023-04-14T17:07:40Z", - "deletionTime": "2023-04-14T17:12:37Z" - } - ] - } - }, - { - "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", - "properties": { - "accountName": "clibijii3gdxu7r", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T17:16:06Z", - "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", - "creationTime": "2023-04-14T17:16:07Z", - "deletionTime": "2023-04-14T17:19:35Z" - } - ] - } - }, - { - "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", - "properties": { - "accountName": "cli-continuous7-ixtyb5gvo", - "apiType": "Sql", - "creationTime": "2023-04-14T17:21:52Z", - "deletionTime": "2023-04-14T17:23:42Z", - "oldestRestorableTime": "2023-04-07T17:22:55Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", - "creationTime": "2023-04-14T17:21:53Z", - "deletionTime": "2023-04-14T17:23:42Z" - } - ] - } - }, - { - "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", - "properties": { - "accountName": "cli-continuous30-expjec5z", - "apiType": "Sql", - "creationTime": "2023-04-14T17:25:24Z", - "deletionTime": "2023-04-14T17:27:06Z", - "oldestRestorableTime": "2023-04-07T17:27:06Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", - "creationTime": "2023-04-14T17:25:25Z", - "deletionTime": "2023-04-14T17:27:06Z" - } - ] - } - }, - { - "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", - "properties": { - "accountName": "cli-periodic-ppe7oaphbkgu", - "apiType": "Sql", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z", - "oldestRestorableTime": "2023-04-14T18:01:21Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z" - } - ] - } - }, - { - "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", - "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z" - } - ] - } - }, - { - "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", - "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g", - "apiType": "Sql", - "creationTime": "2023-04-14T18:08:00Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", - "creationTime": "2023-04-14T18:08:01Z", - "deletionTime": "2023-04-14T18:31:44Z" - } - ] - } - }, - { - "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", - "properties": { - "accountName": "cli7i23nmwwvyik", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T18:36:04Z", - "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", - "creationTime": "2023-04-14T18:36:05Z", - "deletionTime": "2023-04-14T18:40:37Z" - } - ] - } - }, - { - "name": "f4004a76-8173-4d36-9590-6090cce37a4d", - "location": "West Europe", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", - "properties": { - "accountName": "aholdtest", - "apiType": "MongoDB", - "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "West Europe", - "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", - "creationTime": "2021-07-01T19:34:25Z" - } - ] - } - }, - { - "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", - "properties": { - "accountName": "targetacct112", - "apiType": "Sql", - "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", - "creationTime": "2021-03-01T10:33:41Z" - } - ] - } - }, - { - "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", - "properties": { - "accountName": "pitrmongotest", - "apiType": "MongoDB", - "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", - "creationTime": "2020-10-01T17:27:23Z" - } - ] - } - }, - { - "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", - "properties": { - "accountName": "pitrmongowithsnapshots", - "apiType": "MongoDB", - "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", - "creationTime": "2021-01-07T19:45:07Z" - } - ] - } - }, - { - "name": "36d321ce-5c39-4d66-9347-47beebff1142", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", - "properties": { - "accountName": "test0319-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", - "creationTime": "2021-07-07T21:28:13Z" - }, - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", - "creationTime": "2021-07-07T21:28:13Z" - } - ] - } - }, - { - "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "properties": { - "accountName": "pitracctdemo2", - "apiType": "Sql", - "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", - "creationTime": "2020-08-11T02:34:24Z" - } - ] - } - }, - { - "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "properties": { - "accountName": "ptr-target", - "apiType": "Sql", - "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", - "creationTime": "2021-01-05T22:25:24Z" - } - ] - } - }, - { - "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "properties": { - "accountName": "pitrmongotest-restore", - "apiType": "MongoDB", - "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", - "creationTime": "2020-10-01T21:24:45Z" - } - ] - } - }, - { - "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", - "properties": { - "accountName": "pitrdemo1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", - "creationTime": "2020-10-15T17:29:00Z" - } - ] - } - }, - { - "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "properties": { - "accountName": "pitrdemorestored1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", - "creationTime": "2020-10-15T17:37:20Z" - } - ] - } - }, - { - "name": "23e99a35-cd36-4df4-9614-f767a03b9995", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", - "properties": { - "accountName": "subbannageeta", - "apiType": "Sql", - "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", - "creationTime": "2020-08-08T01:04:53Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", - "creationTime": "2020-08-08T01:15:44Z" - } - ] - } - }, - { - "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "properties": { - "accountName": "scottkirill", - "apiType": "Sql", - "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", - "creationTime": "2021-04-15T17:21:20Z" - } - ] - } - }, - { - "name": "01c9a078-6ca2-43fd-92c7-632167c86590", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", - "properties": { - "accountName": "test0319-pitr-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", - "creationTime": "2021-07-07T21:54:07Z" - } - ] - } - }, - { - "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", - "properties": { - "accountName": "onboardingtestaccount0124", - "apiType": "Sql", - "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", - "creationTime": "2022-01-24T20:24:44Z" - } - ] - } - }, - { - "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", - "properties": { - "accountName": "onboardingtestaccount0124-restored", - "apiType": "Sql", - "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", - "creationTime": "2022-01-24T20:48:23Z" - } - ] - } - }, - { - "name": "01652628-d4ef-449d-846e-38e8250f0b9a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", - "properties": { - "accountName": "vinh-table2-restore", - "apiType": "Table, Sql", - "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", - "creationTime": "2022-04-07T00:48:08Z" - } - ] - } - }, - { - "name": "4b754475-3b23-4485-9205-87ac1661af13", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", - "properties": { - "accountName": "vinhpitr30-cli", - "apiType": "Sql", - "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", - "creationTime": "2022-04-29T23:50:21Z" - } - ] - } - }, - { - "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", - "properties": { - "accountName": "vinhperiodic3-cli", - "apiType": "Sql", - "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", - "creationTime": "2022-06-03T17:21:23Z" - } - ] - } - }, - { - "name": "023add2e-531e-4574-a7df-4d09c97d548d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", - "properties": { - "accountName": "vinh-pitr7-portal", - "apiType": "Sql", - "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", - "creationTime": "2022-05-31T19:24:34Z" - } - ] - } - }, - { - "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", - "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7", - "apiType": "Sql", - "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", - "creationTime": "2022-05-31T23:36:11Z" - } - ] - } - }, - { - "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", - "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", - "apiType": "Sql", - "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", - "creationTime": "2022-06-03T18:42:58Z" - } - ] - } - }, - { - "name": "3808b68e-7cae-4b91-901b-e29b35b311be", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", - "properties": { - "accountName": "vinh-periodic-again", - "apiType": "Sql", - "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", - "creationTime": "2022-06-10T20:01:48Z" - } - ] - } - }, - { - "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", - "properties": { - "accountName": "vinh-periodic-again2", - "apiType": "Sql", - "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", - "creationTime": "2022-06-10T23:57:37Z" - } - ] - } - }, - { - "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", - "properties": { - "accountName": "vinh-gremlin-again", - "apiType": "Gremlin, Sql", - "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", - "creationTime": "2022-07-28T01:55:28Z" - } - ] - } - }, - { - "name": "df774a43-6e6f-4725-82d0-67c18c69a906", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", - "properties": { - "accountName": "vinh-table-tennis-cli-0190", - "apiType": "Table, Sql", - "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", - "creationTime": "2022-08-11T05:19:28Z" - } - ] - } - }, - { - "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", - "properties": { - "accountName": "ddhamothsqlpitracc", - "apiType": "Sql", - "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", - "creationTime": "2022-10-12T07:15:51Z" - } - ] - } - }, - { - "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", - "properties": { - "accountName": "ddhamothmongopitracc", - "apiType": "MongoDB", - "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", - "creationTime": "2022-10-12T07:18:55Z" - } - ] - } - }, - { - "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", - "properties": { - "accountName": "dsapaligadbkeytest", - "apiType": "Sql", - "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", - "creationTime": "2022-10-27T16:53:56Z" - } - ] - } - }, - { - "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", - "properties": { - "accountName": "ddhamothpitrsqlacc2", - "apiType": "Sql", - "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", - "creationTime": "2022-11-15T21:30:18Z" - } - ] - } - }, - { - "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", - "properties": { - "accountName": "vinkumsql", - "apiType": "Sql", - "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", - "creationTime": "2022-12-06T19:35:16Z" - } - ] - } - }, - { - "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", - "properties": { - "accountName": "dsapaliga-monitor-test2", - "apiType": "Sql", - "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", - "creationTime": "2022-12-09T16:57:51Z" - } - ] - } - }, - { - "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", - "properties": { - "accountName": "nikhiltestmig", - "apiType": "Sql", - "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", - "creationTime": "2022-12-15T19:23:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", - "creationTime": "2022-12-19T06:05:45Z" - } - ] - } - }, - { - "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", - "properties": { - "accountName": "nikhil-multi-region-pitr", - "apiType": "Sql", - "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", - "creationTime": "2022-12-19T06:00:52Z" - } - ] - } - }, - { - "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", - "properties": { - "accountName": "test-account23", - "apiType": "Sql", - "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", - "creationTime": "2022-12-24T18:24:53Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", - "creationTime": "2022-12-24T18:27:11Z" - } - ] - } - }, - { - "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", - "properties": { - "accountName": "testpitr", - "apiType": "Sql", - "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", - "creationTime": "2022-12-27T20:37:02Z" - } - ] - } - }, - { - "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", - "properties": { - "accountName": "readregionrestore-test", - "apiType": "Sql", - "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", - "creationTime": "2023-01-09T23:54:38Z" - } - ] - } - }, - { - "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", - "properties": { - "accountName": "vinhpitr30-cli-arm-restore", - "apiType": "Sql", - "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", - "creationTime": "2023-02-06T21:33:23Z" - } - ] - } - }, - { - "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", - "properties": { - "accountName": "grem-test", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", - "creationTime": "2023-03-06T19:09:59Z" - } - ] - } - }, - { - "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", - "properties": { - "accountName": "mongo-test-1", - "apiType": "MongoDB", - "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", - "creationTime": "2023-03-06T19:26:34Z" - } - ] - } - }, - { - "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", - "properties": { - "accountName": "sql-test-1", - "apiType": "Sql", - "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", - "creationTime": "2023-03-06T19:26:24Z" - } - ] - } - }, - { - "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", - "properties": { - "accountName": "tables-test-1", - "apiType": "Table, Sql", - "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", - "creationTime": "2023-03-06T19:30:25Z" - } - ] - } - }, - { - "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", - "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:32:50Z", - "oldestRestorableTime": "2023-03-28T14:32:50Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", - "creationTime": "2023-03-28T14:32:51Z" - } - ] - } - }, - { - "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T14:53:31Z", - "oldestRestorableTime": "2023-03-28T14:53:31Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", - "creationTime": "2023-03-28T14:53:32Z" - } - ] - } - }, - { - "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", - "properties": { - "accountName": "dsapaliga-xrr-test", - "apiType": "Sql", - "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", - "creationTime": "2023-03-30T04:00:58Z" - } - ] - } - }, - { - "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", - "properties": { - "accountName": "dsapaliga-xrr-cli2", - "apiType": "Sql", - "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T00:32:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", - "creationTime": "2023-03-30T04:23:36Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", - "creationTime": "2023-03-30T04:25:59Z" - } - ] - } - }, - { - "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", - "properties": { - "accountName": "r-grem-db-account-938", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:55Z", - "oldestRestorableTime": "2023-04-05T19:15:55Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", - "creationTime": "2023-04-05T19:15:56Z" - } - ] - } - }, - { - "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", - "properties": { - "accountName": "r-table-account-9379", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:45:49Z", - "oldestRestorableTime": "2023-04-06T01:45:49Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", - "creationTime": "2023-04-06T01:45:51Z" - } - ] - } - }, - { - "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", - "properties": { - "accountName": "restoredaccount-5362", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:03:48Z", - "oldestRestorableTime": "2023-04-06T02:03:48Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", - "creationTime": "2023-04-06T02:03:48Z" - } - ] - } - }, - { - "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", - "properties": { - "accountName": "r-table-account-5626", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:12:24Z", - "oldestRestorableTime": "2023-04-06T02:12:24Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", - "creationTime": "2023-04-06T02:12:25Z" - } - ] - } - }, - { - "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", - "properties": { - "accountName": "r-table-account-1300", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:23:30Z", - "oldestRestorableTime": "2023-04-06T06:23:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", - "creationTime": "2023-04-06T06:23:31Z" - } - ] - } - }, - { - "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", - "properties": { - "accountName": "restoredaccount-9934", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:40:38Z", - "oldestRestorableTime": "2023-04-06T06:40:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", - "creationTime": "2023-04-06T06:40:38Z" - } - ] - } - }, - { - "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", - "properties": { - "accountName": "cli3grog6psgdfn", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T17:59:19Z", - "oldestRestorableTime": "2023-04-06T17:59:19Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", - "creationTime": "2023-04-06T17:59:20Z" - } - ] - } - }, - { - "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "properties": { - "accountName": "clil3ignfqgk6kz", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:02:42Z", - "oldestRestorableTime": "2023-04-06T18:02:42Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", - "creationTime": "2023-04-06T18:02:43Z" - } - ] - } - }, - { - "name": "4656b731-172b-4064-8514-f327e6841751", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", - "properties": { - "accountName": "cliysii3c7g3auw", - "apiType": "Sql", - "creationTime": "2023-04-06T18:00:38Z", - "oldestRestorableTime": "2023-04-06T18:00:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", - "creationTime": "2023-04-06T18:00:39Z" - } - ] - } - }, - { - "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", - "properties": { - "accountName": "clihhqescxfepto", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:03:34Z", - "oldestRestorableTime": "2023-04-06T18:03:34Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", - "creationTime": "2023-04-06T18:03:35Z" - } - ] - } - }, - { - "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", - "properties": { - "accountName": "clib27b72hyhtjp", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:02Z", - "oldestRestorableTime": "2023-04-06T18:02:02Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", - "creationTime": "2023-04-06T18:02:03Z" - } - ] - } - }, - { - "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", - "properties": { - "accountName": "clio3vmbb3n7afz", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:07:13Z", - "oldestRestorableTime": "2023-04-06T18:07:13Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", - "creationTime": "2023-04-06T18:07:14Z" - } - ] - } - }, - { - "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", - "properties": { - "accountName": "cliuoo2ldjhxpwj", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:04:25Z", - "oldestRestorableTime": "2023-04-06T18:04:25Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", - "creationTime": "2023-04-06T18:04:26Z" - } - ] - } - }, - { - "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", - "properties": { - "accountName": "clizy6bsjdyjuwo", - "apiType": "Sql", - "creationTime": "2023-04-06T18:03:13Z", - "oldestRestorableTime": "2023-04-06T18:03:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", - "creationTime": "2023-04-06T18:03:14Z" - } - ] - } - }, - { - "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", - "properties": { - "accountName": "clizcfq53tcsj7v", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:04:50Z", - "oldestRestorableTime": "2023-04-06T18:04:50Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", - "creationTime": "2023-04-06T18:04:52Z" - } - ] - } - }, - { - "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", - "properties": { - "accountName": "cli2gdxmqiqo4ik", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:58Z", - "oldestRestorableTime": "2023-04-06T18:02:58Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", - "creationTime": "2023-04-06T18:02:58Z" - } - ] - } - }, - { - "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", - "properties": { - "accountName": "cligsqzmjlnuq5j", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:06:34Z", - "oldestRestorableTime": "2023-04-06T18:06:34Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", - "creationTime": "2023-04-06T18:06:35Z" - } - ] - } - }, - { - "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", - "properties": { - "accountName": "r-grem-db-account-7826", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:27:30Z", - "oldestRestorableTime": "2023-04-06T18:27:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", - "creationTime": "2023-04-06T18:27:31Z" - } - ] - } - }, - { - "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", - "properties": { - "accountName": "cliec3z5o2473ut", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:31:12Z", - "oldestRestorableTime": "2023-04-06T18:31:12Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", - "creationTime": "2023-04-06T18:31:13Z" - } - ] - } - }, - { - "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", - "properties": { - "accountName": "clinrylxz344nf3", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:44Z", - "oldestRestorableTime": "2023-04-06T18:29:44Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", - "creationTime": "2023-04-06T18:29:45Z" - } - ] - } - }, - { - "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", - "properties": { - "accountName": "clilaesevwusylf", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:34:21Z", - "oldestRestorableTime": "2023-04-06T18:34:21Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", - "creationTime": "2023-04-06T18:34:23Z" - } - ] - } - }, - { - "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", - "properties": { - "accountName": "cli7p3qq5cporx7", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:35Z", - "oldestRestorableTime": "2023-04-06T18:29:35Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", - "creationTime": "2023-04-06T18:29:36Z" - } - ] - } - }, - { - "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", - "properties": { - "accountName": "clij75qd5uyobmj", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:31:13Z", - "oldestRestorableTime": "2023-04-06T18:31:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", - "creationTime": "2023-04-06T18:31:14Z" - } - ] - } - }, - { - "name": "8a7d6175-2174-495f-9147-ade59959d7a1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", - "properties": { - "accountName": "r-grem-db-account-5687", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:34:51Z", - "oldestRestorableTime": "2023-04-06T18:34:51Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", - "creationTime": "2023-04-06T18:34:52Z" - } - ] - } - }, - { - "name": "91df614a-d17c-4510-8727-354fe0d1447d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", - "properties": { - "accountName": "clivh5sbv5jm2tn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:55Z", - "oldestRestorableTime": "2023-04-06T18:35:55Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", - "creationTime": "2023-04-06T18:35:56Z" - } - ] - } - }, - { - "name": "073071e8-3f6e-4510-9175-440346e61824", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", - "properties": { - "accountName": "clipmrcd5m37yeh", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:27Z", - "oldestRestorableTime": "2023-04-06T18:34:27Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", - "creationTime": "2023-04-06T18:34:28Z" - } - ] - } - }, - { - "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", - "properties": { - "accountName": "clieik2we2gw5zk", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:28Z", - "oldestRestorableTime": "2023-04-06T18:34:28Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", - "creationTime": "2023-04-06T18:34:29Z" - } - ] - } - }, - { - "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", - "properties": { - "accountName": "cli24p5gxxip4wp", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:36:07Z", - "oldestRestorableTime": "2023-04-06T18:36:07Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", - "creationTime": "2023-04-06T18:36:08Z" - } - ] - } - }, - { - "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", - "properties": { - "accountName": "cli4nd5tsapqcn4", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:38:50Z", - "oldestRestorableTime": "2023-04-06T18:38:50Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", - "creationTime": "2023-04-06T18:38:51Z" - } - ] - } - }, - { - "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", - "properties": { - "accountName": "r-database-account-4892", - "apiType": "Sql", - "creationTime": "2023-03-23T10:54:16Z", - "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", - "creationTime": "2023-03-23T10:54:17Z", - "deletionTime": "2023-03-23T10:54:57Z" - } - ] - } - }, - { - "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", - "properties": { - "accountName": "r-database-account-6730", - "apiType": "Sql", - "creationTime": "2023-03-23T11:05:04Z", - "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", - "creationTime": "2023-03-23T11:05:05Z", - "deletionTime": "2023-03-23T11:06:25Z" - } - ] - } - }, - { - "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", - "properties": { - "accountName": "dbaccount-6688", - "apiType": "Sql", - "creationTime": "2023-03-23T11:16:07Z", - "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", - "creationTime": "2023-03-23T11:16:08Z", - "deletionTime": "2023-03-23T11:20:59Z" - } - ] - } - }, - { - "name": "0768f3f1-b168-46b8-bdd2-671139a55152", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", - "properties": { - "accountName": "dbaccount-1880", - "apiType": "Sql", - "creationTime": "2023-03-23T11:22:51Z", - "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", - "creationTime": "2023-03-23T11:22:52Z", - "deletionTime": "2023-03-23T11:26:46Z" - } - ] - } - }, - { - "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z" - } - ] - } - }, - { - "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T21:16:33Z", - "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", - "creationTime": "2023-03-23T21:16:34Z", - "deletionTime": "2023-03-23T21:20:17Z" - } - ] - } - }, - { - "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:08Z", - "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", - "creationTime": "2023-03-24T16:01:09Z", - "deletionTime": "2023-03-24T16:04:52Z" - } - ] - } - }, - { - "name": "151f9fea-5280-4201-8e95-0ea414c89379", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:18:09Z", - "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", - "creationTime": "2023-03-24T16:18:10Z", - "deletionTime": "2023-03-24T16:21:49Z" - } - ] - } - }, - { - "name": "edbde762-f533-4cc9-886a-a2196e203b19", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:00:54Z", - "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", - "creationTime": "2023-03-24T17:00:55Z", - "deletionTime": "2023-03-24T17:03:11Z" - } - ] - } - }, - { - "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z" - } - ] - } - }, - { - "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T18:51:09Z", - "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", - "creationTime": "2023-03-24T18:51:10Z", - "deletionTime": "2023-03-24T18:51:31Z" - } - ] - } - }, - { - "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T19:00:50Z", - "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", - "creationTime": "2023-03-24T19:00:51Z", - "deletionTime": "2023-03-24T19:15:40Z" - } - ] - } - }, - { - "name": "219254b8-6f3a-466e-b360-95f262bfe51e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", - "properties": { - "accountName": "cosmosdb-1217", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:09Z", - "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", - "creationTime": "2023-03-24T19:18:10Z", - "deletionTime": "2023-03-24T19:20:56Z" - } - ] - } - }, - { - "name": "e888bd61-957a-4028-af47-b834b0a267ab", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-24T19:34:54Z", - "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", - "creationTime": "2023-03-24T19:34:55Z", - "deletionTime": "2023-03-24T19:50:50Z" - } - ] - } - }, - { - "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", - "properties": { - "accountName": "restored2-cosmosdb-1210-5", - "apiType": "Sql", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z" - } - ] - } - }, - { - "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-24T20:32:49Z", - "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", - "creationTime": "2023-03-24T20:32:50Z", - "deletionTime": "2023-03-24T20:50:46Z" - } - ] - } - }, - { - "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:11:27Z", - "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", - "creationTime": "2023-03-25T16:11:28Z", - "deletionTime": "2023-03-25T16:23:23Z" - } - ] - } - }, - { - "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z" - } - ] - } - }, - { - "name": "2533e0b0-a675-441d-9b41-147c66cb8834", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-26T16:03:42Z", - "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", - "creationTime": "2023-03-26T16:03:43Z", - "deletionTime": "2023-03-26T16:15:36Z" - } - ] - } - }, - { - "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-27T03:23:23Z", - "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", - "creationTime": "2023-03-27T03:23:24Z", - "deletionTime": "2023-03-27T03:41:45Z" - } - ] - } - }, - { - "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", - "properties": { - "accountName": "grem-test-72", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z" - } - ] - } - }, - { - "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T02:19:03Z", - "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", - "creationTime": "2023-03-28T02:19:04Z", - "deletionTime": "2023-03-28T02:22:53Z" - } - ] - } - }, - { - "name": "a9481019-401b-431b-b5f7-440ec8798dfd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T03:39:15Z", - "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", - "creationTime": "2023-03-28T03:39:16Z", - "deletionTime": "2023-03-28T03:42:12Z" - } - ] - } - }, - { - "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T13:58:50Z", - "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", - "creationTime": "2023-03-28T13:58:51Z", - "deletionTime": "2023-03-28T13:59:37Z" - } - ] - } - }, - { - "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", - "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:10:51Z", - "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", - "creationTime": "2023-03-28T14:10:52Z", - "deletionTime": "2023-03-28T14:13:58Z" - } - ] - } - }, - { - "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", - "properties": { - "accountName": "cosmosdb-1233", - "apiType": "Sql", - "creationTime": "2023-03-28T14:25:17Z", - "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", - "creationTime": "2023-03-28T14:25:18Z", - "deletionTime": "2023-03-28T14:28:04Z" - } - ] - } - }, - { - "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T14:35:15Z", - "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", - "creationTime": "2023-03-28T14:35:16Z", - "deletionTime": "2023-03-28T14:39:43Z" - } - ] - } - }, - { - "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", - "properties": { - "accountName": "cosmosdb-1234", - "apiType": "Sql", - "creationTime": "2023-03-28T14:54:34Z", - "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", - "creationTime": "2023-03-28T14:54:35Z", - "deletionTime": "2023-03-28T14:58:59Z" - } - ] - } - }, - { - "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", - "properties": { - "accountName": "cosmosdb-12103", - "apiType": "Sql", - "creationTime": "2023-03-28T15:09:04Z", - "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", - "creationTime": "2023-03-28T15:09:05Z", - "deletionTime": "2023-03-28T15:27:39Z" - } - ] - } - }, - { - "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", - "properties": { - "accountName": "restored2-cosmosdb-12103-3", - "apiType": "Sql", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z" - } - ] - } - }, - { - "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", - "properties": { - "accountName": "cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", - "creationTime": "2023-03-28T15:34:43Z", - "deletionTime": "2023-03-28T15:39:16Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z" - } - ] - } - }, - { - "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", - "properties": { - "accountName": "r-database-account-9490", - "apiType": "Sql", - "creationTime": "2023-03-28T22:16:00Z", - "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", - "creationTime": "2023-03-28T22:16:01Z", - "deletionTime": "2023-03-28T22:16:48Z" - } - ] - } - }, - { - "name": "03ad66ba-329b-42a9-a663-7175c237d696", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", - "properties": { - "accountName": "r-database-account-5060", - "apiType": "Sql", - "creationTime": "2023-03-29T01:52:39Z", - "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", - "creationTime": "2023-03-29T01:52:40Z", - "deletionTime": "2023-03-29T01:53:32Z" - } - ] - } - }, - { - "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", - "properties": { - "accountName": "r-database-account-8615", - "apiType": "Sql", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z" - } - ] - } - }, - { - "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", - "properties": { - "accountName": "r-database-account-6456", - "apiType": "Sql", - "creationTime": "2023-03-29T02:33:02Z", - "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", - "creationTime": "2023-03-29T02:33:03Z", - "deletionTime": "2023-03-29T02:34:43Z" - } - ] - } - }, - { - "name": "835d93a1-22dd-478a-b58d-426efe281471", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", - "properties": { - "accountName": "r-database-account-4855", - "apiType": "Sql", - "creationTime": "2023-03-29T02:47:00Z", - "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", - "creationTime": "2023-03-29T02:47:01Z", - "deletionTime": "2023-03-29T02:49:00Z" - } - ] - } - }, - { - "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", - "properties": { - "accountName": "r-database-account-84", - "apiType": "Sql", - "creationTime": "2023-03-29T03:26:20Z", - "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", - "creationTime": "2023-03-29T03:26:21Z", - "deletionTime": "2023-03-29T03:28:03Z" - } - ] - } - }, - { - "name": "745f1b21-405d-46bf-8788-0d661ffbb160", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", - "properties": { - "accountName": "r-database-account-5060", - "apiType": "Sql", - "creationTime": "2023-03-29T03:40:43Z", - "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", - "creationTime": "2023-03-29T03:40:44Z", - "deletionTime": "2023-03-29T03:42:31Z" - } - ] - } - }, - { - "name": "454b0097-ad05-4177-9048-93cff3b23e4c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", - "properties": { - "accountName": "r-database-account-985", - "apiType": "Sql", - "creationTime": "2023-03-29T04:04:48Z", - "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", - "creationTime": "2023-03-29T04:04:49Z", - "deletionTime": "2023-03-29T04:05:36Z" - } - ] - } - }, - { - "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", - "properties": { - "accountName": "r-database-account-411", - "apiType": "Sql", - "creationTime": "2023-03-29T04:32:28Z", - "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", - "creationTime": "2023-03-29T04:32:29Z", - "deletionTime": "2023-03-29T04:34:13Z" - } - ] - } - }, - { - "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", - "properties": { - "accountName": "r-database-account-7460", - "apiType": "Sql", - "creationTime": "2023-03-29T04:59:34Z", - "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", - "creationTime": "2023-03-29T04:59:35Z", - "deletionTime": "2023-03-29T05:01:02Z" - } - ] - } - }, - { - "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", - "properties": { - "accountName": "r-database-account-6301", - "apiType": "Sql", - "creationTime": "2023-03-29T05:27:44Z", - "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", - "creationTime": "2023-03-29T05:27:45Z", - "deletionTime": "2023-03-29T05:29:32Z" - } - ] - } - }, - { - "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", - "properties": { - "accountName": "r-database-account-725", - "apiType": "Sql", - "creationTime": "2023-03-29T05:51:55Z", - "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", - "creationTime": "2023-03-29T05:51:56Z", - "deletionTime": "2023-03-29T05:53:14Z" - } - ] - } - }, - { - "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", - "properties": { - "accountName": "r-database-account-5868", - "apiType": "Sql", - "creationTime": "2023-03-29T06:07:55Z", - "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", - "creationTime": "2023-03-29T06:07:56Z", - "deletionTime": "2023-03-29T06:10:43Z" - } - ] - } - }, - { - "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", - "properties": { - "accountName": "r-database-account-6513", - "apiType": "Sql", - "creationTime": "2023-03-29T06:41:45Z", - "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", - "creationTime": "2023-03-29T06:41:46Z", - "deletionTime": "2023-03-29T06:45:18Z" - } - ] - } - }, - { - "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", - "properties": { - "accountName": "r-database-account-79", - "apiType": "Sql", - "creationTime": "2023-03-29T07:22:12Z", - "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", - "creationTime": "2023-03-29T07:22:13Z", - "deletionTime": "2023-03-29T07:24:10Z" - } - ] - } - }, - { - "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", - "properties": { - "accountName": "r-database-account-766", - "apiType": "Sql", - "creationTime": "2023-03-29T08:19:11Z", - "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", - "creationTime": "2023-03-29T08:19:12Z", - "deletionTime": "2023-03-29T08:20:09Z" - } - ] - } - }, - { - "name": "fa235396-6959-4dc1-932d-2ac66d318878", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", - "properties": { - "accountName": "r-database-account-9810", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:33:51Z", - "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", - "creationTime": "2023-03-29T08:33:53Z", - "deletionTime": "2023-03-29T08:48:10Z" - } - ] - } - }, - { - "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", - "properties": { - "accountName": "r-database-account-6103", - "apiType": "Sql", - "creationTime": "2023-03-29T09:01:29Z", - "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", - "creationTime": "2023-03-29T09:01:30Z", - "deletionTime": "2023-03-29T09:13:42Z" - } - ] - } - }, - { - "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", - "properties": { - "accountName": "r-database-account-8066", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:28:36Z", - "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", - "creationTime": "2023-03-29T09:28:37Z", - "deletionTime": "2023-03-29T09:44:31Z" - } - ] - } - }, - { - "name": "ddab1ead-237f-448e-8291-995fddb1ae74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", - "properties": { - "accountName": "r-database-account-7977", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T10:01:55Z", - "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", - "creationTime": "2023-03-29T10:01:56Z", - "deletionTime": "2023-03-29T10:03:30Z" - } - ] - } - }, - { - "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", - "properties": { - "accountName": "r-database-account-116", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T10:20:03Z", - "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", - "creationTime": "2023-03-29T10:20:04Z", - "deletionTime": "2023-03-29T10:21:16Z" - } - ] - } - }, - { - "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", - "properties": { - "accountName": "restoredaccount-7426", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z" - } - ] - } - }, - { - "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", - "properties": { - "accountName": "r-database-account-9884", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:16:22Z", - "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", - "creationTime": "2023-03-29T08:16:23Z", - "deletionTime": "2023-03-29T10:33:43Z" - } - ] - } - }, - { - "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", - "properties": { - "accountName": "r-database-account-2379", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:28:35Z", - "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", - "creationTime": "2023-03-29T16:28:36Z", - "deletionTime": "2023-03-29T16:44:35Z" - } - ] - } - }, - { - "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", - "properties": { - "accountName": "r-database-account-3992", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T16:22:41Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", - "creationTime": "2023-03-29T16:22:42Z", - "deletionTime": "2023-03-29T16:57:31Z" - } - ] - } - }, - { - "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", - "properties": { - "accountName": "restoredaccount-232", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z" - } - ] - } - }, - { - "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", - "properties": { - "accountName": "r-database-account-1794", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:14:16Z", - "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", - "creationTime": "2023-03-29T17:14:17Z", - "deletionTime": "2023-03-29T17:15:46Z" - } - ] - } - }, - { - "name": "8940962c-1866-49f7-871f-38869cce24f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", - "properties": { - "accountName": "r-database-account-7040", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T17:32:14Z", - "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", - "creationTime": "2023-03-29T17:32:15Z", - "deletionTime": "2023-03-29T17:33:38Z" - } - ] - } - }, - { - "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", - "properties": { - "accountName": "r-database-account-959", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:41:56Z", - "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", - "creationTime": "2023-03-29T17:41:58Z", - "deletionTime": "2023-03-29T17:42:37Z" - } - ] - } - }, - { - "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", - "properties": { - "accountName": "r-database-account-8612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:51:17Z", - "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", - "creationTime": "2023-03-29T17:51:18Z", - "deletionTime": "2023-03-29T18:07:55Z" - } - ] - } - }, - { - "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", - "properties": { - "accountName": "r-database-account-640", - "apiType": "Sql", - "creationTime": "2023-03-29T18:21:12Z", - "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", - "creationTime": "2023-03-29T18:21:13Z", - "deletionTime": "2023-03-29T18:37:25Z" - } - ] - } - }, - { - "name": "ebcdc313-e068-4539-bfc9-63238422f44d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", - "properties": { - "accountName": "r-database-account-6103", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:45:36Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", - "creationTime": "2023-03-29T17:45:37Z", - "deletionTime": "2023-03-29T18:49:19Z" - } - ] - } - }, - { - "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", - "properties": { - "accountName": "restoredaccount-9093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z" - } - ] - } - }, - { - "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", - "properties": { - "accountName": "restoredaccount-5464", - "apiType": "Sql", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z" - } - ] - } - }, - { - "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", - "properties": { - "accountName": "r-database-account-582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:55:11Z", - "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", - "creationTime": "2023-03-29T18:55:12Z", - "deletionTime": "2023-03-29T18:56:12Z" - } - ] - } - }, - { - "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", - "properties": { - "accountName": "r-database-account-7109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:11:47Z", - "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", - "creationTime": "2023-03-29T19:11:48Z", - "deletionTime": "2023-03-29T19:13:28Z" - } - ] - } - }, - { - "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", - "properties": { - "accountName": "r-database-account-1862", - "apiType": "Sql", - "creationTime": "2023-03-29T19:27:17Z", - "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", - "creationTime": "2023-03-29T19:27:18Z", - "deletionTime": "2023-03-29T19:28:11Z" - } - ] - } - }, - { - "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", - "properties": { - "accountName": "r-database-account-669", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:41:10Z", - "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", - "creationTime": "2023-03-29T19:41:11Z", - "deletionTime": "2023-03-29T19:42:32Z" - } - ] - } - }, - { - "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", - "properties": { - "accountName": "r-database-account-8361", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T19:57:31Z", - "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", - "creationTime": "2023-03-29T19:57:32Z", - "deletionTime": "2023-03-29T19:58:15Z" - } - ] - } - }, - { - "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", - "properties": { - "accountName": "r-database-account-9", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:12:42Z", - "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", - "creationTime": "2023-03-29T20:12:43Z", - "deletionTime": "2023-03-29T20:28:47Z" - } - ] - } - }, - { - "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", - "properties": { - "accountName": "r-database-account-7334", - "apiType": "Sql", - "creationTime": "2023-03-29T20:42:13Z", - "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", - "creationTime": "2023-03-29T20:42:14Z", - "deletionTime": "2023-03-29T20:44:52Z" - } - ] - } - }, - { - "name": "9513098d-df71-4d21-8d95-2fd12d55402e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", - "properties": { - "accountName": "r-database-account-4820", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:00:04Z", - "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", - "creationTime": "2023-03-29T21:00:05Z", - "deletionTime": "2023-03-29T21:16:44Z" - } - ] - } - }, - { - "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", - "properties": { - "accountName": "r-database-account-2346", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z" - } - ] - } - }, - { - "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", - "properties": { - "accountName": "restoredaccount-4730", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z" - } - ] - } - }, - { - "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", - "properties": { - "accountName": "restoredaccount-1173", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z" - } - ] - } - }, - { - "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", - "properties": { - "accountName": "r-database-account-3981", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T21:50:14Z", - "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", - "creationTime": "2023-03-29T21:50:15Z", - "deletionTime": "2023-03-29T21:52:00Z" - } - ] - } - }, - { - "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", - "properties": { - "accountName": "r-database-account-6608", - "apiType": "Sql", - "creationTime": "2023-03-29T22:05:54Z", - "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", - "creationTime": "2023-03-29T22:05:55Z", - "deletionTime": "2023-03-29T22:06:58Z" - } - ] - } - }, - { - "name": "d003df48-a9ea-4212-a771-0c539141cd9d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", - "properties": { - "accountName": "r-database-account-9561", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:19:29Z", - "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", - "creationTime": "2023-03-29T22:19:30Z", - "deletionTime": "2023-03-29T22:20:23Z" - } - ] - } - }, - { - "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", - "properties": { - "accountName": "r-database-account-1309", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T22:36:33Z", - "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", - "creationTime": "2023-03-29T22:36:35Z", - "deletionTime": "2023-03-29T22:37:50Z" - } - ] - } - }, - { - "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", - "properties": { - "accountName": "dsapaliga-restore-test5", - "apiType": "Sql", - "creationTime": "2023-03-29T21:59:36Z", - "deletionTime": "2023-03-29T22:56:12Z", - "oldestRestorableTime": "2023-03-22T22:56:12Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", - "creationTime": "2023-03-29T21:59:38Z", - "deletionTime": "2023-03-29T22:56:12Z" - } - ] - } - }, - { - "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", - "properties": { - "accountName": "dsapaliga-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z", - "oldestRestorableTime": "2023-03-22T22:56:35Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z" - } - ] - } - }, - { - "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", - "properties": { - "accountName": "dsapaliga-test-restored", - "apiType": "Sql", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z", - "oldestRestorableTime": "2023-03-22T22:57:04Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z" - } - ] - } - }, - { - "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", - "properties": { - "accountName": "dsapaliga-restore-test", - "apiType": "Sql", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z", - "oldestRestorableTime": "2023-03-22T22:57:42Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", - "creationTime": "2023-03-29T19:42:26Z", - "deletionTime": "2023-03-29T22:57:42Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z" - } - ] - } - }, - { - "name": "52581e9f-9743-4007-9041-e15df28ce4ee", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", - "properties": { - "accountName": "r-database-account-1604", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:51:34Z", - "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", - "creationTime": "2023-03-29T22:51:35Z", - "deletionTime": "2023-03-29T23:07:58Z" - } - ] - } - }, - { - "name": "9ab892fe-ad41-4e51-a646-530c226c8772", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", - "properties": { - "accountName": "r-database-account-39", - "apiType": "Sql", - "creationTime": "2023-03-29T23:21:19Z", - "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", - "creationTime": "2023-03-29T23:21:20Z", - "deletionTime": "2023-03-29T23:37:29Z" - } - ] - } - }, - { - "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", - "properties": { - "accountName": "r-database-account-6553", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T23:52:19Z", - "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", - "creationTime": "2023-03-29T23:52:20Z", - "deletionTime": "2023-03-29T23:54:50Z" - } - ] - } - }, - { - "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", - "properties": { - "accountName": "r-database-account-8730", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T00:45:13Z", - "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", - "creationTime": "2023-03-30T00:45:15Z", - "deletionTime": "2023-03-30T00:49:42Z" - } - ] - } - }, - { - "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", - "properties": { - "accountName": "r-database-account-2459", - "apiType": "Sql", - "creationTime": "2023-03-30T01:04:05Z", - "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", - "creationTime": "2023-03-30T01:04:06Z", - "deletionTime": "2023-03-30T01:06:50Z" - } - ] - } - }, - { - "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", - "properties": { - "accountName": "r-database-account-2957", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T01:23:37Z", - "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", - "creationTime": "2023-03-30T01:23:39Z", - "deletionTime": "2023-03-30T01:26:18Z" - } - ] - } - }, - { - "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", - "properties": { - "accountName": "r-database-account-6086", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T01:44:49Z", - "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", - "creationTime": "2023-03-30T01:44:50Z", - "deletionTime": "2023-03-30T01:54:03Z" - } - ] - } - }, - { - "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", - "properties": { - "accountName": "r-database-account-9503", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:14:47Z", - "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", - "creationTime": "2023-03-30T02:14:48Z", - "deletionTime": "2023-03-30T02:19:28Z" - } - ] - } - }, - { - "name": "a717fb23-baed-4b80-ab44-bedcce157333", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", - "properties": { - "accountName": "r-database-account-255", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:41:09Z", - "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", - "creationTime": "2023-03-30T02:41:10Z", - "deletionTime": "2023-03-30T02:50:27Z" - } - ] - } - }, - { - "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", - "properties": { - "accountName": "cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-03-30T03:16:29Z", - "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", - "creationTime": "2023-03-30T03:18:49Z", - "deletionTime": "2023-03-30T03:24:26Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", - "creationTime": "2023-03-30T03:16:30Z", - "deletionTime": "2023-03-30T03:24:26Z" - } - ] - } - }, - { - "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", - "properties": { - "accountName": "r-database-account-7398", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:22:44Z", - "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", - "creationTime": "2023-03-30T03:22:45Z", - "deletionTime": "2023-03-30T03:24:34Z" - } - ] - } - }, - { - "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", - "properties": { - "accountName": "r-database-account-2003", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:40:25Z", - "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", - "creationTime": "2023-03-30T03:40:26Z", - "deletionTime": "2023-03-30T03:41:26Z" - } - ] - } - }, - { - "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", - "properties": { - "accountName": "dsapaliga-rcg-migrationtest", - "apiType": "Sql", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z", - "oldestRestorableTime": "2023-03-23T03:56:45Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z" - } - ] - } - }, - { - "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", - "properties": { - "accountName": "r-database-account-3308", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T03:55:54Z", - "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", - "creationTime": "2023-03-30T03:55:55Z", - "deletionTime": "2023-03-30T03:56:52Z" - } - ] - } - }, - { - "name": "daf00acd-625e-4dcd-8453-247b297129a3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", - "properties": { - "accountName": "dsapaliga-restored-cli-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z", - "oldestRestorableTime": "2023-03-23T03:57:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z" - } - ] - } - }, - { - "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", - "properties": { - "accountName": "dsapaliga-xrr-cli", - "apiType": "Sql", - "creationTime": "2023-03-29T23:10:13Z", - "deletionTime": "2023-03-30T03:57:17Z", - "oldestRestorableTime": "2023-03-23T03:57:17Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", - "creationTime": "2023-03-29T23:12:40Z", - "deletionTime": "2023-03-30T03:57:17Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", - "creationTime": "2023-03-29T23:10:14Z", - "deletionTime": "2023-03-30T03:57:17Z" - } - ] - } - }, - { - "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", - "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z", - "oldestRestorableTime": "2023-03-23T03:57:27Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z" - } - ] - } - }, - { - "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", - "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2rg", - "apiType": "Sql", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z", - "oldestRestorableTime": "2023-03-23T03:57:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z" - } - ] - } - }, - { - "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", - "properties": { - "accountName": "dsapaliga-xrr-restorefix", - "apiType": "Sql", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z", - "oldestRestorableTime": "2023-03-23T04:15:46Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", - "creationTime": "2023-03-30T03:51:46Z", - "deletionTime": "2023-03-30T04:15:46Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z" - } - ] - } - }, - { - "name": "2896560d-7c61-44b5-95a3-2e325d44b464", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", - "properties": { - "accountName": "dsapaliga-xrr", - "apiType": "Sql", - "creationTime": "2023-03-29T23:01:28Z", - "deletionTime": "2023-03-30T04:16:00Z", - "oldestRestorableTime": "2023-03-23T04:16:00Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", - "creationTime": "2023-03-29T23:11:33Z", - "deletionTime": "2023-03-30T04:16:00Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", - "creationTime": "2023-03-29T23:01:29Z", - "deletionTime": "2023-03-30T04:16:00Z" - } - ] - } - }, - { - "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", - "properties": { - "accountName": "r-database-account-9362", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:14:52Z", - "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", - "creationTime": "2023-03-30T04:14:53Z", - "deletionTime": "2023-03-30T04:33:19Z" - } - ] - } - }, - { - "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", - "properties": { - "accountName": "r-database-account-7026", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T04:49:23Z", - "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", - "creationTime": "2023-03-30T04:49:24Z", - "deletionTime": "2023-03-30T05:05:15Z" - } - ] - } - }, - { - "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", - "properties": { - "accountName": "r-database-account-8518", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:21:59Z", - "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", - "creationTime": "2023-03-30T05:22:00Z", - "deletionTime": "2023-03-30T05:23:37Z" - } - ] - } - }, - { - "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", - "properties": { - "accountName": "restoredaccount-8613", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z" - } - ] - } - }, - { - "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", - "properties": { - "accountName": "restoredaccount-4321", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z" - } - ] - } - }, - { - "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", - "properties": { - "accountName": "r-database-account-9910", - "apiType": "Sql", - "creationTime": "2023-03-30T05:44:40Z", - "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", - "creationTime": "2023-03-30T05:44:41Z", - "deletionTime": "2023-03-30T06:00:37Z" - } - ] - } - }, - { - "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", - "properties": { - "accountName": "r-database-account-8895", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:29:10Z", - "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", - "creationTime": "2023-03-30T06:29:12Z", - "deletionTime": "2023-03-30T06:47:25Z" - } - ] - } - }, - { - "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", - "properties": { - "accountName": "restoredaccount-6039", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z" - } - ] - } - }, - { - "name": "53b30478-fadc-4af9-bde8-663f3793b182", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", - "properties": { - "accountName": "r-database-account-6131", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:23:46Z", - "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", - "creationTime": "2023-03-30T07:23:47Z", - "deletionTime": "2023-03-30T07:39:31Z" - } - ] - } - }, - { - "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", - "properties": { - "accountName": "r-database-account-5579", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:00:42Z", - "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", - "creationTime": "2023-03-30T08:00:43Z", - "deletionTime": "2023-03-30T08:02:03Z" - } - ] - } - }, - { - "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", - "properties": { - "accountName": "r-database-account-6802", - "apiType": "Sql", - "creationTime": "2023-03-30T08:15:53Z", - "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", - "creationTime": "2023-03-30T08:15:54Z", - "deletionTime": "2023-03-30T08:16:49Z" - } - ] - } - }, - { - "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", - "properties": { - "accountName": "r-database-account-4928", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:29:55Z", - "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", - "creationTime": "2023-03-30T08:29:56Z", - "deletionTime": "2023-03-30T08:30:59Z" - } - ] - } - }, - { - "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", - "properties": { - "accountName": "r-database-account-9554", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T08:45:00Z", - "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", - "creationTime": "2023-03-30T08:45:01Z", - "deletionTime": "2023-03-30T08:46:14Z" - } - ] - } - }, - { - "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", - "properties": { - "accountName": "r-database-account-9311", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:00:35Z", - "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", - "creationTime": "2023-03-30T09:00:36Z", - "deletionTime": "2023-03-30T09:16:50Z" - } - ] - } - }, - { - "name": "521a5d65-de37-47be-88ca-ec32b564a261", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", - "properties": { - "accountName": "r-database-account-2240", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:32:58Z", - "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", - "creationTime": "2023-03-30T09:32:59Z", - "deletionTime": "2023-03-30T09:51:38Z" - } - ] - } - }, - { - "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", - "properties": { - "accountName": "r-database-account-1851", - "apiType": "Sql", - "creationTime": "2023-03-30T10:05:27Z", - "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", - "creationTime": "2023-03-30T10:05:28Z", - "deletionTime": "2023-03-30T10:21:42Z" - } - ] - } - }, - { - "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", - "properties": { - "accountName": "r-database-account-5797", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:37:02Z", - "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", - "creationTime": "2023-03-30T10:37:04Z", - "deletionTime": "2023-03-30T10:55:19Z" - } - ] - } - }, - { - "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", - "properties": { - "accountName": "r-database-account-9560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:11:57Z", - "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", - "creationTime": "2023-03-30T11:11:58Z", - "deletionTime": "2023-03-30T11:25:05Z" - } - ] - } - }, - { - "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", - "properties": { - "accountName": "r-database-account-1767", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:41:56Z", - "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", - "creationTime": "2023-03-30T11:41:57Z", - "deletionTime": "2023-03-30T11:43:33Z" - } - ] - } - }, - { - "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", - "properties": { - "accountName": "restoredaccount-4001", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", - "properties": { - "accountName": "restoredaccount-7112", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "0370cb08-0af9-4438-b21f-405a5564b689", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", - "properties": { - "accountName": "restoredaccount-9834", - "apiType": "Sql", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "6c273b23-ae84-4945-b093-d57bca835c7c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", - "properties": { - "accountName": "restoredaccount-4009", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "17de7698-0393-4b12-ba51-99d12ba83904", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", - "properties": { - "accountName": "r-database-account-9743", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:00:07Z", - "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", - "creationTime": "2023-03-30T12:00:08Z", - "deletionTime": "2023-03-30T12:01:49Z" - } - ] - } - }, - { - "name": "987831cb-c610-4631-a650-0b6678c31649", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", - "properties": { - "accountName": "r-database-account-3771", - "apiType": "Sql", - "creationTime": "2023-03-30T12:15:11Z", - "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", - "creationTime": "2023-03-30T12:15:12Z", - "deletionTime": "2023-03-30T12:15:59Z" - } - ] - } - }, - { - "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", - "properties": { - "accountName": "r-database-account-3969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:29:18Z", - "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", - "creationTime": "2023-03-30T12:29:19Z", - "deletionTime": "2023-03-30T12:30:13Z" - } - ] - } - }, - { - "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", - "properties": { - "accountName": "r-database-account-7064", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T12:44:53Z", - "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", - "creationTime": "2023-03-30T12:44:54Z", - "deletionTime": "2023-03-30T12:46:04Z" - } - ] - } - }, - { - "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", - "properties": { - "accountName": "r-database-account-8980", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:00:40Z", - "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", - "creationTime": "2023-03-30T13:00:41Z", - "deletionTime": "2023-03-30T13:17:11Z" - } - ] - } - }, - { - "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", - "properties": { - "accountName": "r-database-account-2102", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:33:35Z", - "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", - "creationTime": "2023-03-30T13:33:36Z", - "deletionTime": "2023-03-30T13:51:57Z" - } - ] - } - }, - { - "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", - "properties": { - "accountName": "r-database-account-6294", - "apiType": "Sql", - "creationTime": "2023-03-30T14:05:48Z", - "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", - "creationTime": "2023-03-30T14:05:49Z", - "deletionTime": "2023-03-30T14:21:29Z" - } - ] - } - }, - { - "name": "86a5260e-5153-431d-8eab-af58b83494af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", - "properties": { - "accountName": "r-database-account-2370", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:35:58Z", - "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", - "creationTime": "2023-03-30T14:35:59Z", - "deletionTime": "2023-03-30T14:54:17Z" - } - ] - } - }, - { - "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", - "properties": { - "accountName": "r-database-account-3273", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:10:49Z", - "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", - "creationTime": "2023-03-30T15:10:50Z", - "deletionTime": "2023-03-30T15:24:06Z" - } - ] - } - }, - { - "name": "8246105a-a890-4491-9dd6-7292d01fea88", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", - "properties": { - "accountName": "r-database-account-3250", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:40:22Z", - "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", - "creationTime": "2023-03-30T15:40:23Z", - "deletionTime": "2023-03-30T15:41:57Z" - } - ] - } - }, - { - "name": "bbf50286-0d85-4979-9c86-63d10090b51a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", - "properties": { - "accountName": "restoredaccount-2722", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z" - } - ] - } - }, - { - "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", - "properties": { - "accountName": "restoredaccount-4323", - "apiType": "Sql", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z" - } - ] - } - }, - { - "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", - "properties": { - "accountName": "restoredaccount-2887", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z" - } - ] - } - }, - { - "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", - "properties": { - "accountName": "restoredaccount-3024", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z" - } - ] - } - }, - { - "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", - "properties": { - "accountName": "r-database-account-4043", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:31:27Z", - "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", - "creationTime": "2023-03-30T16:31:28Z", - "deletionTime": "2023-03-30T16:47:52Z" - } - ] - } - }, - { - "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", - "properties": { - "accountName": "restoredaccount-7511", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z" - } - ] - } - }, - { - "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", - "properties": { - "accountName": "r-database-account-353", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z" - } - ] - } - }, - { - "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", - "properties": { - "accountName": "r-database-account-8087", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:24:28Z", - "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", - "creationTime": "2023-03-30T17:24:29Z", - "deletionTime": "2023-03-30T17:39:50Z" - } - ] - } - }, - { - "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", - "properties": { - "accountName": "restoredaccount-560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z" - } - ] - } - }, - { - "name": "d9e2fd03-4af1-4649-98c3-65f580724594", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", - "properties": { - "accountName": "r-database-account-7446", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:08:24Z", - "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", - "creationTime": "2023-03-30T19:08:25Z", - "deletionTime": "2023-03-30T19:10:04Z" - } - ] - } - }, - { - "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", - "properties": { - "accountName": "r-database-account-8409", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:30:14Z", - "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", - "creationTime": "2023-03-30T19:30:15Z", - "deletionTime": "2023-03-30T19:46:59Z" - } - ] - } - }, - { - "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", - "properties": { - "accountName": "restoredaccount-9502", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z" - } - ] - } - }, - { - "name": "a274527e-da37-49f9-9878-cef9f55b334d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", - "properties": { - "accountName": "r-database-account-4548", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:23:16Z", - "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", - "creationTime": "2023-03-30T20:23:17Z", - "deletionTime": "2023-03-30T20:41:33Z" - } - ] - } - }, - { - "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", - "properties": { - "accountName": "restoredaccount-3745", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z" - } - ] - } - }, - { - "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", - "properties": { - "accountName": "r-database-account-2582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T21:50:24Z", - "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", - "creationTime": "2023-03-30T21:50:27Z", - "deletionTime": "2023-03-30T21:52:04Z" - } - ] - } - }, - { - "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", - "properties": { - "accountName": "r-database-account-8779", - "apiType": "Sql", - "creationTime": "2023-03-30T22:06:33Z", - "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", - "creationTime": "2023-03-30T22:06:34Z", - "deletionTime": "2023-03-30T22:07:17Z" - } - ] - } - }, - { - "name": "38947549-a1bf-4023-bc95-88dcc312797f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", - "properties": { - "accountName": "r-database-account-4386", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:20:34Z", - "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", - "creationTime": "2023-03-30T22:20:35Z", - "deletionTime": "2023-03-30T22:21:28Z" - } - ] - } - }, - { - "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", - "properties": { - "accountName": "r-database-account-3583", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T22:35:57Z", - "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", - "creationTime": "2023-03-30T22:35:58Z", - "deletionTime": "2023-03-30T22:36:47Z" - } - ] - } - }, - { - "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", - "properties": { - "accountName": "r-database-account-5053", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:51:37Z", - "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", - "creationTime": "2023-03-30T22:51:38Z", - "deletionTime": "2023-03-30T23:05:43Z" - } - ] - } - }, - { - "name": "17692a3a-23c6-428d-a13a-94657bdea47a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", - "properties": { - "accountName": "r-database-account-9618", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:22:07Z", - "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", - "creationTime": "2023-03-30T23:22:08Z", - "deletionTime": "2023-03-30T23:40:57Z" - } - ] - } - }, - { - "name": "aae41121-0386-45f5-884b-acca11a878e3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", - "properties": { - "accountName": "restoredaccount-2225", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z" - } - ] - } - }, - { - "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", - "properties": { - "accountName": "r-database-account-220", - "apiType": "Sql", - "creationTime": "2023-03-31T00:05:32Z", - "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", - "creationTime": "2023-03-31T00:05:33Z", - "deletionTime": "2023-03-31T00:21:52Z" - } - ] - } - }, - { - "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", - "properties": { - "accountName": "restoredaccount-9446", - "apiType": "Sql", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z" - } - ] - } - }, - { - "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", - "properties": { - "accountName": "r-database-account-2092", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T00:47:34Z", - "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", - "creationTime": "2023-03-31T00:47:35Z", - "deletionTime": "2023-03-31T01:05:40Z" - } - ] - } - }, - { - "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", - "properties": { - "accountName": "restoredaccount-6025", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z" - } - ] - } - }, - { - "name": "89218c06-82d7-4397-a460-2f07c20d7138", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", - "properties": { - "accountName": "r-database-account-2331", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:32:56Z", - "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", - "creationTime": "2023-03-31T01:32:57Z", - "deletionTime": "2023-03-31T01:49:23Z" - } - ] - } - }, - { - "name": "480bf65c-2961-46e6-a44c-4de49632a509", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", - "properties": { - "accountName": "restoredaccount-6086", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z" - } - ] - } - }, - { - "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", - "properties": { - "accountName": "r-database-account-3761", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T02:17:45Z", - "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", - "creationTime": "2023-03-31T02:17:46Z", - "deletionTime": "2023-03-31T02:19:03Z" - } - ] - } - }, - { - "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", - "properties": { - "accountName": "r-database-account-176", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T02:35:45Z", - "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", - "creationTime": "2023-03-31T02:35:46Z", - "deletionTime": "2023-03-31T02:37:16Z" - } - ] - } - }, - { - "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", - "properties": { - "accountName": "r-database-account-9754", - "apiType": "Sql", - "creationTime": "2023-03-31T02:51:04Z", - "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", - "creationTime": "2023-03-31T02:51:05Z", - "deletionTime": "2023-03-31T02:51:58Z" - } - ] - } - }, - { - "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", - "properties": { - "accountName": "r-database-account-3560", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:04:37Z", - "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", - "creationTime": "2023-03-31T03:04:38Z", - "deletionTime": "2023-03-31T03:05:38Z" - } - ] - } - }, - { - "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", - "properties": { - "accountName": "r-database-account-7061", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T03:21:54Z", - "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", - "creationTime": "2023-03-31T03:21:55Z", - "deletionTime": "2023-03-31T03:23:03Z" - } - ] - } - }, - { - "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", - "properties": { - "accountName": "r-database-account-6492", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:37:32Z", - "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", - "creationTime": "2023-03-31T03:37:33Z", - "deletionTime": "2023-03-31T03:51:53Z" - } - ] - } - }, - { - "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", - "properties": { - "accountName": "r-database-account-2187", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:07:50Z", - "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", - "creationTime": "2023-03-31T04:07:51Z", - "deletionTime": "2023-03-31T04:26:04Z" - } - ] - } - }, - { - "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", - "properties": { - "accountName": "restoredaccount-3749", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z" - } - ] - } - }, - { - "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", - "properties": { - "accountName": "r-database-account-1319", - "apiType": "Sql", - "creationTime": "2023-03-31T04:51:37Z", - "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", - "creationTime": "2023-03-31T04:51:38Z", - "deletionTime": "2023-03-31T05:08:00Z" - } - ] - } - }, - { - "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", - "properties": { - "accountName": "restoredaccount-949", - "apiType": "Sql", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z" - } - ] - } - }, - { - "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", - "properties": { - "accountName": "r-database-account-3444", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:33:47Z", - "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", - "creationTime": "2023-03-31T05:33:48Z", - "deletionTime": "2023-03-31T05:52:04Z" - } - ] - } - }, - { - "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", - "properties": { - "accountName": "restoredaccount-8369", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z" - } - ] - } - }, - { - "name": "a6938641-f254-423b-877a-01a80f789530", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", - "properties": { - "accountName": "r-database-account-4184", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:20:37Z", - "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", - "creationTime": "2023-03-31T06:20:38Z", - "deletionTime": "2023-03-31T06:36:54Z" - } - ] - } - }, - { - "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", - "properties": { - "accountName": "restoredaccount-8230", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z" - } - ] - } - }, - { - "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", - "properties": { - "accountName": "r-database-account-9421", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:10:08Z", - "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", - "creationTime": "2023-03-31T07:10:09Z", - "deletionTime": "2023-03-31T07:27:01Z" - } - ] - } - }, - { - "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", - "properties": { - "accountName": "restoredaccount-2737", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z" - } - ] - } - }, - { - "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", - "properties": { - "accountName": "r-database-account-4921", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:56:33Z", - "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", - "creationTime": "2023-03-31T07:56:34Z", - "deletionTime": "2023-03-31T07:58:09Z" - } - ] - } - }, - { - "name": "bea1d046-d612-49e3-b64c-3e82a216987a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", - "properties": { - "accountName": "r-database-account-4832", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:15:55Z", - "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", - "creationTime": "2023-03-31T08:15:57Z", - "deletionTime": "2023-03-31T08:33:06Z" - } - ] - } - }, - { - "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", - "properties": { - "accountName": "restoredaccount-9360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z" - } - ] - } - }, - { - "name": "9e6527c2-ded9-493a-9086-df70877c305d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", - "properties": { - "accountName": "r-database-account-7247", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T09:00:28Z", - "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", - "creationTime": "2023-03-31T09:00:29Z", - "deletionTime": "2023-03-31T09:01:48Z" - } - ] - } - }, - { - "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", - "properties": { - "accountName": "r-database-account-2911", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:04:29Z", - "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", - "creationTime": "2023-03-31T15:04:30Z", - "deletionTime": "2023-03-31T15:05:51Z" - } - ] - } - }, - { - "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", - "properties": { - "accountName": "r-database-account-7482", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:22:06Z", - "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", - "creationTime": "2023-03-31T15:22:08Z", - "deletionTime": "2023-03-31T15:23:48Z" - } - ] - } - }, - { - "name": "c739e02a-8d12-44a1-9b43-72dee580e901", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", - "properties": { - "accountName": "r-database-account-2396", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:34:52Z", - "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", - "creationTime": "2023-04-04T16:34:53Z", - "deletionTime": "2023-04-04T16:36:27Z" - } - ] - } - }, - { - "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", - "properties": { - "accountName": "r-database-account-2962", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:56:08Z", - "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", - "creationTime": "2023-04-04T16:56:09Z", - "deletionTime": "2023-04-04T16:57:51Z" - } - ] - } - }, - { - "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", - "properties": { - "accountName": "r-database-account-2963", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:15:44Z", - "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", - "creationTime": "2023-04-04T17:15:45Z", - "deletionTime": "2023-04-04T17:17:16Z" - } - ] - } - }, - { - "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", - "properties": { - "accountName": "r-database-account-6481", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:49:37Z", - "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", - "creationTime": "2023-04-04T17:49:38Z", - "deletionTime": "2023-04-04T17:51:33Z" - } - ] - } - }, - { - "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", - "properties": { - "accountName": "r-database-account-5265", - "apiType": "Sql", - "creationTime": "2023-04-04T18:05:44Z", - "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", - "creationTime": "2023-04-04T18:05:45Z", - "deletionTime": "2023-04-04T18:06:15Z" - } - ] - } - }, - { - "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", - "properties": { - "accountName": "r-database-account-2888", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:48:32Z", - "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", - "creationTime": "2023-04-04T18:48:33Z", - "deletionTime": "2023-04-04T18:50:14Z" - } - ] - } - }, - { - "name": "ad1760ce-6137-41f0-843a-84a233b507fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", - "properties": { - "accountName": "r-database-account-3827", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:16:39Z", - "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", - "creationTime": "2023-04-04T19:16:40Z", - "deletionTime": "2023-04-04T19:18:14Z" - } - ] - } - }, - { - "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", - "properties": { - "accountName": "r-database-account-7735", - "apiType": "Sql", - "creationTime": "2023-04-04T19:32:03Z", - "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", - "creationTime": "2023-04-04T19:32:04Z", - "deletionTime": "2023-04-04T19:33:01Z" - } - ] - } - }, - { - "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", - "properties": { - "accountName": "r-database-account-1093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:46:39Z", - "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", - "creationTime": "2023-04-04T19:46:40Z", - "deletionTime": "2023-04-04T19:47:45Z" - } - ] - } - }, - { - "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", - "properties": { - "accountName": "r-database-account-5066", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z" - } - ] - } - }, - { - "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", - "properties": { - "accountName": "r-database-account-1835", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:17:28Z", - "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", - "creationTime": "2023-04-04T20:17:29Z", - "deletionTime": "2023-04-04T20:34:14Z" - } - ] - } - }, - { - "name": "cb2e954a-4e71-425a-b780-25555527fc7b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", - "properties": { - "accountName": "restoredaccount-5931", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z" - } - ] - } - }, - { - "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", - "properties": { - "accountName": "r-database-account-8394", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:02:22Z", - "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", - "creationTime": "2023-04-04T21:02:23Z", - "deletionTime": "2023-04-04T21:20:17Z" - } - ] - } - }, - { - "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", - "properties": { - "accountName": "r-database-account-5571", - "apiType": "Sql", - "creationTime": "2023-04-04T21:44:41Z", - "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", - "creationTime": "2023-04-04T21:44:42Z", - "deletionTime": "2023-04-04T21:45:35Z" - } - ] - } - }, - { - "name": "987588f7-7709-4336-aa45-223395911848", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", - "properties": { - "accountName": "r-database-account-1689", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:09:17Z", - "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", - "creationTime": "2023-04-04T22:09:19Z", - "deletionTime": "2023-04-04T22:10:56Z" - } - ] - } - }, - { - "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", - "properties": { - "accountName": "r-database-account-4876", - "apiType": "Sql", - "creationTime": "2023-04-04T22:24:45Z", - "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", - "creationTime": "2023-04-04T22:24:46Z", - "deletionTime": "2023-04-04T22:25:39Z" - } - ] - } - }, - { - "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", - "properties": { - "accountName": "r-database-account-3793", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:38:37Z", - "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", - "creationTime": "2023-04-04T22:38:38Z", - "deletionTime": "2023-04-04T22:39:26Z" - } - ] - } - }, - { - "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", - "properties": { - "accountName": "r-database-account-2846", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T22:54:10Z", - "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", - "creationTime": "2023-04-04T22:54:11Z", - "deletionTime": "2023-04-04T22:55:15Z" - } - ] - } - }, - { - "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", - "properties": { - "accountName": "r-database-account-121", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:09:10Z", - "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", - "creationTime": "2023-04-04T23:09:11Z", - "deletionTime": "2023-04-04T23:26:11Z" - } - ] - } - }, - { - "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", - "properties": { - "accountName": "restoredaccount-7907", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z" - } - ] - } - }, - { - "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", - "properties": { - "accountName": "r-database-account-5836", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:53:57Z", - "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", - "creationTime": "2023-04-04T23:53:58Z", - "deletionTime": "2023-04-05T00:12:42Z" - } - ] - } - }, - { - "name": "eda15431-8fd3-434e-a724-6478d0d766b0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", - "properties": { - "accountName": "restoredaccount-2781", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z" - } - ] - } - }, - { - "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", - "properties": { - "accountName": "r-database-account-886", - "apiType": "Sql", - "creationTime": "2023-04-05T00:38:08Z", - "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", - "creationTime": "2023-04-05T00:38:09Z", - "deletionTime": "2023-04-05T00:55:26Z" - } - ] - } - }, - { - "name": "0461674a-5302-4644-8006-15273be1dd01", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", - "properties": { - "accountName": "restoredaccount-1331", - "apiType": "Sql", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z" - } - ] - } - }, - { - "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", - "properties": { - "accountName": "r-database-account-5720", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:20:43Z", - "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", - "creationTime": "2023-04-05T01:20:44Z", - "deletionTime": "2023-04-05T01:39:46Z" - } - ] - } - }, - { - "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", - "properties": { - "accountName": "restoredaccount-3222", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z" - } - ] - } - }, - { - "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", - "properties": { - "accountName": "r-database-account-7279", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:07:38Z", - "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", - "creationTime": "2023-04-05T02:07:39Z", - "deletionTime": "2023-04-05T02:24:18Z" - } - ] - } - }, - { - "name": "3364799a-fb66-48f3-b389-45af2e775bd2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", - "properties": { - "accountName": "restoredaccount-2694", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z" - } - ] - } - }, - { - "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "properties": { - "accountName": "r-database-account-2111", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:52:15Z", - "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", - "creationTime": "2023-04-05T02:52:16Z", - "deletionTime": "2023-04-05T02:53:42Z" - } - ] - } - }, - { - "name": "1275f66f-c69b-4813-9b61-901e1ec451af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", - "properties": { - "accountName": "r-database-account-4270", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:09:42Z", - "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", - "creationTime": "2023-04-05T03:09:43Z", - "deletionTime": "2023-04-05T03:11:28Z" - } - ] - } - }, - { - "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", - "properties": { - "accountName": "r-database-account-6226", - "apiType": "Sql", - "creationTime": "2023-04-05T03:25:14Z", - "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", - "creationTime": "2023-04-05T03:25:15Z", - "deletionTime": "2023-04-05T03:26:12Z" - } - ] - } - }, - { - "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", - "properties": { - "accountName": "r-database-account-4472", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:39:46Z", - "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", - "creationTime": "2023-04-05T03:39:47Z", - "deletionTime": "2023-04-05T03:40:55Z" - } - ] - } - }, - { - "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", - "properties": { - "accountName": "r-database-account-5112", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T03:56:41Z", - "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", - "creationTime": "2023-04-05T03:56:42Z", - "deletionTime": "2023-04-05T03:57:47Z" - } - ] - } - }, - { - "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", - "properties": { - "accountName": "r-database-account-8806", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:11:45Z", - "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", - "creationTime": "2023-04-05T04:11:47Z", - "deletionTime": "2023-04-05T04:37:16Z" - } - ] - } - }, - { - "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", - "properties": { - "accountName": "restoredaccount-6850", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "fcd234fa-a27c-4150-9595-d0db433584e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", - "properties": { - "accountName": "r-database-account-705", - "apiType": "Sql", - "creationTime": "2023-04-05T05:56:56Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", - "creationTime": "2023-04-05T05:56:57Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", - "properties": { - "accountName": "r-database-account-4894", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:13:31Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", - "creationTime": "2023-04-05T06:13:32Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", - "properties": { - "accountName": "r-database-account-3212", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T06:08:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", - "creationTime": "2023-04-05T06:08:09Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", - "properties": { - "accountName": "r-database-account-9540", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:53:04Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", - "creationTime": "2023-04-05T05:53:05Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", - "properties": { - "accountName": "r-database-account-4658", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:02:37Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", - "creationTime": "2023-04-05T06:02:38Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", - "properties": { - "accountName": "r-database-account-3189", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:35:19Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", - "creationTime": "2023-04-05T06:35:20Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", - "properties": { - "accountName": "restoredaccount-7747", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z" - } - ] - } - }, - { - "name": "adc4a343-1599-470d-abcc-d951fdd50f37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", - "properties": { - "accountName": "r-database-account-3312", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:13:48Z", - "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", - "creationTime": "2023-04-04T17:13:49Z", - "deletionTime": "2023-04-05T06:56:38Z" - } - ] - } - }, - { - "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", - "properties": { - "accountName": "r-database-account-5846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:44:23Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", - "creationTime": "2023-04-04T21:44:25Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", - "properties": { - "accountName": "r-database-account-2760", - "apiType": "Sql", - "creationTime": "2023-04-04T21:33:57Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", - "creationTime": "2023-04-04T21:33:58Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "9ce35a43-8b24-4060-a058-191f976df7c1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", - "properties": { - "accountName": "restoredaccount-9271", - "apiType": "Sql", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", - "properties": { - "accountName": "r-database-account-9266", - "apiType": "Sql", - "creationTime": "2023-03-29T07:47:00Z", - "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", - "creationTime": "2023-03-29T07:47:01Z", - "deletionTime": "2023-04-05T06:58:41Z" - } - ] - } - }, - { - "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", - "properties": { - "accountName": "r-database-account-641", - "apiType": "Sql", - "creationTime": "2023-03-29T04:26:01Z", - "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", - "creationTime": "2023-03-29T04:26:02Z", - "deletionTime": "2023-04-05T06:59:03Z" - } - ] - } - }, - { - "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", - "properties": { - "accountName": "r-database-account-3287", - "apiType": "Sql", - "creationTime": "2023-03-29T07:55:06Z", - "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", - "creationTime": "2023-03-29T07:55:07Z", - "deletionTime": "2023-04-05T07:00:47Z" - } - ] - } - }, - { - "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", - "properties": { - "accountName": "r-database-account-3926", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:08:41Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", - "creationTime": "2023-03-29T17:08:42Z", - "deletionTime": "2023-04-05T07:01:53Z" - } - ] - } - }, - { - "name": "92ce3190-d16b-438f-9791-b2254a597435", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", - "properties": { - "accountName": "r-database-account-1530", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:05:13Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", - "creationTime": "2023-03-31T07:05:14Z", - "deletionTime": "2023-04-05T07:01:53Z" - } - ] - } - }, - { - "name": "c5934152-2095-41b0-9962-72be301ec23c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", - "properties": { - "accountName": "r-database-account-1333", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:09:38Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", - "creationTime": "2023-03-30T07:09:40Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", - "properties": { - "accountName": "r-database-account-2197", - "apiType": "Sql", - "creationTime": "2023-03-29T04:24:10Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", - "creationTime": "2023-03-29T04:24:11Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", - "properties": { - "accountName": "r-database-account-4608", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T00:10:43Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", - "creationTime": "2023-03-30T00:10:44Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", - "properties": { - "accountName": "r-database-account-4659", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:19:29Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", - "creationTime": "2023-04-04T18:19:30Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", - "properties": { - "accountName": "r-database-account-5637", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:25:03Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", - "creationTime": "2023-03-30T16:25:04Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", - "properties": { - "accountName": "r-database-account-5467", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:53:26Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", - "creationTime": "2023-04-05T04:53:27Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "401f849e-50e6-483b-813a-1a5f1059006c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", - "properties": { - "accountName": "r-database-account-5933", - "apiType": "Sql", - "creationTime": "2023-04-04T19:13:48Z", - "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", - "creationTime": "2023-04-04T19:13:49Z", - "deletionTime": "2023-04-05T07:01:55Z" - } - ] - } - }, - { - "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", - "properties": { - "accountName": "r-database-account-1535", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:20:58Z", - "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", - "creationTime": "2023-03-30T20:21:00Z", - "deletionTime": "2023-04-05T07:01:58Z" - } - ] - } - }, - { - "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", - "properties": { - "accountName": "r-database-account-5305", - "apiType": "Sql", - "creationTime": "2023-03-29T02:15:48Z", - "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", - "creationTime": "2023-03-29T02:15:49Z", - "deletionTime": "2023-04-05T07:02:00Z" - } - ] - } - }, - { - "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", - "properties": { - "accountName": "restoredaccount-590", - "apiType": "Sql", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", - "properties": { - "accountName": "restoredaccount-3736", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "af699620-0019-4a6b-ad59-e7c6381814ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", - "properties": { - "accountName": "restoredaccount-7822", - "apiType": "Sql", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", - "properties": { - "accountName": "restoredaccount-5262", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z" - } - ] - } - }, - { - "name": "05442da3-1214-4c48-9883-b06ab54491dd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", - "properties": { - "accountName": "r-database-account-6510", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:12:03Z", - "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", - "creationTime": "2023-04-05T16:12:04Z", - "deletionTime": "2023-04-05T16:13:54Z" - } - ] - } - }, - { - "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", - "properties": { - "accountName": "r-database-account-6751", - "apiType": "Sql", - "creationTime": "2023-04-05T16:17:14Z", - "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", - "creationTime": "2023-04-05T16:17:16Z", - "deletionTime": "2023-04-05T16:17:54Z" - } - ] - } - }, - { - "name": "554b58bc-ad47-4031-9100-02ef15baa510", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", - "properties": { - "accountName": "r-database-account-3896", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:22:51Z", - "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", - "creationTime": "2023-04-05T16:22:52Z", - "deletionTime": "2023-04-05T16:24:03Z" - } - ] - } - }, - { - "name": "d97105e7-6a53-435f-9219-21b7e6ace085", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", - "properties": { - "accountName": "r-database-account-8009", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T16:28:41Z", - "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", - "creationTime": "2023-04-05T16:28:42Z", - "deletionTime": "2023-04-05T16:29:40Z" - } - ] - } - }, - { - "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", - "properties": { - "accountName": "r-database-account-5770", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:34:14Z", - "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", - "creationTime": "2023-04-05T16:34:15Z", - "deletionTime": "2023-04-05T16:51:55Z" - } - ] - } - }, - { - "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", - "properties": { - "accountName": "restoredaccount-4079", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z" - } - ] - } - }, - { - "name": "a181c3ee-171b-4481-b30c-623238c24d41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", - "properties": { - "accountName": "restoredaccount-5402", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z" - } - ] - } - }, - { - "name": "115d217b-1e58-4653-af7e-756be6313d6e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", - "properties": { - "accountName": "r-database-account-5935", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:56:31Z", - "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", - "creationTime": "2023-04-05T16:56:32Z", - "deletionTime": "2023-04-05T17:15:52Z" - } - ] - } - }, - { - "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", - "properties": { - "accountName": "r-database-account-339", - "apiType": "Sql", - "creationTime": "2023-04-05T17:17:47Z", - "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", - "creationTime": "2023-04-05T17:17:48Z", - "deletionTime": "2023-04-05T17:34:52Z" - } - ] - } - }, - { - "name": "4350889f-8316-4611-8c7b-0de037f83cb3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", - "properties": { - "accountName": "restoredaccount-6292", - "apiType": "Sql", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z" - } - ] - } - }, - { - "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", - "properties": { - "accountName": "r-database-account-8514", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:39:47Z", - "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", - "creationTime": "2023-04-05T17:39:48Z", - "deletionTime": "2023-04-05T17:58:43Z" - } - ] - } - }, - { - "name": "e39d66a9-028e-499d-b488-fde2e53814c5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", - "properties": { - "accountName": "restoredaccount-9641", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z" - } - ] - } - }, - { - "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", - "properties": { - "accountName": "restoredaccount-2652", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z" - } - ] - } - }, - { - "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", - "properties": { - "accountName": "r-database-account-20", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:03:36Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", - "creationTime": "2023-04-05T18:03:37Z", - "deletionTime": "2023-04-05T18:21:00Z" - } - ] - } - }, - { - "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", - "properties": { - "accountName": "r-database-account-727", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:25:45Z", - "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", - "creationTime": "2023-04-05T18:25:47Z", - "deletionTime": "2023-04-05T18:27:03Z" - } - ] - } - }, - { - "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", - "properties": { - "accountName": "r-database-account-2209", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:38:04Z", - "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", - "creationTime": "2023-04-05T18:38:05Z", - "deletionTime": "2023-04-05T18:40:00Z" - } - ] - } - }, - { - "name": "e106c7e7-2828-4193-b125-0540ec42f85a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", - "properties": { - "accountName": "r-grem-db-account-3109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:20Z", - "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", - "creationTime": "2023-04-05T19:15:21Z", - "deletionTime": "2023-04-05T19:17:06Z" - } - ] - } - }, - { - "name": "19b77f33-9070-4bea-89ec-83ad22c59136", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", - "properties": { - "accountName": "r-grem-db-account-3153", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:32:53Z", - "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", - "creationTime": "2023-04-05T19:32:54Z", - "deletionTime": "2023-04-05T19:33:59Z" - } - ] - } - }, - { - "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", - "properties": { - "accountName": "r-grem-db-account-6612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:47:56Z", - "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", - "creationTime": "2023-04-05T19:47:57Z", - "deletionTime": "2023-04-05T20:04:52Z" - } - ] - } - }, - { - "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", - "properties": { - "accountName": "restoredaccount-5075", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z" - } - ] - } - }, - { - "name": "57958516-07cd-498b-b42b-d8bbde38fc72", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", - "properties": { - "accountName": "r-grem-db-account-2460", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:32:03Z", - "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", - "creationTime": "2023-04-05T20:32:04Z", - "deletionTime": "2023-04-05T20:52:58Z" - } - ] - } - }, - { - "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", - "properties": { - "accountName": "restoredaccount-9191", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z" - } - ] - } - }, - { - "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", - "properties": { - "accountName": "r-grem-db-account-917", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:20:40Z", - "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", - "creationTime": "2023-04-05T21:20:41Z", - "deletionTime": "2023-04-05T21:22:32Z" - } - ] - } - }, - { - "name": "d8af4291-a857-435c-9e68-add9be61e3e3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", - "properties": { - "accountName": "r-grem-db-account-4408", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:38:27Z", - "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", - "creationTime": "2023-04-05T21:38:28Z", - "deletionTime": "2023-04-05T21:39:23Z" - } - ] - } - }, - { - "name": "2348e86d-d845-4023-a61c-52a7c4998681", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", - "properties": { - "accountName": "r-grem-db-account-3493", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:53:12Z", - "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", - "creationTime": "2023-04-05T21:53:13Z", - "deletionTime": "2023-04-05T22:10:15Z" - } - ] - } - }, - { - "name": "10d05397-ea2c-4d64-a325-da1097b67a30", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", - "properties": { - "accountName": "restoredaccount-7617", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z" - } - ] - } - }, - { - "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", - "properties": { - "accountName": "r-grem-db-account-4657", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:37:57Z", - "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", - "creationTime": "2023-04-05T22:37:58Z", - "deletionTime": "2023-04-05T22:57:18Z" - } - ] - } - }, - { - "name": "b9c23cc0-13f3-4895-8534-809a00376677", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", - "properties": { - "accountName": "restoredaccount-1097", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z" - } - ] - } - }, - { - "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", - "properties": { - "accountName": "r-table-account-4377", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:25:55Z", - "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", - "creationTime": "2023-04-05T23:25:56Z", - "deletionTime": "2023-04-05T23:27:10Z" - } - ] - } - }, - { - "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", - "properties": { - "accountName": "r-table-account-1415", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:41:00Z", - "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", - "creationTime": "2023-04-05T23:41:01Z", - "deletionTime": "2023-04-05T23:59:07Z" - } - ] - } - }, - { - "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", - "properties": { - "accountName": "restoredaccount-5386", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z" - } - ] - } - }, - { - "name": "701f814c-13b7-4144-b75c-52946e6946cb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", - "properties": { - "accountName": "r-table-account-6354", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:26:22Z", - "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", - "creationTime": "2023-04-06T00:26:23Z", - "deletionTime": "2023-04-06T00:43:42Z" - } - ] - } - }, - { - "name": "a96f997d-2cbf-4a64-b917-c776e6908601", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", - "properties": { - "accountName": "restoredaccount-3726", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z" - } - ] - } - }, - { - "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", - "properties": { - "accountName": "r-table-account-6883", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:10:50Z", - "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", - "creationTime": "2023-04-06T01:10:51Z", - "deletionTime": "2023-04-06T01:12:24Z" - } - ] - } - }, - { - "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", - "properties": { - "accountName": "r-table-account-5301", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:30:03Z", - "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", - "creationTime": "2023-04-06T01:30:04Z", - "deletionTime": "2023-04-06T01:31:00Z" - } - ] - } - }, - { - "name": "999e9d75-47c8-4230-8a4e-677ee461269b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", - "properties": { - "accountName": "r-database-account-3960", - "apiType": "Sql", - "creationTime": "2023-04-06T02:16:51Z", - "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", - "creationTime": "2023-04-06T02:16:52Z", - "deletionTime": "2023-04-06T02:17:49Z" - } - ] - } - }, - { - "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", - "properties": { - "accountName": "r-database-account-6028", - "apiType": "Sql", - "creationTime": "2023-04-06T02:27:53Z", - "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", - "creationTime": "2023-04-06T02:27:54Z", - "deletionTime": "2023-04-06T02:44:39Z" - } - ] - } - }, - { - "name": "3065e921-a49b-43d6-84aa-037f18987a23", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", - "properties": { - "accountName": "restoredaccount-7075", - "apiType": "Sql", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z" - } - ] - } - }, - { - "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", - "properties": { - "accountName": "r-database-account-5983", - "apiType": "Sql", - "creationTime": "2023-04-06T03:09:16Z", - "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", - "creationTime": "2023-04-06T03:09:18Z", - "deletionTime": "2023-04-06T03:10:13Z" - } - ] - } - }, - { - "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", - "properties": { - "accountName": "r-database-account-7214", - "apiType": "Sql", - "creationTime": "2023-04-06T03:20:49Z", - "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", - "creationTime": "2023-04-06T03:20:50Z", - "deletionTime": "2023-04-06T03:37:02Z" - } - ] - } - }, - { - "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", - "properties": { - "accountName": "restoredaccount-1487", - "apiType": "Sql", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z" - } - ] - } - }, - { - "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", - "properties": { - "accountName": "r-table-account-2891", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:02:47Z", - "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", - "creationTime": "2023-04-06T04:02:48Z", - "deletionTime": "2023-04-06T04:03:49Z" - } - ] - } - }, - { - "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", - "properties": { - "accountName": "r-table-account-7603", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:18:01Z", - "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", - "creationTime": "2023-04-06T04:18:02Z", - "deletionTime": "2023-04-06T04:36:17Z" - } - ] - } - }, - { - "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", - "properties": { - "accountName": "restoredaccount-1355", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z" - } - ] - } - }, - { - "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", - "properties": { - "accountName": "r-table-account-6373", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:05:15Z", - "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", - "creationTime": "2023-04-06T05:05:16Z", - "deletionTime": "2023-04-06T05:22:50Z" - } - ] - } - }, - { - "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", - "properties": { - "accountName": "restoredaccount-665", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z" - } - ] - } - }, - { - "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", - "properties": { - "accountName": "r-table-account-1188", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:50:20Z", - "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", - "creationTime": "2023-04-06T05:50:21Z", - "deletionTime": "2023-04-06T05:52:03Z" - } - ] - } - }, - { - "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", - "properties": { - "accountName": "r-table-account-5261", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:08:10Z", - "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", - "creationTime": "2023-04-06T06:08:11Z", - "deletionTime": "2023-04-06T06:09:02Z" - } - ] - } - }, - { - "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", - "properties": { - "accountName": "r-grem-db-account-723", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:39:44Z", - "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", - "creationTime": "2023-04-06T06:39:45Z", - "deletionTime": "2023-04-06T06:41:33Z" - } - ] - } - }, - { - "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", - "properties": { - "accountName": "r-grem-db-account-7969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:58:36Z", - "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", - "creationTime": "2023-04-06T06:58:37Z", - "deletionTime": "2023-04-06T06:59:36Z" - } - ] - } - }, - { - "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", - "properties": { - "accountName": "r-grem-db-account-2577", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:15:43Z", - "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", - "creationTime": "2023-04-06T07:15:45Z", - "deletionTime": "2023-04-06T07:33:07Z" - } - ] - } - }, - { - "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", - "properties": { - "accountName": "restoredaccount-693", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z" - } - ] - } - }, - { - "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", - "properties": { - "accountName": "r-grem-db-account-4601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:00:25Z", - "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", - "creationTime": "2023-04-06T08:00:26Z", - "deletionTime": "2023-04-06T08:20:12Z" - } - ] - } - }, - { - "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", - "properties": { - "accountName": "restoredaccount-1430", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z" - } - ] - } - }, - { - "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", - "properties": { - "accountName": "r-grem-db-account-7507", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:48:00Z", - "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", - "creationTime": "2023-04-06T08:48:01Z", - "deletionTime": "2023-04-06T08:49:48Z" - } - ] - } - }, - { - "name": "a8bfadea-a883-491c-8311-3202491cfe5d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", - "properties": { - "accountName": "r-grem-db-account-2606", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:05:50Z", - "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", - "creationTime": "2023-04-06T09:05:51Z", - "deletionTime": "2023-04-06T09:06:43Z" - } - ] - } - }, - { - "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", - "properties": { - "accountName": "r-grem-db-account-6681", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:21:06Z", - "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", - "creationTime": "2023-04-06T09:21:07Z", - "deletionTime": "2023-04-06T09:38:10Z" - } - ] - } - }, - { - "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", - "properties": { - "accountName": "restoredaccount-4215", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z" - } - ] - } - }, - { - "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", - "properties": { - "accountName": "r-grem-db-account-846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:06:04Z", - "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", - "creationTime": "2023-04-06T10:06:06Z", - "deletionTime": "2023-04-06T10:25:18Z" - } - ] - } - }, - { - "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", - "properties": { - "accountName": "restoredaccount-5193", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z" - } - ] - } - }, - { - "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", - "properties": { - "accountName": "r-table-account-6567", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T10:53:20Z", - "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", - "creationTime": "2023-04-06T10:53:21Z", - "deletionTime": "2023-04-06T10:54:04Z" - } - ] - } - }, - { - "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", - "properties": { - "accountName": "r-table-account-6921", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:08:49Z", - "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", - "creationTime": "2023-04-06T11:08:51Z", - "deletionTime": "2023-04-06T11:27:03Z" - } - ] - } - }, - { - "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", - "properties": { - "accountName": "restoredaccount-7286", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z" - } - ] - } - }, - { - "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", - "properties": { - "accountName": "r-table-account-5254", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:54:50Z", - "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", - "creationTime": "2023-04-06T11:54:51Z", - "deletionTime": "2023-04-06T12:11:56Z" - } - ] - } - }, - { - "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", - "properties": { - "accountName": "restoredaccount-6482", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z" - } - ] - } - }, - { - "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", - "properties": { - "accountName": "r-table-account-7579", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:39:46Z", - "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", - "creationTime": "2023-04-06T12:39:48Z", - "deletionTime": "2023-04-06T12:41:09Z" - } - ] - } - }, - { - "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", - "properties": { - "accountName": "cliz2xezqib6sfs", - "apiType": "Sql", - "creationTime": "2023-04-06T17:48:58Z", - "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", - "creationTime": "2023-04-06T17:48:59Z", - "deletionTime": "2023-04-06T17:51:37Z" - } - ] - } - }, - { - "name": "d4eb1a5c-fa82-416b-8765-73105541441a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", - "properties": { - "accountName": "climxyj6ppdtdi3", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:23Z", - "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", - "creationTime": "2023-04-06T17:50:24Z", - "deletionTime": "2023-04-06T17:53:09Z" - } - ] - } - }, - { - "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", - "properties": { - "accountName": "clinhlpp5ltdx45", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:16Z", - "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", - "creationTime": "2023-04-06T17:50:17Z", - "deletionTime": "2023-04-06T17:53:35Z" - } - ] - } - }, - { - "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", - "properties": { - "accountName": "clicvlfgrzahmvn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:25Z", - "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T17:54:37Z" - } - ] - } - }, - { - "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", - "properties": { - "accountName": "cli3hfttbxzir22", - "apiType": "Sql", - "creationTime": "2023-04-06T17:53:13Z", - "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", - "creationTime": "2023-04-06T17:53:14Z", - "deletionTime": "2023-04-06T17:55:25Z" - } - ] - } - }, - { - "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", - "properties": { - "accountName": "clioyp6agdkdrvk", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:56:23Z", - "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", - "creationTime": "2023-04-06T17:56:24Z", - "deletionTime": "2023-04-06T17:58:30Z" - } - ] - } - }, - { - "name": "c4ce576d-4033-4b12-a450-daa13093cf34", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", - "properties": { - "accountName": "clipniczjve2l4q", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:56:45Z", - "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", - "creationTime": "2023-04-06T17:56:46Z", - "deletionTime": "2023-04-06T17:58:52Z" - } - ] - } - }, - { - "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", - "properties": { - "accountName": "clitae37flgxvip", - "apiType": "Sql", - "creationTime": "2023-04-06T17:57:03Z", - "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", - "creationTime": "2023-04-06T17:57:04Z", - "deletionTime": "2023-04-06T17:58:56Z" - } - ] - } - }, - { - "name": "16cd72d1-8782-4faa-9e06-263055e4a852", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", - "properties": { - "accountName": "cliqeiwdwhcytpv", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:06Z", - "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", - "creationTime": "2023-04-06T18:02:07Z", - "deletionTime": "2023-04-06T18:02:32Z" - } - ] - } - }, - { - "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", - "properties": { - "accountName": "cling2ssmapqjtb", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:20Z", - "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", - "creationTime": "2023-04-06T18:02:21Z", - "deletionTime": "2023-04-06T18:03:00Z" - } - ] - } - }, - { - "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", - "properties": { - "accountName": "clic7r4mbsoucoq", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", - "creationTime": "2023-04-06T17:50:27Z", - "deletionTime": "2023-04-06T18:04:54Z" - } - ] - } - }, - { - "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", - "properties": { - "accountName": "cli6dll5uxhswmo", - "apiType": "Sql", - "creationTime": "2023-04-06T17:49:07Z", - "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", - "creationTime": "2023-04-06T17:49:08Z", - "deletionTime": "2023-04-06T18:08:24Z" - } - ] - } - }, - { - "name": "12fd85da-0738-45bc-a4ca-3576006082e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", - "properties": { - "accountName": "restoredaccount-7559", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z" - } - ] - } - }, - { - "name": "730730ee-ee98-48bf-9c87-a38abac5781d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", - "properties": { - "accountName": "r-grem-db-account-3799", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:54:33Z", - "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", - "creationTime": "2023-04-06T17:54:34Z", - "deletionTime": "2023-04-06T18:11:45Z" - } - ] - } - }, - { - "name": "a331a0ab-07a6-4831-827d-30e513076c75", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", - "properties": { - "accountName": "r-grem-db-account-8345", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:39Z", - "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", - "creationTime": "2023-04-06T18:35:40Z", - "deletionTime": "2023-04-06T18:52:37Z" - } - ] - } - }, - { - "name": "c20213cc-0b64-4141-abdc-45f028e756fd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", - "properties": { - "accountName": "restoredaccount-3447", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z" - } - ] - } - }, - { - "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", - "properties": { - "accountName": "r-grem-db-account-6227", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:23:52Z", - "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", - "creationTime": "2023-04-06T19:23:53Z", - "deletionTime": "2023-04-06T19:41:19Z" - } - ] - } - }, - { - "name": "4228ce2e-f496-4131-a7b4-a093f4644646", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", - "properties": { - "accountName": "restoredaccount-601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z" - } - ] - } - }, - { - "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", - "properties": { - "accountName": "r-database-account-3957", - "apiType": "Sql", - "creationTime": "2023-04-06T20:07:56Z", - "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", - "creationTime": "2023-04-06T20:07:57Z", - "deletionTime": "2023-04-06T20:08:54Z" - } - ] - } - }, - { - "name": "53ad2502-1710-406d-84e3-296fce5bd44a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", - "properties": { - "accountName": "r-database-account-9163", - "apiType": "Sql", - "creationTime": "2023-04-06T20:19:51Z", - "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", - "creationTime": "2023-04-06T20:19:52Z", - "deletionTime": "2023-04-06T20:36:03Z" - } - ] - } - }, - { - "name": "70ea9f86-be31-455a-b5be-791409c2b437", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", - "properties": { - "accountName": "restoredaccount-7173", - "apiType": "Sql", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z" - } - ] - } - }, - { - "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", - "properties": { - "accountName": "r-database-account-3610", - "apiType": "Sql", - "creationTime": "2023-04-06T21:00:14Z", - "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", - "creationTime": "2023-04-06T21:00:15Z", - "deletionTime": "2023-04-06T21:01:06Z" - } - ] - } - }, - { - "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", - "properties": { - "accountName": "r-database-account-2590", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:43Z", - "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", - "creationTime": "2023-04-06T21:11:44Z", - "deletionTime": "2023-04-06T21:29:03Z" - } - ] - } - }, - { - "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", - "properties": { - "accountName": "restoredaccount-5783", - "apiType": "Sql", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z" - } - ] - } - }, - { - "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", - "properties": { - "accountName": "r-grem-db-account-360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T21:54:18Z", - "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", - "creationTime": "2023-04-06T21:54:19Z", - "deletionTime": "2023-04-06T21:55:57Z" - } - ] - } - }, - { - "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", - "properties": { - "accountName": "r-grem-db-account-5702", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:13:06Z", - "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", - "creationTime": "2023-04-06T22:13:07Z", - "deletionTime": "2023-04-06T22:13:57Z" - } - ] - } - }, - { - "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", - "properties": { - "accountName": "r-grem-db-account-7080", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:28:25Z", - "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", - "creationTime": "2023-04-06T22:28:26Z", - "deletionTime": "2023-04-06T22:45:55Z" - } - ] - } - }, - { - "name": "0045cc2f-f262-44f7-94be-a8a81258114b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", - "properties": { - "accountName": "restoredaccount-3266", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z" - } - ] - } - }, - { - "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", - "properties": { - "accountName": "r-grem-db-account-8379", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:13:12Z", - "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", - "creationTime": "2023-04-06T23:13:14Z", - "deletionTime": "2023-04-06T23:33:31Z" - } - ] - } - }, - { - "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", - "properties": { - "accountName": "restoredaccount-4898", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z" - } - ] - } - }, - { - "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", - "properties": { - "accountName": "r-grem-db-account-97", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:01:21Z", - "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", - "creationTime": "2023-04-07T00:01:22Z", - "deletionTime": "2023-04-07T00:03:03Z" - } - ] - } - }, - { - "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", - "properties": { - "accountName": "r-grem-db-account-359", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:19:33Z", - "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", - "creationTime": "2023-04-07T00:19:34Z", - "deletionTime": "2023-04-07T00:20:32Z" - } - ] - } - }, - { - "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", - "properties": { - "accountName": "r-grem-db-account-6322", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:35:00Z", - "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", - "creationTime": "2023-04-07T00:35:01Z", - "deletionTime": "2023-04-07T00:51:27Z" - } - ] - } - }, - { - "name": "89acddd1-7338-4be9-b3f3-a7c060975428", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", - "properties": { - "accountName": "restoredaccount-3920", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z" - } - ] - } - }, - { - "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", - "properties": { - "accountName": "r-grem-db-account-1985", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:20:59Z", - "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", - "creationTime": "2023-04-07T01:21:01Z", - "deletionTime": "2023-04-07T01:39:59Z" - } - ] - } - }, - { - "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", - "properties": { - "accountName": "restoredaccount-2245", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z" - } - ] - } - }, - { - "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", - "properties": { - "accountName": "r-table-account-6589", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:08:08Z", - "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", - "creationTime": "2023-04-07T02:08:09Z", - "deletionTime": "2023-04-07T02:09:18Z" - } - ] - } - }, - { - "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", - "properties": { - "accountName": "r-table-account-455", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:23:44Z", - "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", - "creationTime": "2023-04-07T02:23:45Z", - "deletionTime": "2023-04-07T02:42:21Z" - } - ] - } - }, - { - "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", - "properties": { - "accountName": "restoredaccount-27", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z" - } - ] - } - }, - { - "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", - "properties": { - "accountName": "r-table-account-4096", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:09:53Z", - "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", - "creationTime": "2023-04-07T03:09:54Z", - "deletionTime": "2023-04-07T03:26:55Z" - } - ] - } - }, - { - "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", - "properties": { - "accountName": "restoredaccount-1168", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z" - } - ] - } - }, - { - "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", - "properties": { - "accountName": "r-table-account-6117", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:54:19Z", - "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", - "creationTime": "2023-04-07T03:54:20Z", - "deletionTime": "2023-04-07T03:55:39Z" - } - ] - } - }, - { - "name": "0554d9f5-654a-4d8b-b684-27f659539579", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", - "properties": { - "accountName": "r-table-account-5255", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:11:45Z", - "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", - "creationTime": "2023-04-07T04:11:47Z", - "deletionTime": "2023-04-07T04:12:39Z" - } - ] - } - }, - { - "name": "fece0537-1813-4eca-ba83-43a475cc913c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", - "properties": { - "accountName": "r-table-account-555", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:26:38Z", - "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", - "creationTime": "2023-04-07T04:26:39Z", - "deletionTime": "2023-04-07T04:45:11Z" - } - ] - } - }, - { - "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", - "properties": { - "accountName": "restoredaccount-3867", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z" - } - ] - } - }, - { - "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", - "properties": { - "accountName": "r-table-account-4311", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:13:59Z", - "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", - "creationTime": "2023-04-07T05:14:00Z", - "deletionTime": "2023-04-07T05:30:58Z" - } - ] - } - }, - { - "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", - "properties": { - "accountName": "restoredaccount-7020", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z" - } - ] - } - }, - { - "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", - "properties": { - "accountName": "r-table-account-6934", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:58:40Z", - "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", - "creationTime": "2023-04-07T05:58:41Z", - "deletionTime": "2023-04-07T06:00:10Z" - } - ] - } - }, - { - "name": "6d446c65-d616-4aa3-8138-ed609a031011", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", - "properties": { - "accountName": "cliz4gfhacxt3ra", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:02:28Z", - "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", - "creationTime": "2023-04-07T18:02:29Z", - "deletionTime": "2023-04-07T18:06:12Z" - } - ] - } - }, - { - "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", - "properties": { - "accountName": "clizzr52zwge4ps", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:16:23Z", - "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", - "creationTime": "2023-04-07T18:16:24Z", - "deletionTime": "2023-04-07T18:19:37Z" - } - ] - } - }, - { - "name": "ab946470-3753-427d-a821-ec8a57709a65", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", - "properties": { - "accountName": "cliyfwfppqkfatd", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:23:09Z", - "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", - "creationTime": "2023-04-07T18:23:10Z", - "deletionTime": "2023-04-07T18:49:00Z" - } - ] - } - }, - { - "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", - "properties": { - "accountName": "clinxdvetbmpu2e", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:54:49Z", - "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", - "creationTime": "2023-04-07T18:54:50Z", - "deletionTime": "2023-04-07T19:21:12Z" - } - ] - } - }, - { - "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", - "properties": { - "accountName": "clilwpd6a2jivng", - "apiType": "Sql", - "creationTime": "2023-04-07T22:22:56Z", - "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", - "creationTime": "2023-04-07T22:22:57Z", - "deletionTime": "2023-04-07T22:49:32Z" - } - ] - } - }, - { - "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", - "properties": { - "accountName": "cli5ohlmiu76mcl", - "apiType": "Sql", - "creationTime": "2023-04-08T14:54:41Z", - "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", - "creationTime": "2023-04-08T14:54:42Z", - "deletionTime": "2023-04-08T15:00:16Z" - } - ] - } - }, - { - "name": "20547469-51f9-4bd8-af49-537306f0b327", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", - "properties": { - "accountName": "clifmmb7dwsbns2", - "apiType": "Sql", - "creationTime": "2023-04-08T15:18:01Z", - "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", - "creationTime": "2023-04-08T15:18:02Z", - "deletionTime": "2023-04-08T15:49:43Z" - } - ] - } - }, - { - "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", - "properties": { - "accountName": "cliv5od2aotadzs", - "apiType": "Sql", - "creationTime": "2023-04-08T15:52:34Z", - "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", - "creationTime": "2023-04-08T15:52:35Z", - "deletionTime": "2023-04-08T16:18:52Z" - } - ] - } - }, - { - "name": "62bf06d8-9e56-4434-9078-423179904be7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", - "properties": { - "accountName": "clijr7md3oh7aue", - "apiType": "Sql", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z" - } - ] - } - }, - { - "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", - "properties": { - "accountName": "clidkdojm4zyywo", - "apiType": "Sql", - "creationTime": "2023-04-08T17:18:16Z", - "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", - "creationTime": "2023-04-08T17:18:17Z", - "deletionTime": "2023-04-08T17:22:23Z" - } - ] - } - }, - { - "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", - "properties": { - "accountName": "clidhqrfu4m2zyv", - "apiType": "Sql", - "creationTime": "2023-04-10T17:53:22Z", - "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", - "creationTime": "2023-04-10T17:53:23Z", - "deletionTime": "2023-04-10T17:56:06Z" - } - ] - } - }, - { - "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", - "properties": { - "accountName": "mk-ps-pna-enabled", - "apiType": "Sql", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z" - } - ] - } - }, - { - "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", - "properties": { - "accountName": "mk-test-ps-pna-disabled", - "apiType": "Sql", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z" - } - ] - } - }, - { - "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", - "properties": { - "accountName": "mayank-test-src", - "apiType": "Sql", - "creationTime": "2023-04-12T19:51:34Z", - "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", - "creationTime": "2023-04-12T19:51:35Z", - "deletionTime": "2023-04-12T23:26:03Z" - } - ] - } - }, - { - "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", - "properties": { - "accountName": "climpgqg4rhbujz", - "apiType": "Sql", - "creationTime": "2023-04-13T13:44:29Z", - "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", - "creationTime": "2023-04-13T13:44:30Z", - "deletionTime": "2023-04-13T13:48:14Z" - } - ] - } - }, - { - "name": "6d55af6c-8889-4938-ba25-28afb7858035", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", - "properties": { - "accountName": "mayank-src", - "apiType": "Sql", - "creationTime": "2023-04-13T17:30:02Z", - "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", - "creationTime": "2023-04-13T17:30:03Z", - "deletionTime": "2023-04-13T18:35:56Z" - } - ] - } - }, - { - "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", - "properties": { - "accountName": "mayank-pspreview-test", - "apiType": "Sql", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z" - } - ] - } - }, - { - "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", - "properties": { - "accountName": "r-database-account-3188", - "apiType": "Sql", - "creationTime": "2023-04-18T13:44:01Z", - "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", - "creationTime": "2023-04-18T13:44:02Z", - "deletionTime": "2023-04-18T14:06:35Z" - } - ] - } - }, - { - "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", - "properties": { - "accountName": "restoredaccount-5903", - "apiType": "Sql", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z" - } - ] - } - }, - { - "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", - "properties": { - "accountName": "r-database-account-8442", - "apiType": "Sql", - "creationTime": "2023-04-18T18:21:09Z", - "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", - "creationTime": "2023-04-18T18:21:10Z", - "deletionTime": "2023-04-18T18:43:26Z" - } - ] - } - }, - { - "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", - "properties": { - "accountName": "restoredaccount-5883", - "apiType": "Sql", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z" - } - ] - } - }, - { - "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", - "properties": { - "accountName": "r-database-account-8968", - "apiType": "Sql", - "creationTime": "2023-04-18T20:58:17Z", - "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", - "creationTime": "2023-04-18T20:58:18Z", - "deletionTime": "2023-04-18T21:21:06Z" - } - ] - } - }, - { - "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", - "properties": { - "accountName": "restoredaccount-8805", - "apiType": "Sql", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z" - } - ] - } - }, - { - "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", - "properties": { - "accountName": "r-database-account-7565", - "apiType": "Sql", - "creationTime": "2023-04-19T04:54:02Z", - "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", - "creationTime": "2023-04-19T04:54:03Z", - "deletionTime": "2023-04-19T05:17:07Z" - } - ] - } - }, - { - "name": "a440fc94-a486-473c-bdeb-b62363814132", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", - "properties": { - "accountName": "restoredaccount-8250", - "apiType": "Sql", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z" - } - ] - } - }, - { - "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", - "properties": { - "accountName": "r-database-account-3177", - "apiType": "Sql", - "creationTime": "2023-04-19T07:32:19Z", - "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", - "creationTime": "2023-04-19T07:32:20Z", - "deletionTime": "2023-04-19T07:54:43Z" - } - ] - } - }, - { - "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", - "properties": { - "accountName": "restoredaccount-9058", - "apiType": "Sql", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z" - } - ] - } - }, - { - "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", - "properties": { - "accountName": "r-database-account-9523", - "apiType": "Sql", - "creationTime": "2023-04-19T19:31:56Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", - "creationTime": "2023-04-19T19:31:57Z", - "deletionTime": "2023-04-19T23:47:56Z" - } - ] - } - }, - { - "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", - "properties": { - "accountName": "restoredaccount-4287", - "apiType": "Sql", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z" - } - ] - } - }, - { - "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", - "properties": { - "accountName": "r-database-account-8435", - "apiType": "Sql", - "creationTime": "2023-04-06T02:11:39Z", - "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", - "creationTime": "2023-04-06T02:11:40Z", - "deletionTime": "2023-04-19T23:49:01Z" - } - ] - } - }, - { - "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", - "properties": { - "accountName": "r-database-account-5580", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T18:31:49Z", - "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", - "creationTime": "2023-04-05T18:31:50Z", - "deletionTime": "2023-04-19T23:53:21Z" - } - ] - } - }, - { - "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", - "properties": { - "accountName": "r-database-account-163", - "apiType": "Sql", - "creationTime": "2023-04-18T16:23:17Z", - "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", - "creationTime": "2023-04-18T16:23:18Z", - "deletionTime": "2023-04-19T23:54:07Z" - } - ] - } - }, - { - "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", - "properties": { - "accountName": "r-database-account-8550", - "apiType": "Sql", - "creationTime": "2023-04-06T02:07:24Z", - "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", - "creationTime": "2023-04-06T02:07:26Z", - "deletionTime": "2023-04-19T23:57:08Z" - } - ] - } - }, - { - "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", - "properties": { - "accountName": "r-database-account-605", - "apiType": "Sql", - "creationTime": "2023-04-20T00:04:33Z", - "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", - "creationTime": "2023-04-20T00:04:34Z", - "deletionTime": "2023-04-20T00:05:28Z" - } - ] - } - }, - { - "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", - "properties": { - "accountName": "r-database-account-1077", - "apiType": "Sql", - "creationTime": "2023-04-20T00:07:31Z", - "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [] - } - }, - { - "name": "f3db04bc-7552-4f70-af65-a7be0274a695", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", - "properties": { - "accountName": "restoredaccount-5322", - "apiType": "Sql", - "creationTime": "2023-04-20T00:29:33Z", - "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T00:32:39Z", - "restorableLocations": [] - } - }, - { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "properties": { - "accountName": "drop-continuous7", - "apiType": "Sql", - "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", - "creationTime": "2022-05-26T18:49:52Z" - } - ] - } - }, - { - "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "properties": { - "accountName": "periodicacctdrop", - "apiType": "Sql", - "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", - "creationTime": "2022-08-24T22:57:51Z" - } - ] - } - }, - { - "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", - "properties": { - "accountName": "periodicacctdrop2", - "apiType": "Sql", - "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", - "creationTime": "2022-05-26T20:16:50Z" - } - ] - } - }, - { - "name": "b169ba58-4696-4196-99a4-51995d99f004", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", - "properties": { - "accountName": "readregionrestore-1", - "apiType": "Sql", - "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "Southeast Asia", - "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", - "creationTime": "2023-03-02T00:15:37Z" - }, - { - "locationName": "Central India", - "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", - "creationTime": "2023-03-02T00:38:10Z" - } - ] - } - }, - { - "name": "83301fff-71b5-4cb0-a399-3c6331b78411", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", - "properties": { - "accountName": "portal-mongo-test", - "apiType": "MongoDB", - "creationTime": "2023-03-27T17:28:08Z", - "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", - "creationTime": "2023-03-27T17:28:09Z", - "deletionTime": "2023-03-27T17:30:49Z" - } - ] - } - }, - { - "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "properties": { - "accountName": "amisi-8bd4a726", - "apiType": "Sql", - "creationTime": "2023-03-29T07:24:07Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", - "creationTime": "2023-03-29T07:26:03Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", - "creationTime": "2023-03-29T07:24:08Z", - "deletionTime": "2023-03-29T07:44:16Z" - } - ] - } - }, - { - "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", - "properties": { - "accountName": "amisi-da11000f", - "apiType": "Sql", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", - "creationTime": "2023-03-29T07:09:11Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z" - } - ] - } - }, - { - "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "properties": { - "accountName": "dsapaliga-restore-test2", - "apiType": "Sql", - "creationTime": "2023-03-29T19:36:21Z", - "deletionTime": "2023-03-29T22:55:47Z", - "oldestRestorableTime": "2023-03-22T22:55:47Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", - "creationTime": "2023-03-29T19:36:22Z", - "deletionTime": "2023-03-29T22:55:47Z" - } - ] - } - }, - { - "name": "66326971-fd72-4b66-9495-da9f95f0e86a", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", - "properties": { - "accountName": "dsapaliga-restore-test3", - "apiType": "Sql", - "creationTime": "2023-03-29T21:45:59Z", - "deletionTime": "2023-03-29T22:55:54Z", - "oldestRestorableTime": "2023-03-22T22:55:54Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", - "creationTime": "2023-03-29T21:48:10Z", - "deletionTime": "2023-03-29T21:57:56Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", - "creationTime": "2023-03-29T21:46:00Z", - "deletionTime": "2023-03-29T22:55:54Z" - } - ] - } - }, - { - "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", - "properties": { - "accountName": "dsapaliga-restore-test4", - "apiType": "Sql", - "creationTime": "2023-03-29T22:08:33Z", - "deletionTime": "2023-03-29T22:56:00Z", - "oldestRestorableTime": "2023-03-22T22:56:00Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", - "creationTime": "2023-03-29T22:08:34Z", - "deletionTime": "2023-03-29T22:56:00Z" - } - ] - } - }, - { - "name": "84a35eb5-784c-4923-a52f-60bd04765953", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", - "properties": { - "accountName": "dsapaliga-restore-test6", - "apiType": "Sql", - "creationTime": "2023-03-29T22:24:23Z", - "deletionTime": "2023-03-29T22:56:18Z", - "oldestRestorableTime": "2023-03-22T22:56:18Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", - "creationTime": "2023-03-29T22:26:42Z", - "deletionTime": "2023-03-29T22:56:18Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", - "creationTime": "2023-03-29T22:24:24Z", - "deletionTime": "2023-03-29T22:56:18Z" - } - ] - } - }, - { - "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", - "properties": { - "accountName": "dsapaliga-restored-westus-m", - "apiType": "Sql", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z", - "oldestRestorableTime": "2023-03-22T22:56:46Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z" - } - ] - } - }, - { - "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "properties": { - "accountName": "cli-continuous30-sopplsfv", - "apiType": "Sql", - "creationTime": "2023-03-29T23:59:38Z", - "deletionTime": "2023-03-30T00:12:32Z", - "oldestRestorableTime": "2023-03-23T00:12:32Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", - "creationTime": "2023-03-30T00:02:04Z", - "deletionTime": "2023-03-30T00:12:32Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", - "creationTime": "2023-03-29T23:59:39Z", - "deletionTime": "2023-03-30T00:12:32Z" - } - ] - } - }, - { - "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "properties": { - "accountName": "cli-continuous30-l5utea24-restored", - "apiType": "Sql", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z" - } - ] - } - }, - { - "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", - "properties": { - "accountName": "cli-continuous30-l5utea24", - "apiType": "Sql", - "creationTime": "2023-03-30T00:33:44Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", - "creationTime": "2023-03-30T00:36:04Z", - "deletionTime": "2023-03-30T01:02:30Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", - "creationTime": "2023-03-30T00:33:45Z", - "deletionTime": "2023-03-30T01:02:30Z" - } - ] - } - }, - { - "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", - "properties": { - "accountName": "cli-continuous30-3eb7aosu", - "apiType": "Sql", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z", - "oldestRestorableTime": "2023-03-23T03:46:34Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", - "creationTime": "2023-03-30T03:35:19Z", - "deletionTime": "2023-03-30T03:46:34Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z" - } - ] - } - }, - { - "name": "856077e3-8335-4b95-9577-2ebf016ee892", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", - "properties": { - "accountName": "cli-continuous30-tqwxb6nj", - "apiType": "Sql", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z", - "oldestRestorableTime": "2023-03-23T04:05:05Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", - "creationTime": "2023-03-30T03:53:50Z", - "deletionTime": "2023-03-30T04:05:05Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z" - } - ] - } - }, - { - "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "properties": { - "accountName": "cli-continuous30-cmjnvki7", - "apiType": "Sql", - "creationTime": "2023-03-30T04:58:52Z", - "deletionTime": "2023-03-30T05:12:19Z", - "oldestRestorableTime": "2023-03-23T05:12:19Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", - "creationTime": "2023-03-30T05:01:09Z", - "deletionTime": "2023-03-30T05:12:19Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", - "creationTime": "2023-03-30T04:58:53Z", - "deletionTime": "2023-03-30T05:12:19Z" - } - ] - } - }, - { - "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "properties": { - "accountName": "cli-continuous30-pmjqwgr5-restored", - "apiType": "Sql", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z" - } - ] - } - }, - { - "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", - "properties": { - "accountName": "cli-continuous30-pmjqwgr5", - "apiType": "Sql", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", - "creationTime": "2023-03-30T14:12:07Z", - "deletionTime": "2023-03-30T14:38:59Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z" - } - ] - } - }, - { - "name": "f68b64bb-38f3-429b-be8f-81e44763929d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", - "properties": { - "accountName": "cli-continuous30-ta4jrave", - "apiType": "Sql", - "creationTime": "2023-03-30T14:48:08Z", - "deletionTime": "2023-03-30T15:16:54Z", - "oldestRestorableTime": "2023-03-23T15:16:54Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", - "creationTime": "2023-03-30T14:50:33Z", - "deletionTime": "2023-03-30T15:16:54Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", - "creationTime": "2023-03-30T14:48:09Z", - "deletionTime": "2023-03-30T15:16:54Z" - } - ] - } - }, - { - "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "properties": { - "accountName": "amisi-8bd4a726-restored", - "apiType": "Sql", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z" - } - ] - } - }, - { - "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", - "properties": { - "accountName": "amisi-765b8849", - "apiType": "Sql", - "creationTime": "2023-03-30T20:15:03Z", - "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T00:32:36Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", - "creationTime": "2023-03-30T20:15:04Z", - "deletionTime": "2023-03-31T06:20:15Z" - } - ] - } - }, - { - "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "location": "Qatar Central", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", - "apiType": "Sql", - "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", - "creationTime": "2022-09-29T05:44:13Z" - } - ] - } - }, - { - "name": "a672303a-644d-4996-9d49-b3d2eddea72d", - "location": "Qatar Central", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", - "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", - "apiType": "Sql", - "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T00:32:37Z", - "restorableLocations": [ - { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", - "creationTime": "2023-03-10T00:42:29Z" - } - ] - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "120", - "Content-Type": "application/json", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-3055c14e3049730c-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3b0d19ba6faf351e6c0d18011ef2d22d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-database-7800" - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:41 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800/operationResults/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3e9ce90-c666-4a43-aa6d-fec98955d9a5", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "9c8d5aa8-bf2f-46a5-894f-3894dd42d80d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003242Z:e3e9ce90-c666-4a43-aa6d-fec98955d9a5" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-f36f7bd5ac4374b9-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "208b4b5003733a38a53f0abc8d7ee571", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:41 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44b4a280-fed8-4a72-99aa-99f55104ebba", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "44b4a280-fed8-4a72-99aa-99f55104ebba", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003242Z:44b4a280-fed8-4a72-99aa-99f55104ebba" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-9934f08e7ae48f46-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2b59ce4edae47f2d03e28fab9b6be674", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:42 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ce39e17-f3c7-40b7-b225-f3ac327cc08c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "6ce39e17-f3c7-40b7-b225-f3ac327cc08c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003243Z:6ce39e17-f3c7-40b7-b225-f3ac327cc08c" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-51f43a8c903ec919-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d3b14134b1664eba20fad07730599c2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:43 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b517082-905e-4eb7-a6ce-788b86dd48eb", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "1b517082-905e-4eb7-a6ce-788b86dd48eb", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003244Z:1b517082-905e-4eb7-a6ce-788b86dd48eb" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-af5c9fea7d66ce8a-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8064631ead9d75f21d0c1d90748d9e39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:44 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e60ab0d6-5eea-4eb6-98a5-473363b2ffc9", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "e60ab0d6-5eea-4eb6-98a5-473363b2ffc9", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003245Z:e60ab0d6-5eea-4eb6-98a5-473363b2ffc9" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-4c61eb2e04bdbe6f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4c88965812cc9d0a130b0aea09b64fa9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:46 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2e2fe11-36de-422a-86d5-104a84f6ba4c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "b2e2fe11-36de-422a-86d5-104a84f6ba4c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003247Z:b2e2fe11-36de-422a-86d5-104a84f6ba4c" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-04eeec266a589467-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "388c6046650686d64e3bb55a932ad992", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:50 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9edc23d5-11bc-40f6-b3b3-fc7391cbea82", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "9edc23d5-11bc-40f6-b3b3-fc7391cbea82", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003251Z:9edc23d5-11bc-40f6-b3b3-fc7391cbea82" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/9c8d5aa8-bf2f-46a5-894f-3894dd42d80d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-6f82c01eb9e1349b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "991e965b4fd10b6258c76d92a3076c67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:32:59 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "319de087-67a4-4a69-8c52-58a195d88138", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "319de087-67a4-4a69-8c52-58a195d88138", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003259Z:319de087-67a4-4a69-8c52-58a195d88138" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-df7ae24bfcd6a94f36e12b5407b87992-d30d094b145804cf-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "144a74bd6600f332bf01fe905daf09e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "479", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "276ed869-7162-4464-b6d3-18e30b5cf30d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "276ed869-7162-4464-b6d3-18e30b5cf30d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003300Z:276ed869-7162-4464-b6d3-18e30b5cf30d" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", - "name": "sql-database-7800", - "properties": { - "resource": { - "id": "sql-database-7800", - "_rid": "GWdcAA==", - "_self": "dbs/GWdcAA==/", - "_etag": "\u00220000140f-0000-0600-0000-644088340000\u0022", - "_colls": "colls/", - "_users": "users/", - "_ts": 1681950772 - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800/containers/sql-container-2276?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "489", - "Content-Type": "application/json", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-9800525250a9b0a6-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "97728f77d7b5fef681df3ef844e346cf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-container-2276", - "indexingPolicy": { - "automatic": true, - "indexingMode": "consistent", - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point" - ] - } - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - } - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:00 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800/containers/sql-container-2276/operationResults/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74100281-e8a8-4585-a339-968fb1ca1f95", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "10f1ad75-dceb-4415-a264-e2a096b1197d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003300Z:74100281-e8a8-4585-a339-968fb1ca1f95" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-18cd76ff4239365f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "772b6184d0f99d0753157f87f4fa7b1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d79a7272-24d5-4f53-8b4c-e699a11e8b4f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "d79a7272-24d5-4f53-8b4c-e699a11e8b4f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003300Z:d79a7272-24d5-4f53-8b4c-e699a11e8b4f" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-d7f1bd54ebe46329-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1210c1b708eae66b9b0e6bda06a42cd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:01 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05e47f87-dbb0-46de-a2bb-739c2a215e4e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "05e47f87-dbb0-46de-a2bb-739c2a215e4e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003301Z:05e47f87-dbb0-46de-a2bb-739c2a215e4e" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-20f9ba0efd18a20c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e2738036ceb77cd595828caf126d6f30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b65afa6-79f4-4d69-b0db-7afbda0c3578", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "7b65afa6-79f4-4d69-b0db-7afbda0c3578", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003303Z:7b65afa6-79f4-4d69-b0db-7afbda0c3578" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-accf13d2eae7f6b5-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "109ab15f969c7bd4f545dcea652c96af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:04 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36f173ce-4990-4087-8d6d-0383bea30662", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "36f173ce-4990-4087-8d6d-0383bea30662", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003304Z:36f173ce-4990-4087-8d6d-0383bea30662" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-ffc1bd6aaf7ca187-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7351abe99887e866eb947c677cbbd32e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:06 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7259bc4-e28f-4cdd-be94-3b395415d340", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "d7259bc4-e28f-4cdd-be94-3b395415d340", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003306Z:d7259bc4-e28f-4cdd-be94-3b395415d340" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-6ff68e247153245b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "557b3a9f1b0a9f37abf8ec72f2eb1768", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:10 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae9bb764-2e6e-472e-9b8c-d1274a2acb6d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "ae9bb764-2e6e-472e-9b8c-d1274a2acb6d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003310Z:ae9bb764-2e6e-472e-9b8c-d1274a2acb6d" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/10f1ad75-dceb-4415-a264-e2a096b1197d?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-f2583a8b29774f64-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "66c6ddebfc1bc7a94bb125081a6cff3a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:18 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71aaa50d-352a-4d71-90da-4772e0882a3d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "71aaa50d-352a-4d71-90da-4772e0882a3d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003318Z:71aaa50d-352a-4d71-90da-4772e0882a3d" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800/containers/sql-container-2276?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-20623660c75d4f45b1d0494f054b6708-68060c9e33e75145-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2a4bae7141b1cda474b1c78eabf4f600", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "1374", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 00:33:18 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a09c0abf-8bfb-421a-a49b-3d938f6f425d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "a09c0abf-8bfb-421a-a49b-3d938f6f425d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T003318Z:a09c0abf-8bfb-421a-a49b-3d938f6f425d" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849/sqlDatabases/sql-database-7800/containers/sql-container-2276", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", - "name": "sql-container-2276", - "properties": { - "resource": { - "id": "sql-container-2276", - "indexingPolicy": { - "indexingMode": "consistent", - "automatic": true, - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - }, - { - "path": "/\u0022_etag\u0022/?" - } - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point", - "LineString", - "Polygon", - "MultiPolygon" - ] - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - }, - "uniqueKeyPolicy": { - "uniqueKeys": [] - }, - "conflictResolutionPolicy": { - "mode": "LastWriterWins", - "conflictResolutionPath": "/_ts", - "conflictResolutionProcedure": "" - }, - "backupPolicy": { - "type": 1 - }, - "geospatialConfig": { - "type": "Geography" - }, - "_rid": "GWdcAItV\u002B4o=", - "_ts": 1681950788, - "_self": "dbs/GWdcAA==/colls/GWdcAItV\u002B4o=/", - "_etag": "\u00220000190f-0000-0600-0000-644088440000\u0022", - "_docs": "docs/", - "_sprocs": "sprocs/", - "_triggers": "triggers/", - "_udfs": "udfs/", - "_conflicts": "conflicts/", - "statistics": [ - { - "id": "0", - "sizeInKB": 0, - "documentCount": 0, - "sampledDistinctPartitionKeyCount": 0, - "partitionKeys": [] - } - ] - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "578", - "Content-Type": "application/json", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-bf30e08849930b8d-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f49f7c13126c90a2b40958f62e853ff8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "location": "westcentralus", - "properties": { - "locations": [ - { - "locationName": "northcentralus", - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "createMode": "Restore", - "restoreParameters": { - "restoreMode": "PointInTime", - "sourceBackupLocation": "West Central US", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "restoreTimestampInUtc": "2023-04-20T01:34:38.0000000Z" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "2869", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:25 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463/operationResults/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91723cdc-f061-4eef-b929-7c28af46c16b", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "04a18dd0-b5bb-4532-b1fa-80af61c1e38f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013526Z:91723cdc-f061-4eef-b929-7c28af46c16b" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463", - "name": "restoredaccount-6463", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T01:35:23.6149331Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "e7a884a0-d941-44cf-a344-2dd1d8c91284", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "restoreTimestampInUtc": "2023-04-20T01:34:38Z", - "sourceBackupLocation": "West Central US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T01:35:23.6149331Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T01:35:23.6149331Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T01:35:23.6149331Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T01:35:23.6149331Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-46f84830aa4412c5-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f0068b2545609c05a899fd374bd6452c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:26 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d97a1518-e482-4f99-b181-21422abe9624", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "d97a1518-e482-4f99-b181-21422abe9624", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013526Z:d97a1518-e482-4f99-b181-21422abe9624" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-2d2bac0fe851daea-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f3f8958860b25b8fd166fa7aa76e7598", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:27 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b52dcc62-d9ad-4cc6-bdc3-8a83528720be", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "b52dcc62-d9ad-4cc6-bdc3-8a83528720be", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013527Z:b52dcc62-d9ad-4cc6-bdc3-8a83528720be" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-df98085379006848-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a2d09db24f7f6c98fba7f653ba73ec23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:28 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a0e8cde-e510-422d-89a2-13300b624287", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "8a0e8cde-e510-422d-89a2-13300b624287", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013528Z:8a0e8cde-e510-422d-89a2-13300b624287" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-32ec1c21683b5e3f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "85ac3eac6322c508fcaa1ff94b8bf43a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:29 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5dbb4e26-0897-4536-ae85-9ca59e2c9f2e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5dbb4e26-0897-4536-ae85-9ca59e2c9f2e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013529Z:5dbb4e26-0897-4536-ae85-9ca59e2c9f2e" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-cb7c31e021a556b7-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ae846424a30538acfd8cf80b693ca15d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:31 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab8f93a0-60fc-45fd-992f-324745acb0cf", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "ab8f93a0-60fc-45fd-992f-324745acb0cf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013531Z:ab8f93a0-60fc-45fd-992f-324745acb0cf" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-bb763d8dbb1f69c7-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "69cdd779f0c24f75940ba6d4309f2170", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:35 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31f0155c-8794-4213-9d57-c8b7bb60493c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "31f0155c-8794-4213-9d57-c8b7bb60493c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013535Z:31f0155c-8794-4213-9d57-c8b7bb60493c" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-f43623fc3e83f9e1-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "562fbcb23def091d917388966bfd5bc0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:43 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4e44824-b043-4298-ae97-838018718889", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "b4e44824-b043-4298-ae97-838018718889", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013543Z:b4e44824-b043-4298-ae97-838018718889" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-5402d44351159910-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "737fc1098bbd3377ee351af9fdd8085d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:35:59 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5f93891-515c-48fb-b755-49e143454ac6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "b5f93891-515c-48fb-b755-49e143454ac6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013559Z:b5f93891-515c-48fb-b755-49e143454ac6" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-d59a9b737c72cdf2-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ac59886a4b0c3b6eb9c4d84e68dfe397", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:36:31 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95ea9608-e5a0-4c1b-b842-62c69e5faf0c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "95ea9608-e5a0-4c1b-b842-62c69e5faf0c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013631Z:95ea9608-e5a0-4c1b-b842-62c69e5faf0c" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-b769d7b20eb2ca40-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6ecbe5b0ad1f27b244fb67b923230bb9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:37:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6f4bb8e-5e65-46bc-bbea-e7eaf40b058f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "e6f4bb8e-5e65-46bc-bbea-e7eaf40b058f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013704Z:e6f4bb8e-5e65-46bc-bbea-e7eaf40b058f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-ec141b995074f8bf-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e32b2a6aaea3bdb35244b9f9b229cb0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:37:36 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2933790e-3501-48da-a9c5-6abdf24fb5e5", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "2933790e-3501-48da-a9c5-6abdf24fb5e5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013736Z:2933790e-3501-48da-a9c5-6abdf24fb5e5" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-2ae98338eae93a07-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "17498351990cbc3ed5316711e3b51896", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:38:07 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4305cb06-b57c-4312-a15b-37c2c99b34be", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "4305cb06-b57c-4312-a15b-37c2c99b34be", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013808Z:4305cb06-b57c-4312-a15b-37c2c99b34be" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-ec3a36b68740a439-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3de41eb800b301f3320d1cdaf4b8741b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:38:39 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26d9828e-e0d0-4bcd-b2f4-acf2054d6421", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "26d9828e-e0d0-4bcd-b2f4-acf2054d6421", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013840Z:26d9828e-e0d0-4bcd-b2f4-acf2054d6421" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-5ad778896aa2303c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a067582ff4dad0adeb6e0d7246a1da9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:39:11 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5bccc61-ab0b-4ef2-a8be-565c1f0c20a7", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "c5bccc61-ab0b-4ef2-a8be-565c1f0c20a7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013912Z:c5bccc61-ab0b-4ef2-a8be-565c1f0c20a7" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-71ef715d527fb56b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9441232b8d44515b8f47e4fe7d63c81d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:39:44 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ffa79a8-4063-48ec-80c9-0b5f9163fd19", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "5ffa79a8-4063-48ec-80c9-0b5f9163fd19", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T013944Z:5ffa79a8-4063-48ec-80c9-0b5f9163fd19" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-3aed570c7b56f9a7-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8be14cbd774dc3bb71135245f381ba90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:40:16 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b89b2cae-eaa9-4601-abeb-9a2fb4e4f693", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b89b2cae-eaa9-4601-abeb-9a2fb4e4f693", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014016Z:b89b2cae-eaa9-4601-abeb-9a2fb4e4f693" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-af8b7d0edd9b24f3-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d0af7e33e077a1d6fd1610920fae5287", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:40:48 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40944877-b4a9-4a21-afbf-fc52a8b9d45a", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "40944877-b4a9-4a21-afbf-fc52a8b9d45a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014048Z:40944877-b4a9-4a21-afbf-fc52a8b9d45a" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-e64a88c14a9ad5b7-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fab5f0a64fbfb350677d22313b155e0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:41:20 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3db32cc-6c5e-4611-b623-a7d793170bed", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "b3db32cc-6c5e-4611-b623-a7d793170bed", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014120Z:b3db32cc-6c5e-4611-b623-a7d793170bed" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-c1a9dee2666a301d-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ffcb548cf7b4dca575408d366729b3c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:41:52 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34a739cb-004e-4274-8a76-11573dfc602f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "34a739cb-004e-4274-8a76-11573dfc602f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014153Z:34a739cb-004e-4274-8a76-11573dfc602f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-2d99f35c1ad2861f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "029fcac0c0cbe4d02efb69fabda565e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:42:24 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99937fd3-a8f3-4f43-a4a7-5061e7fd3721", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "99937fd3-a8f3-4f43-a4a7-5061e7fd3721", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014225Z:99937fd3-a8f3-4f43-a4a7-5061e7fd3721" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-3539a6e3f7d5c11c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "bb0601b853e3aed34ad8857fc1194c3e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:42:56 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b71d8102-506b-42d9-b00c-9bda6c581131", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "b71d8102-506b-42d9-b00c-9bda6c581131", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014257Z:b71d8102-506b-42d9-b00c-9bda6c581131" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-779ef2bf86e06240-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "71705fc95b76cc4283e6d0b98dab1fcf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:43:29 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9c11161-5ba1-479e-9d54-4b055a8cf09f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "d9c11161-5ba1-479e-9d54-4b055a8cf09f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014329Z:d9c11161-5ba1-479e-9d54-4b055a8cf09f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-05b4235e2a7ef688-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "657ea6daf8236cdff7f0b8f33b512214", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:44:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a2c692-e6d0-416d-9e42-b36be6d653ca", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "e1a2c692-e6d0-416d-9e42-b36be6d653ca", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014401Z:e1a2c692-e6d0-416d-9e42-b36be6d653ca" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-c295295894179e6f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5d302baef4345d70be3937fc8219209f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:44:32 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46577840-2542-4442-9b23-2b4a853f0c7a", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "46577840-2542-4442-9b23-2b4a853f0c7a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014433Z:46577840-2542-4442-9b23-2b4a853f0c7a" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-e5f3ca2e7101f7a5-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1ba5b5b8e79bd11b80037986a24f9132", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:45:04 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "322a4992-f3b8-4d93-b7a1-1cba323d19b0", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "322a4992-f3b8-4d93-b7a1-1cba323d19b0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014505Z:322a4992-f3b8-4d93-b7a1-1cba323d19b0" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-d56d627cc87c6021-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "620abcc4c17ae59b3620a6e9c0e3eadd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:45:37 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d01e66ac-be1c-4847-99a0-0f626c6f17e6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "d01e66ac-be1c-4847-99a0-0f626c6f17e6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014537Z:d01e66ac-be1c-4847-99a0-0f626c6f17e6" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-bacb41ea9770f73c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "853a18d007abc779105fdd317aeaba6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:46:09 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b311ad5b-8392-4148-b9df-21af76ccc946", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "b311ad5b-8392-4148-b9df-21af76ccc946", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014609Z:b311ad5b-8392-4148-b9df-21af76ccc946" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-7bec802f5dc34662-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c63805a8bd0ef6241abfe57a4031119c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:46:41 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "270bfb2d-a6b2-4c2b-8cc1-1ab027dd3c68", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "270bfb2d-a6b2-4c2b-8cc1-1ab027dd3c68", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014641Z:270bfb2d-a6b2-4c2b-8cc1-1ab027dd3c68" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-1adbc75c44688378-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "8ab69c190b14bc864343521be4696a4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:47:13 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96b2f79d-1f18-4dc6-b857-0f277853e279", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "96b2f79d-1f18-4dc6-b857-0f277853e279", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014714Z:96b2f79d-1f18-4dc6-b857-0f277853e279" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-219401048bb0c22a-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ba41376623aa12cff4436bec22fe87de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:47:45 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42f281fc-20a1-4761-b54a-f38deaab75a3", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "42f281fc-20a1-4761-b54a-f38deaab75a3", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014746Z:42f281fc-20a1-4761-b54a-f38deaab75a3" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/04a18dd0-b5bb-4532-b1fa-80af61c1e38f?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-efaf79be39d9a4ac-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "de17404d30339c5b7e7b83cb6b0812b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:48:17 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b6a171c-012e-4459-9a76-5089e3bc96f5", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "6b6a171c-012e-4459-9a76-5089e3bc96f5", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014818Z:6b6a171c-012e-4459-9a76-5089e3bc96f5" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57f9bb26d76533813eb573264eceed98-da793595f66fc85a-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0914995456f0f6f2cda496d0a09a9944", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "3234", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:48:17 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "905f9626-811f-4299-aadb-b65f50127f11", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "905f9626-811f-4299-aadb-b65f50127f11", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014818Z:905f9626-811f-4299-aadb-b65f50127f11" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463", - "name": "restoredaccount-6463", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T01:47:58.6946843Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://restoredaccount-6463.documents.azure.com:443/", - "sqlEndpoint": "https://restoredaccount-6463.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "e7a884a0-d941-44cf-a344-2dd1d8c91284", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-6463-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-6463-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-6463-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-6463-northcentralus", - "locationName": "North Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "restoreTimestampInUtc": "2023-04-20T01:34:38Z", - "sourceBackupLocation": "West Central US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T01:47:58.6946843Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T01:47:58.6946843Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T01:47:58.6946843Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T01:47:58.6946843Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-5849?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-fac8b4e28635e8293779ed5dc588a64a-bdfb8d87b17f7744-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a3cd74bb8c513617dca43b2e9f03a7eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/fe6701fd-ef0f-414b-a5fa-c3453ee95414?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:48:18 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/fe6701fd-ef0f-414b-a5fa-c3453ee95414?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fcecc4d-2665-45da-bd70-6d3ae94963f0", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "fe6701fd-ef0f-414b-a5fa-c3453ee95414", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014819Z:3fcecc4d-2665-45da-bd70-6d3ae94963f0" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-1407/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-6463?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-fa52aabc848c661d3a3800a1e496e316-8ff291d359018baa-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f60f3ee26f3bc85e81dd2d4c1ac356c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/7322f44d-9738-45d7-aa53-dda7bcafc5c8?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 01:48:19 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/7322f44d-9738-45d7-aa53-dda7bcafc5c8?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "146db226-547a-400c-a8b0-31cc7d8d905a", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "7322f44d-9738-45d7-aa53-dda7bcafc5c8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T014820Z:146db226-547a-400c-a8b0-31cc7d8d905a" - }, - "ResponseBody": { - "status": "Enqueued" - } - } - ], - "Variables": { - "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "489685779", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" - } -} diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestoreAsync.json b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestoreAsync.json deleted file mode 100644 index cec33ea8c481..000000000000 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/tests/SessionRecords/RestorableDatabaseAccountTests/TestCrossRegionRestoreAsync.json +++ /dev/null @@ -1,17061 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/dbaccount-6716?api-version=**", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8509bd15460531ac8d3a98301cea6739-9cf1943213b2fc7e-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a0690da91bc99556119a92bd2dfdcd83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:25:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d0c629d-95e9-4eee-a5d8-c68e4d1d38c2", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "7d0c629d-95e9-4eee-a5d8-c68e4d1d38c2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032522Z:7d0c629d-95e9-4eee-a5d8-c68e4d1d38c2" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716", - "name": "dbaccount-6716", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "575", - "Content-Type": "application/json", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-65ca8fb24fd50fdf-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4a131c6c3e037554b60e81f033870004", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": {}, - "location": "westcentralus", - "properties": { - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxStalenessPrefix": 300, - "maxIntervalInSeconds": 1000 - }, - "locations": [ - { - "locationName": "westcentralus", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "isVirtualNetworkFilterEnabled": true, - "enableAutomaticFailover": false, - "connectorOffer": "Small", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "backupPolicy": { - "type": "Continuous" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "2478", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:26 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/operationResults/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a30bb3a7-8604-4cba-b77e-15165d721682", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "3b54c0c6-241a-46b8-abd5-00687d7b0681", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032527Z:a30bb3a7-8604-4cba-b77e-15165d721682" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146", - "name": "r-database-account-1146", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T03:25:25.7924071Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": true, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": { - "schemaType": "WellDefined" - }, - "instanceId": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "createMode": "Default", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T03:25:25.7924071Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T03:25:25.7924071Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:25:25.7924071Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:25:25.7924071Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-9be87e537476aac9-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b35f5c4eb4afcfa6152a130dd4a5dd12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:26 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17379b03-cee5-41d0-9634-56451fc5e7e7", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "17379b03-cee5-41d0-9634-56451fc5e7e7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032527Z:17379b03-cee5-41d0-9634-56451fc5e7e7" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-cc9a9e922445ed0f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5b14b89170cdb6770f2a5948150ba475", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:27 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64624902-bc07-4068-b432-d3e17f1a6e24", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "64624902-bc07-4068-b432-d3e17f1a6e24", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032528Z:64624902-bc07-4068-b432-d3e17f1a6e24" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-7d7fb51ff52b6bdf-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d7a113c34c286455fb30fe91a1ff134c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:28 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e37ae6df-ec10-45ae-a512-1ac4d610a367", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "e37ae6df-ec10-45ae-a512-1ac4d610a367", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032529Z:e37ae6df-ec10-45ae-a512-1ac4d610a367" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-9ba97d4701b23cf1-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "18b715ddef2cde9fe5a8a3845b5db909", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:30 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "598fac90-b15d-4bf7-aeb6-2da039ef07ce", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "598fac90-b15d-4bf7-aeb6-2da039ef07ce", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032530Z:598fac90-b15d-4bf7-aeb6-2da039ef07ce" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-b9d3b0bcad2cc77e-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c0499e86060344ea62b05f9d72e61510", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:32 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "416087f9-cbcf-41b6-b9d7-d2b5cd330f11", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "416087f9-cbcf-41b6-b9d7-d2b5cd330f11", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032532Z:416087f9-cbcf-41b6-b9d7-d2b5cd330f11" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-270797c338868fbd-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "006b0d168b53d34874c3f180a8d1089e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:36 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ea1f0bf-d2d1-41d8-8c9e-abb7dae00c2c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "8ea1f0bf-d2d1-41d8-8c9e-abb7dae00c2c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032536Z:8ea1f0bf-d2d1-41d8-8c9e-abb7dae00c2c" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-d1db594ab78fb6b6-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "030af47653b5d7482b72b67c8f016cff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:25:44 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "def1cc53-34a2-4c6d-8b33-d8550733eb6a", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "def1cc53-34a2-4c6d-8b33-d8550733eb6a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032545Z:def1cc53-34a2-4c6d-8b33-d8550733eb6a" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-611a63edd60a851b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4e6d9393b9f2fab655764c40146a9c90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:26:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21e20957-7e46-4a83-8ad9-7c54e7d8ea1f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "21e20957-7e46-4a83-8ad9-7c54e7d8ea1f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032601Z:21e20957-7e46-4a83-8ad9-7c54e7d8ea1f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-93c42bf765d5c89b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7d26c1a711dbc35ac493d5e1d5cc4372", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:26:33 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "785dd038-fe55-41b3-bdef-5d61b540625b", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "785dd038-fe55-41b3-bdef-5d61b540625b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032633Z:785dd038-fe55-41b3-bdef-5d61b540625b" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-d308491b7fb01967-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "15ecf256b964bdac3e10ae3f0608c3c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:27:05 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5265e80c-1e4b-46a7-a0bb-9df0c2f48748", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "5265e80c-1e4b-46a7-a0bb-9df0c2f48748", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032705Z:5265e80c-1e4b-46a7-a0bb-9df0c2f48748" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-16c6490aab5915f6-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ced425d6eedb822338a98a5ee4d42588", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:27:37 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2ce8356-66df-4fe4-b4f0-f97975ef87e6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "e2ce8356-66df-4fe4-b4f0-f97975ef87e6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032737Z:e2ce8356-66df-4fe4-b4f0-f97975ef87e6" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/3b54c0c6-241a-46b8-abd5-00687d7b0681?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-9c2ad15049235821-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "21e9da32867ded2c14683fcb631bbdbc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:09 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62c710e9-a268-4771-a7fc-7d6d169191bf", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "62c710e9-a268-4771-a7fc-7d6d169191bf", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032809Z:62c710e9-a268-4771-a7fc-7d6d169191bf" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-47e0bdd38624e9d58f28227552095453-b336e06df1a0504d-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "b00b14d074f86897ce6adcbb2f4dd969", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "2927", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:09 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c912b7b-aa13-42b4-bb91-acde3df24376", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "4c912b7b-aa13-42b4-bb91-acde3df24376", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032810Z:4c912b7b-aa13-42b4-bb91-acde3df24376" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146", - "name": "r-database-account-1146", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T03:27:38.0421699Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://r-database-account-1146.documents.azure.com:443/", - "sqlEndpoint": "https://r-database-account-1146.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": true, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": { - "schemaType": "WellDefined" - }, - "instanceId": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "createMode": "Default", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-1146-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-1146-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "documentEndpoint": "https://r-database-account-1146-westcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "r-database-account-1146-westcentralus", - "locationName": "West Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [ - { - "ipAddressOrRange": "23.43.231.120" - } - ], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T03:27:38.0421699Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T03:27:38.0421699Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:27:38.0421699Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T03:27:38.0421699Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a?api-version=2021-01-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4363af9e456a8ccd92567529ec2773e8-67e6a5cd30da0535-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2c0c25eba11e4f43f9e6b972ae581e1d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "454", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:28:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcb9902a-8b7f-42a2-b3cc-a33ed87d6482", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "dcb9902a-8b7f-42a2-b3cc-a33ed87d6482", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032810Z:dcb9902a-8b7f-42a2-b3cc-a33ed87d6482" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a", - "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "subscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "CosmosDB-Backup-Restore", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d08ecdeb74c9bd9042815213aa71bec6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "471250", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 20 Apr 2023 03:28:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6234ff3d-4114-4006-bb85-d2e4d6531e00", - "x-ms-original-request-ids": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "6234ff3d-4114-4006-bb85-d2e4d6531e00", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032815Z:6234ff3d-4114-4006-bb85-d2e4d6531e00" - }, - "ResponseBody": { - "value": [ - { - "name": "22c487b3-d5c7-45de-be94-38fecee66cd3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/22c487b3-d5c7-45de-be94-38fecee66cd3", - "properties": { - "accountName": "barprod-systemid-sw-1109027095", - "apiType": "Sql", - "creationTime": "2022-12-13T19:12:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "debbeba6-2699-44df-a689-5e9a867f51e5", - "creationTime": "2022-12-13T19:12:36Z" - } - ] - } - }, - { - "name": "2b49ac91-ad60-4807-9b6b-4041645b4f5e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b49ac91-ad60-4807-9b6b-4041645b4f5e", - "properties": { - "accountName": "barprod-systemid-sw-1109027095-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T19:33:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5bd4a33-9470-4496-a2ba-6d31b52ff4b1", - "creationTime": "2022-12-13T19:33:35Z" - } - ] - } - }, - { - "name": "13e27035-3df0-42e7-8048-6d0cbd5c7f80", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/13e27035-3df0-42e7-8048-6d0cbd5c7f80", - "properties": { - "accountName": "barprod-systemid-sw-1305567950", - "apiType": "Sql", - "creationTime": "2022-12-13T21:09:30Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "fc983ed2-abe6-4914-a686-46bcdc85a54e", - "creationTime": "2022-12-13T21:09:31Z" - } - ] - } - }, - { - "name": "a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a4d1077a-fa34-4bd8-b6c9-f70ac378e2f9", - "properties": { - "accountName": "barprod-systemid-sw-1305567950-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T21:30:58Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "2438a28c-af6b-4e7f-9984-6a644cf0e897", - "creationTime": "2022-12-13T21:30:58Z" - } - ] - } - }, - { - "name": "84e4a829-6f5a-4ca5-bdc5-86b650e38aea", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/84e4a829-6f5a-4ca5-bdc5-86b650e38aea", - "properties": { - "accountName": "vinh-restore-fail", - "apiType": "Sql", - "creationTime": "2022-12-13T22:07:03Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f4eed423-2ade-4121-94a1-22c3aa3f7a17", - "creationTime": "2022-12-13T22:07:03Z" - } - ] - } - }, - { - "name": "d494b442-7138-4a38-8f78-b301967b497b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d494b442-7138-4a38-8f78-b301967b497b", - "properties": { - "accountName": "vinh-restore-fail2", - "apiType": "Sql", - "creationTime": "2022-12-13T22:10:55Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c49dc5ba-6bdb-4470-b8b3-afa33fe3112a", - "creationTime": "2022-12-13T22:10:55Z" - } - ] - } - }, - { - "name": "9e46844f-6285-4408-b60f-9de3c6aab0cf", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e46844f-6285-4408-b60f-9de3c6aab0cf", - "properties": { - "accountName": "vinh-restore-not-fail3", - "apiType": "Sql", - "creationTime": "2022-12-13T23:32:55Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "9131c392-b756-489b-aafd-0f9227b15fc6", - "creationTime": "2022-12-13T23:32:55Z" - } - ] - } - }, - { - "name": "49c3f2e6-d728-41f9-8dff-257140ec7aa1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/49c3f2e6-d728-41f9-8dff-257140ec7aa1", - "properties": { - "accountName": "barprod-systemid-sw-1525116479", - "apiType": "Sql", - "creationTime": "2022-12-13T23:28:39Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6ab357f4-901f-4b4d-b01f-25fd52c525d7", - "creationTime": "2022-12-13T23:28:40Z" - } - ] - } - }, - { - "name": "24dd6ee0-d69d-4f3b-b14c-319245f75a1a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/24dd6ee0-d69d-4f3b-b14c-319245f75a1a", - "properties": { - "accountName": "barprod-systemid-sw-1526492563", - "apiType": "Sql", - "creationTime": "2022-12-13T23:30:14Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d91ab187-9143-4584-9a21-e7ffab1a8b51", - "creationTime": "2022-12-13T23:30:15Z" - } - ] - } - }, - { - "name": "f6c79664-838d-45f6-82dc-58dd1ea6aa69", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f6c79664-838d-45f6-82dc-58dd1ea6aa69", - "properties": { - "accountName": "barprod-systemid-sw-1526492563-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T23:51:46Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "550716f8-9a42-4512-bd9f-d8a864df27c2", - "creationTime": "2022-12-13T23:51:46Z" - } - ] - } - }, - { - "name": "db48bc7b-8dae-4fcd-a131-b3220fac8b0a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/db48bc7b-8dae-4fcd-a131-b3220fac8b0a", - "properties": { - "accountName": "barprod-systemid-sw-1525116479-rl1", - "apiType": "Sql", - "creationTime": "2022-12-13T23:54:20Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "a416d1a0-a506-4baa-b833-460653ff60c4", - "creationTime": "2022-12-13T23:54:20Z" - } - ] - } - }, - { - "name": "3c95a287-aaeb-464e-a79d-cad370f919b1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c95a287-aaeb-464e-a79d-cad370f919b1", - "properties": { - "accountName": "vinh-restore-fail-2identities", - "apiType": "Sql", - "creationTime": "2022-12-16T01:32:31Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "5dc84958-10f0-4c44-b51d-b860e41c4801", - "creationTime": "2022-12-16T01:32:31Z" - } - ] - } - }, - { - "name": "2b128b5f-7348-49a7-99b2-4cf75919d54e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2b128b5f-7348-49a7-99b2-4cf75919d54e", - "properties": { - "accountName": "cli-xrr-k6di52knuaghjx6ns", - "apiType": "Sql", - "creationTime": "2023-04-06T15:49:22Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "69017173-ea84-4fab-a59e-dcda978e7641", - "creationTime": "2023-04-06T15:49:23Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "c24b16be-2f6b-441f-86cb-bab05c86c299", - "creationTime": "2023-04-06T15:51:35Z" - } - ] - } - }, - { - "name": "60c98996-836d-441d-84bf-dd71663bc121", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/60c98996-836d-441d-84bf-dd71663bc121", - "properties": { - "accountName": "cli-xrr-k6di52knuaghjx6ns-restored", - "apiType": "Sql", - "creationTime": "2023-04-06T17:07:39Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b0a87252-bf99-40cb-b5bc-9afcf6580e23", - "creationTime": "2023-04-06T17:07:39Z" - } - ] - } - }, - { - "name": "4abe472a-1e61-481e-adb8-f67da4b4c694", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4abe472a-1e61-481e-adb8-f67da4b4c694", - "properties": { - "accountName": "r-database-account-6809", - "apiType": "Sql", - "creationTime": "2023-04-17T19:29:22Z", - "oldestRestorableTime": "2023-04-17T19:29:22Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b13a3cca-53ad-4ded-a795-d5c0f48e208e", - "creationTime": "2023-04-17T19:29:23Z" - } - ] - } - }, - { - "name": "7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7e2440fe-bff5-4077-b4fa-cfd35c849b3b", - "properties": { - "accountName": "r-database-account-7066", - "apiType": "Sql", - "creationTime": "2023-04-19T23:41:57Z", - "oldestRestorableTime": "2023-04-19T23:41:57Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "47687275-17cc-4eaf-842d-83592b5bcfb4", - "creationTime": "2023-04-19T23:41:58Z" - } - ] - } - }, - { - "name": "7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "properties": { - "accountName": "r-database-account-1146", - "apiType": "Sql", - "creationTime": "2023-04-20T03:27:39Z", - "oldestRestorableTime": "2023-04-20T03:27:39Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "826a06f4-7333-4d13-872b-4949e60cce95", - "creationTime": "2023-04-20T03:27:39Z" - } - ] - } - }, - { - "name": "2217666b-a543-4788-adf9-f8059e864343", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2217666b-a543-4788-adf9-f8059e864343", - "properties": { - "accountName": "cli-xrr-jvikyutenetrnlpvv-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T23:38:55Z", - "deletionTime": "2023-04-05T23:40:47Z", - "oldestRestorableTime": "2023-03-29T23:40:47Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "299aef44-c8ef-4cc0-9e04-234195bc3daa", - "creationTime": "2023-04-05T23:38:55Z", - "deletionTime": "2023-04-05T23:40:47Z" - } - ] - } - }, - { - "name": "8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8815ae2e-5940-46bb-a1c5-9aff8a53c1cc", - "properties": { - "accountName": "cli-xrr-jvikyutenetrnlpvv", - "apiType": "Sql", - "creationTime": "2023-04-05T22:22:58Z", - "deletionTime": "2023-04-05T23:40:48Z", - "oldestRestorableTime": "2023-03-29T23:40:48Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5bb2cfc-69d8-4117-aae6-985ddc57ecd4", - "creationTime": "2023-04-05T22:23:00Z", - "deletionTime": "2023-04-05T23:40:48Z" - } - ] - } - }, - { - "name": "18ad6f7b-4a4c-414a-af6e-c0c0794275a9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/18ad6f7b-4a4c-414a-af6e-c0c0794275a9", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T15:41:19Z", - "deletionTime": "2023-04-06T16:51:10Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b9fc8ff1-bb30-4f1d-962a-b9e7108a9b58", - "creationTime": "2023-04-06T15:45:43Z", - "deletionTime": "2023-04-06T16:51:10Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c666de0b-5116-4c8f-9273-e18afaa847ef", - "creationTime": "2023-04-06T15:41:19Z", - "deletionTime": "2023-04-06T16:51:10Z" - } - ] - } - }, - { - "name": "621ef049-57db-46e5-b21b-abb7d9fbc7d1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/621ef049-57db-46e5-b21b-abb7d9fbc7d1", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T17:50:09Z", - "deletionTime": "2023-04-06T18:56:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d9fe4287-0192-4d20-9c13-7d8240ff9b4e", - "creationTime": "2023-04-06T17:52:38Z", - "deletionTime": "2023-04-06T18:56:25Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d9b2f14a-b42e-47d2-94c5-9e4a669c2bd1", - "creationTime": "2023-04-06T17:50:10Z", - "deletionTime": "2023-04-06T18:56:25Z" - } - ] - } - }, - { - "name": "8107171d-0bae-4a08-9ac9-42f31d494443", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8107171d-0bae-4a08-9ac9-42f31d494443", - "properties": { - "accountName": "cli-xrr-g7yczvt2zofiguzec-restored", - "apiType": "Sql", - "creationTime": "2023-04-06T19:04:42Z", - "deletionTime": "2023-04-06T19:05:19Z", - "oldestRestorableTime": "2023-03-30T19:05:19Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b02de377-f83f-4e90-9533-f08d5e81a700", - "creationTime": "2023-04-06T19:04:42Z", - "deletionTime": "2023-04-06T19:05:19Z" - } - ] - } - }, - { - "name": "780cc0ea-0ba6-47d1-84da-ca1d24f3d411", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/780cc0ea-0ba6-47d1-84da-ca1d24f3d411", - "properties": { - "accountName": "cli-xrr-g7yczvt2zofiguzec", - "apiType": "Sql", - "creationTime": "2023-04-06T17:44:45Z", - "deletionTime": "2023-04-06T19:05:19Z", - "oldestRestorableTime": "2023-03-30T19:05:19Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "3718d4c7-c627-444e-8f6b-be2e444c55ed", - "creationTime": "2023-04-06T17:47:20Z", - "deletionTime": "2023-04-06T19:05:19Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "27e66009-ee24-4168-8c82-c65648eecb4d", - "creationTime": "2023-04-06T17:44:46Z", - "deletionTime": "2023-04-06T19:05:19Z" - } - ] - } - }, - { - "name": "3c050d72-850b-4a5c-b352-10100c9dbc9f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3c050d72-850b-4a5c-b352-10100c9dbc9f", - "properties": { - "accountName": "ps-xrr-cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-04-06T19:55:04Z", - "deletionTime": "2023-04-06T21:02:28Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "677324d5-f1fe-4862-b496-e76ae3028aac", - "creationTime": "2023-04-06T19:58:16Z", - "deletionTime": "2023-04-06T21:02:28Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "95bc63cb-8474-4d19-b075-01ac042cf578", - "creationTime": "2023-04-06T19:55:06Z", - "deletionTime": "2023-04-06T21:02:28Z" - } - ] - } - }, - { - "name": "eed95519-8c04-4871-a9a2-2a2894cb94df", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/eed95519-8c04-4871-a9a2-2a2894cb94df", - "properties": { - "accountName": "restored-ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-06T22:30:52Z", - "deletionTime": "2023-04-06T22:32:02Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "6d790f06-7de4-4cb4-9e08-83096f4b8578", - "creationTime": "2023-04-06T22:30:52Z", - "deletionTime": "2023-04-06T22:32:02Z" - } - ] - } - }, - { - "name": "fb22603e-7627-45ce-a52f-92cbb70ebd86", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fb22603e-7627-45ce-a52f-92cbb70ebd86", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:17Z", - "deletionTime": "2023-04-06T22:32:04Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "41b5569f-2256-4f98-9b6e-26c070557a53", - "creationTime": "2023-04-06T21:14:20Z", - "deletionTime": "2023-04-06T22:32:04Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d835a5bf-29c1-4c4f-bc76-fc0dca1ac730", - "creationTime": "2023-04-06T21:11:18Z", - "deletionTime": "2023-04-06T22:32:04Z" - } - ] - } - }, - { - "name": "92d85476-12b6-43c3-94dc-5e7b80acfc6f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/92d85476-12b6-43c3-94dc-5e7b80acfc6f", - "properties": { - "accountName": "amisitestpitracc1-restored1", - "apiType": "Sql", - "creationTime": "2023-04-07T05:15:13Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-31T16:42:28Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "548c7363-9c92-493b-aee5-fdcadf24d35a", - "creationTime": "2023-04-07T05:15:13Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "932dc036-7768-49c5-b84a-3f3d34c1e612", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/932dc036-7768-49c5-b84a-3f3d34c1e612", - "properties": { - "accountName": "new-acc", - "apiType": "Sql", - "creationTime": "2023-04-07T04:11:01Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-31T16:42:28Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6bd731dd-1700-464f-8899-bd368cc85aac", - "creationTime": "2023-04-07T04:11:01Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "9fbe0e1d-baac-4500-ae10-a216f9729ca6", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9fbe0e1d-baac-4500-ae10-a216f9729ca6", - "properties": { - "accountName": "amisitestpitracc1-restored1", - "apiType": "Sql", - "creationTime": "2023-04-07T18:52:04Z", - "deletionTime": "2023-04-07T19:03:48Z", - "oldestRestorableTime": "2023-03-31T19:03:48Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "992ce2d9-3bb2-4521-88e2-6da041fab90e", - "creationTime": "2023-04-07T18:52:04Z", - "deletionTime": "2023-04-07T19:03:48Z" - } - ] - } - }, - { - "name": "cc3cd261-363c-4bab-9ba7-cc5fb46602c0", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/cc3cd261-363c-4bab-9ba7-cc5fb46602c0", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T20:14:52Z", - "deletionTime": "2023-04-07T21:19:01Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d5ff53da-a80d-4a29-8a41-bb2265458254", - "creationTime": "2023-04-07T20:14:53Z", - "deletionTime": "2023-04-07T21:19:01Z" - } - ] - } - }, - { - "name": "09413a43-255a-4ddf-88c0-76edcec1c2de", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/09413a43-255a-4ddf-88c0-76edcec1c2de", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T21:36:53Z", - "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "a387f10f-908a-4c90-850a-9bbdd283b73c", - "creationTime": "2023-04-07T21:36:54Z", - "deletionTime": "2023-04-07T22:53:51Z" - } - ] - } - }, - { - "name": "758db8a5-60e2-449f-a604-e625601bb5f8", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/758db8a5-60e2-449f-a604-e625601bb5f8", - "properties": { - "accountName": "restored-ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-07T22:53:05Z", - "deletionTime": "2023-04-07T22:53:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "b42f5986-3a73-4da1-9c76-c40ad176c27d", - "creationTime": "2023-04-07T22:53:05Z", - "deletionTime": "2023-04-07T22:53:51Z" - } - ] - } - }, - { - "name": "a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a2c7c7c1-9048-43ba-b0f4-28124fd2aaab", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105-restored", - "apiType": "Sql", - "creationTime": "2023-04-10T15:47:08Z", - "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "8e488c7d-0087-4e18-bc96-9d237043a7fc", - "creationTime": "2023-04-10T15:47:08Z", - "deletionTime": "2023-04-10T15:47:59Z" - } - ] - } - }, - { - "name": "e707fcc6-0240-4633-966c-9ef1b4eec147", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e707fcc6-0240-4633-966c-9ef1b4eec147", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-10T14:28:30Z", - "deletionTime": "2023-04-10T15:47:59Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "88184430-bbae-4221-96e5-1354de1e5de2", - "creationTime": "2023-04-10T14:30:49Z", - "deletionTime": "2023-04-10T15:47:59Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "671fa58b-535f-4c1a-b0a3-f673e7bddbfb", - "creationTime": "2023-04-10T14:28:31Z", - "deletionTime": "2023-04-10T15:47:59Z" - } - ] - } - }, - { - "name": "038f848f-248e-4bae-9d05-8e153eae6852", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/038f848f-248e-4bae-9d05-8e153eae6852", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-10T17:43:02Z", - "deletionTime": "2023-04-10T18:59:57Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "5108b700-4b47-4609-bd62-4fa7fa0539c9", - "creationTime": "2023-04-10T17:43:03Z", - "deletionTime": "2023-04-10T18:59:57Z" - } - ] - } - }, - { - "name": "3347c551-f760-4ebe-8aeb-5b35070ac7f7", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3347c551-f760-4ebe-8aeb-5b35070ac7f7", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106-restored", - "apiType": "Sql", - "creationTime": "2023-04-10T18:59:04Z", - "deletionTime": "2023-04-10T18:59:58Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "cb2da128-5457-434e-a389-1b1b80b8f083", - "creationTime": "2023-04-10T18:59:04Z", - "deletionTime": "2023-04-10T18:59:58Z" - } - ] - } - }, - { - "name": "96da75d3-7481-447b-9604-492f6a4854fd", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/96da75d3-7481-447b-9604-492f6a4854fd", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T21:49:40Z", - "deletionTime": "2023-04-14T21:51:26Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "f4c62b36-0050-40e1-998f-7f66a0a2c43d", - "creationTime": "2023-04-14T21:49:40Z", - "deletionTime": "2023-04-14T21:51:26Z" - } - ] - } - }, - { - "name": "913dafbd-608a-4fc3-93ce-8f5ca6124be7", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/913dafbd-608a-4fc3-93ce-8f5ca6124be7", - "properties": { - "accountName": "ps-xrr-cosmosdb-12105", - "apiType": "Sql", - "creationTime": "2023-04-14T20:29:55Z", - "deletionTime": "2023-04-14T21:51:27Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "39d3dcc4-0ecf-49fe-a68b-d87891f01380", - "creationTime": "2023-04-14T20:32:48Z", - "deletionTime": "2023-04-14T21:51:27Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "bcac2557-d18a-406f-977d-c8a6374b411a", - "creationTime": "2023-04-14T20:29:56Z", - "deletionTime": "2023-04-14T21:51:27Z" - } - ] - } - }, - { - "name": "202a4dbe-7599-4b7e-b69d-7168f2837f3a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/202a4dbe-7599-4b7e-b69d-7168f2837f3a", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106", - "apiType": "Sql", - "creationTime": "2023-04-14T22:00:54Z", - "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "77b1870a-f938-41fe-a3e4-a83bd87a80be", - "creationTime": "2023-04-14T22:00:55Z", - "deletionTime": "2023-04-14T23:18:25Z" - } - ] - } - }, - { - "name": "c4c969be-9110-4a37-8473-00163ab95ee3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c4c969be-9110-4a37-8473-00163ab95ee3", - "properties": { - "accountName": "ps-xrr-cosmosdb-12106-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T23:17:22Z", - "deletionTime": "2023-04-14T23:18:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "56d11020-be62-4ef2-b535-d75a4a3ad01d", - "creationTime": "2023-04-14T23:17:22Z", - "deletionTime": "2023-04-14T23:18:25Z" - } - ] - } - }, - { - "name": "7c1a5422-fef5-4863-a2a6-ce07680d98bb", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7c1a5422-fef5-4863-a2a6-ce07680d98bb", - "properties": { - "accountName": "amisitestpitracc1", - "apiType": "Sql", - "creationTime": "2023-03-31T07:03:37Z", - "deletionTime": "2023-04-15T05:55:20Z", - "oldestRestorableTime": "2023-04-08T05:55:20Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "961c371c-2aea-446a-aaf3-abbbcfd2d73e", - "creationTime": "2023-04-02T17:08:56Z", - "deletionTime": "2023-04-15T05:55:20Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1d43fc2f-c366-46ab-8e14-38841a7fdfc1", - "creationTime": "2023-03-31T07:03:38Z", - "deletionTime": "2023-04-15T05:55:20Z" - } - ] - } - }, - { - "name": "3b30043c-455c-486f-98fb-f4d705658916", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3b30043c-455c-486f-98fb-f4d705658916", - "properties": { - "accountName": "r-database-account-177", - "apiType": "Sql", - "creationTime": "2023-04-17T19:11:24Z", - "deletionTime": "2023-04-17T19:14:59Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3d497d7c-c0c1-4c87-9aac-2c64a401be46", - "creationTime": "2023-04-17T19:11:25Z", - "deletionTime": "2023-04-17T19:14:59Z" - } - ] - } - }, - { - "name": "3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3fe1cde8-667d-4d1a-afe2-f8eac7745bd0", - "properties": { - "accountName": "r-database-account-5987", - "apiType": "Sql", - "creationTime": "2023-04-17T19:41:46Z", - "deletionTime": "2023-04-17T19:45:17Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "533f84f3-c315-473c-8427-a21e5666eb6a", - "creationTime": "2023-04-17T19:41:47Z", - "deletionTime": "2023-04-17T19:45:17Z" - } - ] - } - }, - { - "name": "d196e206-a656-4c8d-a68e-9812ce4f79bc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d196e206-a656-4c8d-a68e-9812ce4f79bc", - "properties": { - "accountName": "r-database-account-192", - "apiType": "Sql", - "creationTime": "2023-04-17T21:39:56Z", - "deletionTime": "2023-04-17T21:43:27Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "56ca1104-e63a-4a62-a989-d323f5054121", - "creationTime": "2023-04-17T21:39:56Z", - "deletionTime": "2023-04-17T21:43:27Z" - } - ] - } - }, - { - "name": "c0a3bbc1-fc95-40f3-80e9-806d25576bbc", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/c0a3bbc1-fc95-40f3-80e9-806d25576bbc", - "properties": { - "accountName": "r-database-account-5405", - "apiType": "Sql", - "creationTime": "2023-04-17T22:20:01Z", - "deletionTime": "2023-04-17T22:21:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "36e17308-f9d4-4164-bb08-3494bd3a4300", - "creationTime": "2023-04-17T22:20:02Z", - "deletionTime": "2023-04-17T22:21:35Z" - } - ] - } - }, - { - "name": "45618f6c-684d-44ca-a63f-35c48cb1f22c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/45618f6c-684d-44ca-a63f-35c48cb1f22c", - "properties": { - "accountName": "r-database-account-4655", - "apiType": "Sql", - "creationTime": "2023-04-17T22:44:28Z", - "deletionTime": "2023-04-17T22:51:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b38ac40d-982c-46b7-8543-8374985f0e7f", - "creationTime": "2023-04-17T22:44:28Z", - "deletionTime": "2023-04-17T22:51:35Z" - } - ] - } - }, - { - "name": "b7a602eb-c62c-4686-94de-3203389c0ca8", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b7a602eb-c62c-4686-94de-3203389c0ca8", - "properties": { - "accountName": "r-database-account-1012", - "apiType": "Sql", - "creationTime": "2023-04-17T23:20:58Z", - "deletionTime": "2023-04-17T23:22:34Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "cba81aa1-1ff7-4e1f-a41f-46929e08d5df", - "creationTime": "2023-04-17T23:20:59Z", - "deletionTime": "2023-04-17T23:22:34Z" - } - ] - } - }, - { - "name": "6e977886-5eb0-4960-8a20-66df95947300", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/6e977886-5eb0-4960-8a20-66df95947300", - "properties": { - "accountName": "r-database-account-364", - "apiType": "Sql", - "creationTime": "2023-04-17T23:38:00Z", - "deletionTime": "2023-04-17T23:54:37Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "63e0bfd9-f384-4e7b-a046-5e9292075995", - "creationTime": "2023-04-17T23:38:01Z", - "deletionTime": "2023-04-17T23:54:37Z" - } - ] - } - }, - { - "name": "b08b9da7-4548-4a01-aed7-5b69236ab9eb", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b08b9da7-4548-4a01-aed7-5b69236ab9eb", - "properties": { - "accountName": "r-database-account-5281", - "apiType": "Sql", - "creationTime": "2023-04-17T23:57:24Z", - "deletionTime": "2023-04-17T23:58:57Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "4ac58158-102d-4284-b780-5d003a8615ba", - "creationTime": "2023-04-17T23:57:25Z", - "deletionTime": "2023-04-17T23:58:57Z" - } - ] - } - }, - { - "name": "9390e99e-9079-48ac-b5cd-5760496b20ae", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9390e99e-9079-48ac-b5cd-5760496b20ae", - "properties": { - "accountName": "r-database-account-525", - "apiType": "Sql", - "creationTime": "2023-04-18T00:12:13Z", - "deletionTime": "2023-04-18T00:15:52Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b77da411-6c07-48d0-9c5e-80111da2c689", - "creationTime": "2023-04-18T00:12:14Z", - "deletionTime": "2023-04-18T00:15:52Z" - } - ] - } - }, - { - "name": "396130a8-4ded-4e10-92ab-5a252e2609ca", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/396130a8-4ded-4e10-92ab-5a252e2609ca", - "properties": { - "accountName": "r-database-account-4899", - "apiType": "Sql", - "creationTime": "2023-04-18T00:34:02Z", - "deletionTime": "2023-04-18T00:37:41Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "fda5034d-bd49-4a8e-98eb-3962584fe36c", - "creationTime": "2023-04-18T00:34:03Z", - "deletionTime": "2023-04-18T00:37:41Z" - } - ] - } - }, - { - "name": "0b561650-220e-49b2-89e7-e02c797c5104", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b561650-220e-49b2-89e7-e02c797c5104", - "properties": { - "accountName": "r-database-account-2485", - "apiType": "Sql", - "creationTime": "2023-04-18T01:04:49Z", - "deletionTime": "2023-04-18T01:08:23Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c80c0753-1c3e-4d09-84de-aa3af341ebec", - "creationTime": "2023-04-18T01:04:49Z", - "deletionTime": "2023-04-18T01:08:23Z" - } - ] - } - }, - { - "name": "9884fa67-17cc-4ab1-9611-34567fba800c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9884fa67-17cc-4ab1-9611-34567fba800c", - "properties": { - "accountName": "r-database-account-6167", - "apiType": "Sql", - "creationTime": "2023-04-18T01:21:53Z", - "deletionTime": "2023-04-18T01:33:08Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c9d166ff-65cb-4027-8f4d-cd2b823e1351", - "creationTime": "2023-04-18T01:21:54Z", - "deletionTime": "2023-04-18T01:33:08Z" - } - ] - } - }, - { - "name": "b362127b-54f7-4fd5-a5d2-0d23e3f0036d", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/b362127b-54f7-4fd5-a5d2-0d23e3f0036d", - "properties": { - "accountName": "r-database-account-7767", - "apiType": "Sql", - "creationTime": "2023-04-18T02:09:18Z", - "deletionTime": "2023-04-18T03:26:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "451df3a0-f1dd-49e9-a51f-54b36e59413c", - "creationTime": "2023-04-18T02:09:19Z", - "deletionTime": "2023-04-18T03:26:25Z" - } - ] - } - }, - { - "name": "3f551a34-02ea-40f3-9d4a-05fb5cffc82b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3f551a34-02ea-40f3-9d4a-05fb5cffc82b", - "properties": { - "accountName": "restoredaccount-2452", - "apiType": "Sql", - "creationTime": "2023-04-18T03:25:35Z", - "deletionTime": "2023-04-18T03:36:07Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "491aee71-a14e-49f6-9199-48ab60993d85", - "creationTime": "2023-04-18T03:25:35Z", - "deletionTime": "2023-04-18T03:36:07Z" - } - ] - } - }, - { - "name": "baa31ca8-6687-4ad2-81c8-698ae261d580", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/baa31ca8-6687-4ad2-81c8-698ae261d580", - "properties": { - "accountName": "r-database-account-6395", - "apiType": "Sql", - "creationTime": "2023-04-18T13:32:30Z", - "deletionTime": "2023-04-18T13:33:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "91294dbc-b175-4134-8083-e6bca7c34ebb", - "creationTime": "2023-04-18T13:32:31Z", - "deletionTime": "2023-04-18T13:33:25Z" - } - ] - } - }, - { - "name": "51a901f8-bd15-4e0f-bf4e-94fd88fecf37", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/51a901f8-bd15-4e0f-bf4e-94fd88fecf37", - "properties": { - "accountName": "r-database-account-8228", - "apiType": "Sql", - "creationTime": "2023-04-17T22:55:26Z", - "deletionTime": "2023-04-18T14:27:44Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1cbf7297-7176-4542-9fa4-49d7e5e91bfa", - "creationTime": "2023-04-17T22:55:27Z", - "deletionTime": "2023-04-18T14:27:44Z" - } - ] - } - }, - { - "name": "57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/57105be7-d9f9-49d8-8dfe-fcee1e8f4ff2", - "properties": { - "accountName": "r-database-account-9915", - "apiType": "Sql", - "creationTime": "2023-04-18T16:11:57Z", - "deletionTime": "2023-04-18T16:12:45Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b8ffc20c-97b8-465d-bdd3-60552f5a057c", - "creationTime": "2023-04-18T16:11:58Z", - "deletionTime": "2023-04-18T16:12:45Z" - } - ] - } - }, - { - "name": "7b3b3638-2bbd-47da-8416-8aca4ecc6741", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7b3b3638-2bbd-47da-8416-8aca4ecc6741", - "properties": { - "accountName": "r-database-account-7194", - "apiType": "Sql", - "creationTime": "2023-04-18T16:27:03Z", - "deletionTime": "2023-04-18T17:46:27Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f50c51e3-0925-4b0d-b12a-49116bd4c79f", - "creationTime": "2023-04-18T16:27:05Z", - "deletionTime": "2023-04-18T17:46:27Z" - } - ] - } - }, - { - "name": "81614a8b-b1e1-44a3-a223-2f2bdb60a73a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81614a8b-b1e1-44a3-a223-2f2bdb60a73a", - "properties": { - "accountName": "restoredaccount-9479", - "apiType": "Sql", - "creationTime": "2023-04-18T17:45:32Z", - "deletionTime": "2023-04-18T17:57:15Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "3edd60a8-0eb0-4d85-b25b-90c44c85b27f", - "creationTime": "2023-04-18T17:45:32Z", - "deletionTime": "2023-04-18T17:57:15Z" - } - ] - } - }, - { - "name": "a618d01f-1ae8-44b2-90d9-0e139e7c41ff", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/a618d01f-1ae8-44b2-90d9-0e139e7c41ff", - "properties": { - "accountName": "r-database-account-3726", - "apiType": "Sql", - "creationTime": "2023-04-18T18:09:59Z", - "deletionTime": "2023-04-18T18:10:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "0371b9da-8df6-4189-9e14-250f3be44384", - "creationTime": "2023-04-18T18:10:00Z", - "deletionTime": "2023-04-18T18:10:51Z" - } - ] - } - }, - { - "name": "fedcb6fb-2428-4bd1-8afa-faebdef8a10f", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/fedcb6fb-2428-4bd1-8afa-faebdef8a10f", - "properties": { - "accountName": "r-database-account-1774", - "apiType": "Sql", - "creationTime": "2023-04-18T19:06:06Z", - "deletionTime": "2023-04-18T20:23:01Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ac9a99bf-4f6b-479e-80bf-7b16a84ac481", - "creationTime": "2023-04-18T19:06:07Z", - "deletionTime": "2023-04-18T20:23:01Z" - } - ] - } - }, - { - "name": "edc97856-e68e-4881-8f7c-7939b9bd2678", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/edc97856-e68e-4881-8f7c-7939b9bd2678", - "properties": { - "accountName": "restoredaccount-4128", - "apiType": "Sql", - "creationTime": "2023-04-18T20:22:32Z", - "deletionTime": "2023-04-18T20:33:48Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "f5cf519e-fb56-4c39-963c-615683e9d6a0", - "creationTime": "2023-04-18T20:22:32Z", - "deletionTime": "2023-04-18T20:33:48Z" - } - ] - } - }, - { - "name": "34394e29-5e17-4da2-a734-ba74301275a5", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/34394e29-5e17-4da2-a734-ba74301275a5", - "properties": { - "accountName": "r-database-account-6660", - "apiType": "Sql", - "creationTime": "2023-04-18T20:47:01Z", - "deletionTime": "2023-04-18T20:47:57Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "28e95726-a165-4f67-a7e1-c416b1a9348f", - "creationTime": "2023-04-18T20:47:02Z", - "deletionTime": "2023-04-18T20:47:57Z" - } - ] - } - }, - { - "name": "ace1682c-5308-4c5d-a9db-7ff549629e40", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/ace1682c-5308-4c5d-a9db-7ff549629e40", - "properties": { - "accountName": "r-database-account-9177", - "apiType": "Sql", - "creationTime": "2023-04-18T22:42:05Z", - "deletionTime": "2023-04-18T22:42:43Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "accc8467-dc2a-4143-b608-9c2344bb1e2e", - "creationTime": "2023-04-18T22:42:06Z", - "deletionTime": "2023-04-18T22:42:43Z" - } - ] - } - }, - { - "name": "4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c9b3fc3-7ddc-4a5a-97fe-8b7d9ec014f5", - "properties": { - "accountName": "r-database-account-2021", - "apiType": "Sql", - "creationTime": "2023-04-18T23:07:37Z", - "deletionTime": "2023-04-18T23:08:08Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "16dfa240-459b-4603-85b8-a396991a5e97", - "creationTime": "2023-04-18T23:07:38Z", - "deletionTime": "2023-04-18T23:08:08Z" - } - ] - } - }, - { - "name": "f8009a8a-a683-4969-a990-03f2fbc2c357", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f8009a8a-a683-4969-a990-03f2fbc2c357", - "properties": { - "accountName": "r-database-account-8744", - "apiType": "Sql", - "creationTime": "2023-04-19T03:02:08Z", - "deletionTime": "2023-04-19T04:19:02Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "17fd7f68-0b30-4914-ba38-df23f7fd370f", - "creationTime": "2023-04-19T03:02:09Z", - "deletionTime": "2023-04-19T04:19:02Z" - } - ] - } - }, - { - "name": "133f8fa2-4579-4865-a24c-025431c27770", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/133f8fa2-4579-4865-a24c-025431c27770", - "properties": { - "accountName": "restoredaccount-3290", - "apiType": "Sql", - "creationTime": "2023-04-19T04:18:33Z", - "deletionTime": "2023-04-19T04:29:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "8f15ca6f-59e6-4bc4-8d12-e34438839844", - "creationTime": "2023-04-19T04:18:33Z", - "deletionTime": "2023-04-19T04:29:51Z" - } - ] - } - }, - { - "name": "363500e0-8574-42d3-bcb0-78b9930907ed", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/363500e0-8574-42d3-bcb0-78b9930907ed", - "properties": { - "accountName": "r-database-account-9591", - "apiType": "Sql", - "creationTime": "2023-04-19T04:42:38Z", - "deletionTime": "2023-04-19T04:43:26Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "7d495937-f573-4895-a5a2-f7a57e189e0a", - "creationTime": "2023-04-19T04:42:39Z", - "deletionTime": "2023-04-19T04:43:26Z" - } - ] - } - }, - { - "name": "539f95cf-af16-4c95-8ba6-3d96971c755e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/539f95cf-af16-4c95-8ba6-3d96971c755e", - "properties": { - "accountName": "r-database-account-8090", - "apiType": "Sql", - "creationTime": "2023-04-19T05:41:29Z", - "deletionTime": "2023-04-19T06:58:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ffff6e0c-bb13-4441-9bfb-4eab39131773", - "creationTime": "2023-04-19T05:41:30Z", - "deletionTime": "2023-04-19T06:58:53Z" - } - ] - } - }, - { - "name": "48bd7479-e12e-42d5-9693-f0795eca3d89", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/48bd7479-e12e-42d5-9693-f0795eca3d89", - "properties": { - "accountName": "restoredaccount-6404", - "apiType": "Sql", - "creationTime": "2023-04-19T06:58:18Z", - "deletionTime": "2023-04-19T07:09:02Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "fa2c002a-9218-4777-a5cd-1880bde715ea", - "creationTime": "2023-04-19T06:58:18Z", - "deletionTime": "2023-04-19T07:09:02Z" - } - ] - } - }, - { - "name": "075a5d48-f9d7-4306-b262-03b3737ba475", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/075a5d48-f9d7-4306-b262-03b3737ba475", - "properties": { - "accountName": "r-database-account-4017", - "apiType": "Sql", - "creationTime": "2023-04-19T07:21:28Z", - "deletionTime": "2023-04-19T07:22:09Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b14d2cf8-83ac-45ff-bc4e-1f199f848240", - "creationTime": "2023-04-19T07:21:29Z", - "deletionTime": "2023-04-19T07:22:09Z" - } - ] - } - }, - { - "name": "2e6d7920-9c30-41cf-ab15-20d2f5c82abf", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/2e6d7920-9c30-41cf-ab15-20d2f5c82abf", - "properties": { - "accountName": "r-database-account-2005", - "apiType": "Sql", - "creationTime": "2023-04-19T17:40:33Z", - "deletionTime": "2023-04-19T18:57:32Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f5d1cf26-ce18-43b2-9533-62904f9851a1", - "creationTime": "2023-04-19T17:40:34Z", - "deletionTime": "2023-04-19T18:57:32Z" - } - ] - } - }, - { - "name": "4ca1a638-30f9-412c-ba0e-e032a5b27651", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4ca1a638-30f9-412c-ba0e-e032a5b27651", - "properties": { - "accountName": "restoredaccount-7552", - "apiType": "Sql", - "creationTime": "2023-04-19T18:56:48Z", - "deletionTime": "2023-04-19T19:08:15Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "294a8817-cd2a-41a8-90a9-581dde2404b3", - "creationTime": "2023-04-19T18:56:48Z", - "deletionTime": "2023-04-19T19:08:15Z" - } - ] - } - }, - { - "name": "707bd438-bc4a-4206-bf34-42de3238ba79", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/707bd438-bc4a-4206-bf34-42de3238ba79", - "properties": { - "accountName": "r-database-account-646", - "apiType": "Sql", - "creationTime": "2023-04-19T19:21:04Z", - "deletionTime": "2023-04-19T19:21:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "6591ef21-988f-47ed-8b0c-1545a5528b09", - "creationTime": "2023-04-19T19:21:05Z", - "deletionTime": "2023-04-19T19:21:53Z" - } - ] - } - }, - { - "name": "5c92ee4f-9697-48ae-815d-9b14ae598781", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c92ee4f-9697-48ae-815d-9b14ae598781", - "properties": { - "accountName": "r-database-account-9891", - "apiType": "Sql", - "creationTime": "2023-04-19T20:56:22Z", - "deletionTime": "2023-04-19T22:13:46Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "53a6a001-bc9f-4171-9928-fcc9a77577e5", - "creationTime": "2023-04-19T20:56:23Z", - "deletionTime": "2023-04-19T22:13:46Z" - } - ] - } - }, - { - "name": "8c8b9024-40be-4f92-a466-8370faf4eacd", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8c8b9024-40be-4f92-a466-8370faf4eacd", - "properties": { - "accountName": "restoredaccount-8231", - "apiType": "Sql", - "creationTime": "2023-04-19T22:12:50Z", - "deletionTime": "2023-04-19T22:23:58Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "6340bdaf-07bb-45b1-b411-7921b7a52e97", - "creationTime": "2023-04-19T22:12:50Z", - "deletionTime": "2023-04-19T22:23:58Z" - } - ] - } - }, - { - "name": "5c6333bd-6bc8-4e1f-8672-9e386c60eef1", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/5c6333bd-6bc8-4e1f-8672-9e386c60eef1", - "properties": { - "accountName": "r-database-account-26", - "apiType": "Sql", - "creationTime": "2023-04-19T22:36:04Z", - "deletionTime": "2023-04-19T22:37:08Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "e9a47ca5-930f-4aa6-ac17-36a7cbe8cba8", - "creationTime": "2023-04-19T22:36:04Z", - "deletionTime": "2023-04-19T22:37:08Z" - } - ] - } - }, - { - "name": "9519c744-78d1-42ce-84bb-777e7c3cb046", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9519c744-78d1-42ce-84bb-777e7c3cb046", - "properties": { - "accountName": "r-database-account-8825", - "apiType": "Sql", - "creationTime": "2023-04-19T23:39:20Z", - "deletionTime": "2023-04-19T23:47:25Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f435cc2e-e45b-4157-8e44-37f29671a9c0", - "creationTime": "2023-04-19T23:39:21Z", - "deletionTime": "2023-04-19T23:47:25Z" - } - ] - } - }, - { - "name": "9e112cc2-439e-4cc6-aa49-7fb930652213", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9e112cc2-439e-4cc6-aa49-7fb930652213", - "properties": { - "accountName": "r-database-account-9118", - "apiType": "Sql", - "creationTime": "2023-04-19T20:20:11Z", - "deletionTime": "2023-04-19T23:48:12Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "d7145521-4702-4ca4-a561-a25cc303c858", - "creationTime": "2023-04-19T20:20:12Z", - "deletionTime": "2023-04-19T23:48:12Z" - } - ] - } - }, - { - "name": "789de828-aa5f-47fb-8313-a13a25376c97", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/789de828-aa5f-47fb-8313-a13a25376c97", - "properties": { - "accountName": "r-database-account-904", - "apiType": "Sql", - "creationTime": "2023-04-17T22:35:24Z", - "deletionTime": "2023-04-19T23:48:20Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "765fa936-f0ff-4ded-8e4a-19d48f425802", - "creationTime": "2023-04-17T22:35:25Z", - "deletionTime": "2023-04-19T23:48:20Z" - } - ] - } - }, - { - "name": "7bfa7165-82b3-40d0-bbb5-4b71c77a620c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7bfa7165-82b3-40d0-bbb5-4b71c77a620c", - "properties": { - "accountName": "r-database-account-8401", - "apiType": "Sql", - "creationTime": "2023-04-19T02:38:50Z", - "deletionTime": "2023-04-19T23:49:12Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3d83dafe-7b63-4dc2-a490-57664ae4913a", - "creationTime": "2023-04-19T02:38:51Z", - "deletionTime": "2023-04-19T23:49:12Z" - } - ] - } - }, - { - "name": "4e974916-da87-4016-bbe3-0618f3aecf2c", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4e974916-da87-4016-bbe3-0618f3aecf2c", - "properties": { - "accountName": "r-database-account-6679", - "apiType": "Sql", - "creationTime": "2023-04-17T22:29:22Z", - "deletionTime": "2023-04-19T23:53:08Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ebb1e8c4-224f-47ea-b7e1-a09f1aa3a132", - "creationTime": "2023-04-17T22:29:23Z", - "deletionTime": "2023-04-19T23:53:08Z" - } - ] - } - }, - { - "name": "d256cb21-a1a9-42a0-81db-13f0a6c1137e", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/d256cb21-a1a9-42a0-81db-13f0a6c1137e", - "properties": { - "accountName": "r-database-account-6099", - "apiType": "Sql", - "creationTime": "2023-04-18T16:25:48Z", - "deletionTime": "2023-04-19T23:53:11Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "2cf7c4ff-1b46-433d-affd-af97ad9aec94", - "creationTime": "2023-04-18T16:25:49Z", - "deletionTime": "2023-04-19T23:53:11Z" - } - ] - } - }, - { - "name": "9b3db21c-08d7-4198-bc30-4cc6808f495b", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9b3db21c-08d7-4198-bc30-4cc6808f495b", - "properties": { - "accountName": "r-database-account-5433", - "apiType": "Sql", - "creationTime": "2023-04-17T22:54:36Z", - "deletionTime": "2023-04-19T23:53:30Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "f72b5e7f-5e80-4c3e-9b0b-e8fa06258f58", - "creationTime": "2023-04-17T22:54:37Z", - "deletionTime": "2023-04-19T23:53:30Z" - } - ] - } - }, - { - "name": "030969ae-8f77-4a8c-a143-3ea7918a6a15", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/030969ae-8f77-4a8c-a143-3ea7918a6a15", - "properties": { - "accountName": "r-database-account-4785", - "apiType": "Sql", - "creationTime": "2023-04-19T23:51:43Z", - "deletionTime": "2023-04-19T23:53:36Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "1dcb01a3-a653-44fc-9622-575fe1d69e1e", - "creationTime": "2023-04-19T23:51:44Z", - "deletionTime": "2023-04-19T23:53:36Z" - } - ] - } - }, - { - "name": "f901e9d9-57d4-4939-ab5a-853d33125da9", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f901e9d9-57d4-4939-ab5a-853d33125da9", - "properties": { - "accountName": "r-database-account-4144", - "apiType": "Sql", - "creationTime": "2023-04-17T22:38:31Z", - "deletionTime": "2023-04-19T23:53:44Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "ef92e1be-ac4e-4aaa-9525-ba1966156f15", - "creationTime": "2023-04-17T22:38:32Z", - "deletionTime": "2023-04-19T23:53:44Z" - } - ] - } - }, - { - "name": "e2c2398c-3aa1-4d04-84da-64bb557292f3", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e2c2398c-3aa1-4d04-84da-64bb557292f3", - "properties": { - "accountName": "r-database-account-2826", - "apiType": "Sql", - "creationTime": "2023-04-19T19:54:34Z", - "deletionTime": "2023-04-19T23:53:47Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "c03d8e05-59e3-420e-a9be-fba97b9d05bf", - "creationTime": "2023-04-19T19:54:35Z", - "deletionTime": "2023-04-19T23:53:47Z" - } - ] - } - }, - { - "name": "33c24168-b5c2-47d4-9762-d577d358c06a", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/33c24168-b5c2-47d4-9762-d577d358c06a", - "properties": { - "accountName": "r-database-account-168", - "apiType": "Sql", - "creationTime": "2023-04-19T22:47:58Z", - "deletionTime": "2023-04-19T23:54:08Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "047a0df3-b96b-4dfe-acf1-88b2de702c89", - "creationTime": "2023-04-19T22:47:59Z", - "deletionTime": "2023-04-19T23:54:08Z" - } - ] - } - }, - { - "name": "9f83a8dd-4124-4fde-8ae0-88721048ec59", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/9f83a8dd-4124-4fde-8ae0-88721048ec59", - "properties": { - "accountName": "r-database-account-1528", - "apiType": "Sql", - "creationTime": "2023-04-17T21:38:01Z", - "deletionTime": "2023-04-19T23:54:11Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "b3d11030-af2a-4a09-9290-79c78ece3c5a", - "creationTime": "2023-04-17T21:38:02Z", - "deletionTime": "2023-04-19T23:54:11Z" - } - ] - } - }, - { - "name": "e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7607f5d-7598-4adf-abf0-c9bb4d25d3a4", - "properties": { - "accountName": "r-database-account-5849", - "apiType": "Sql", - "creationTime": "2023-04-20T00:32:15Z", - "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "4266d527-63fd-44c4-9d73-2d68a8ab41b9", - "creationTime": "2023-04-20T00:32:16Z", - "deletionTime": "2023-04-20T01:48:35Z" - } - ] - } - }, - { - "name": "e7a884a0-d941-44cf-a344-2dd1d8c91284", - "location": "West Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e7a884a0-d941-44cf-a344-2dd1d8c91284", - "properties": { - "accountName": "restoredaccount-6463", - "apiType": "Sql", - "creationTime": "2023-04-20T01:47:59Z", - "deletionTime": "2023-04-20T01:48:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "6e242568-ac8e-4a84-8fae-a1dcd16744f4", - "creationTime": "2023-04-20T01:47:59Z", - "deletionTime": "2023-04-20T01:48:35Z" - } - ] - } - }, - { - "name": "d88e6a3c-687d-4990-a516-da739070bf81", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81", - "properties": { - "accountName": "kal-continuous7", - "apiType": "Sql", - "creationTime": "2022-06-07T20:09:38Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "09904716-38a7-46f3-bf7e-486b79c84510", - "creationTime": "2022-06-07T20:09:39Z" - } - ] - } - }, - { - "name": "4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/4dcbac33-7fe1-498b-8a8d-165bbdc6ede5", - "properties": { - "accountName": "kal-continuous7-restored1", - "apiType": "Sql", - "creationTime": "2022-06-10T19:23:44Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "5075a7fd-3ed4-415d-ac3d-b4391350887f", - "creationTime": "2022-06-10T19:23:44Z" - } - ] - } - }, - { - "name": "82a1f64c-cea7-473e-827b-6fde3e1debde", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/82a1f64c-cea7-473e-827b-6fde3e1debde", - "properties": { - "accountName": "kal-continuous7-demorestore", - "apiType": "Sql", - "creationTime": "2022-06-10T21:20:46Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "de3fa8f6-f2b3-487f-acc1-ea8850240997", - "creationTime": "2022-06-10T21:20:46Z" - } - ] - } - }, - { - "name": "fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e", - "properties": { - "accountName": "test-billing-continuous30", - "apiType": "Sql", - "creationTime": "2022-07-28T21:54:20Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0605cd3-ba26-434e-acdd-61b7f64fb1e0", - "creationTime": "2022-07-28T21:54:21Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f", - "creationTime": "2022-08-31T21:09:14Z" - }, - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "15b05286-8b06-430f-bb5e-c192eb6a98c9", - "creationTime": "2022-08-31T22:24:21Z" - } - ] - } - }, - { - "name": "e84733a9-ee18-456c-b12b-1d37e542608b", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b", - "properties": { - "accountName": "new-cosmsosdb-account", - "apiType": "Sql", - "creationTime": "2022-08-31T20:34:40Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "af27e000-3eb9-45db-ab59-d21f99e3826c", - "creationTime": "2022-08-31T20:34:40Z" - } - ] - } - }, - { - "name": "40da9f3a-19cd-481e-bc27-56c7815cff2e", - "location": "North Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/40da9f3a-19cd-481e-bc27-56c7815cff2e", - "properties": { - "accountName": "amisitestpitracc", - "apiType": "Sql", - "creationTime": "2023-03-29T04:22:22Z", - "deletionTime": "2023-04-07T16:42:28Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "83933ddd-3e7a-47e8-ae7d-e332bcdee488", - "creationTime": "2023-03-29T04:22:23Z", - "deletionTime": "2023-03-30T19:57:43Z" - }, - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "8c91601a-e3b5-4b0e-9965-2d89709ce1e5", - "creationTime": "2023-03-29T07:29:18Z", - "deletionTime": "2023-04-07T16:42:28Z" - } - ] - } - }, - { - "name": "2414c009-8022-442c-9ab6-81c276eb2a99", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/2414c009-8022-442c-9ab6-81c276eb2a99", - "properties": { - "accountName": "vinh-periodic", - "apiType": "Sql", - "creationTime": "2022-06-06T19:53:54Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20f9a62e-6ab7-4bc7-b537-d43eb766c2e4", - "creationTime": "2022-06-06T19:53:54Z" - } - ] - } - }, - { - "name": "5716280d-381e-4045-b936-d0edbfc7317b", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/5716280d-381e-4045-b936-d0edbfc7317b", - "properties": { - "accountName": "databaseaccount9284", - "apiType": "Sql", - "creationTime": "2022-09-20T05:50:05Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "8c0d58ba-f16e-42f8-8277-0f7f5657be62", - "creationTime": "2022-09-20T05:50:06Z" - } - ] - } - }, - { - "name": "34a9cb27-53a5-4143-9af7-810285110075", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/34a9cb27-53a5-4143-9af7-810285110075", - "properties": { - "accountName": "databaseaccount6234", - "apiType": "Sql", - "creationTime": "2022-09-20T09:04:22Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "87bf458d-04cf-44cd-9b49-b4776e535776", - "creationTime": "2022-09-20T09:04:23Z" - } - ] - } - }, - { - "name": "0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/0bf6dfd3-45bb-4318-907a-fcdb00f35b31", - "properties": { - "accountName": "databaseaccount8251", - "apiType": "Sql", - "creationTime": "2022-09-20T16:29:44Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "e40ce1fd-96a4-4d23-9173-12352893944a", - "creationTime": "2022-09-20T16:29:45Z" - } - ] - } - }, - { - "name": "f1e396eb-9afb-4d45-b5fc-40dce096f232", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/f1e396eb-9afb-4d45-b5fc-40dce096f232", - "properties": { - "accountName": "sql-portal-test", - "apiType": "Sql", - "creationTime": "2023-03-08T18:47:23Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "6ddbf45f-ccc5-4d70-ab68-2b8c47e50b17", - "creationTime": "2023-03-08T18:47:23Z" - } - ] - } - }, - { - "name": "165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "location": "Central US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/165ca8be-1fab-43ac-88ac-cd1377c89f6a", - "properties": { - "accountName": "dsapaliga-xrr-cu", - "apiType": "Sql", - "creationTime": "2023-03-30T15:10:46Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "10c96f59-4469-4e1c-9717-86d22f0f16fc", - "creationTime": "2023-03-30T15:10:47Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "2499d7da-3079-4cf8-add3-29c7894a839c", - "creationTime": "2023-03-30T15:13:00Z" - } - ] - } - }, - { - "name": "0be166a4-3d75-478d-b427-7b0d05fa800b", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/0be166a4-3d75-478d-b427-7b0d05fa800b", - "properties": { - "accountName": "databaseaccount2058", - "apiType": "MongoDB", - "creationTime": "2022-04-14T02:10:48Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9d4cc1c0-9c27-4c3e-bc20-7da1e6a7bfed", - "creationTime": "2022-04-14T02:10:49Z" - } - ] - } - }, - { - "name": "fce807d5-4358-4ea1-8130-0439181f6be0", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fce807d5-4358-4ea1-8130-0439181f6be0", - "properties": { - "accountName": "vinh-demo-periodic", - "apiType": "Sql", - "creationTime": "2022-05-26T04:53:41Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "cff0fc89-a51f-4cd4-940c-00fe4222616d", - "creationTime": "2022-05-26T04:53:41Z" - } - ] - } - }, - { - "name": "fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fd507b20-6cc3-4138-b3c0-c8a9b406ab9c", - "properties": { - "accountName": "vinh-demo-continous30", - "apiType": "Sql", - "creationTime": "2022-05-26T03:29:41Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9923c156-acee-40b7-a90a-8d33c6c05006", - "creationTime": "2022-05-26T03:29:42Z" - } - ] - } - }, - { - "name": "9177692a-0db9-4c0c-af1d-af0310418b43", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9177692a-0db9-4c0c-af1d-af0310418b43", - "properties": { - "accountName": "vinh-demo-continous7", - "apiType": "Sql", - "creationTime": "2022-05-26T04:14:49Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d6119954-fcde-4d83-af4e-2a0768ac1f33", - "creationTime": "2022-05-26T04:14:50Z" - } - ] - } - }, - { - "name": "957160c2-96d5-4ce2-843c-1d2977e952ec", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/957160c2-96d5-4ce2-843c-1d2977e952ec", - "properties": { - "accountName": "vinh-demo-periodic2", - "apiType": "Sql", - "creationTime": "2022-05-26T18:12:07Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3e0be6bc-420e-4f35-b7d5-f01a21069d18", - "creationTime": "2022-05-26T18:12:07Z" - } - ] - } - }, - { - "name": "3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/3c7c638a-a7a0-4bb9-a285-946a6f55a57f", - "properties": { - "accountName": "vinh-demo-continous7-2", - "apiType": "Sql", - "creationTime": "2022-05-26T18:05:53Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "02d51bf7-eca0-424e-8080-7282b03118a7", - "creationTime": "2022-05-26T18:05:53Z" - } - ] - } - }, - { - "name": "9484f425-a747-4e73-b8c4-04983e984315", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/9484f425-a747-4e73-b8c4-04983e984315", - "properties": { - "accountName": "clip2dbd2gollbc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "417edccf-bc7e-429c-9ba3-482e02ac9911", - "creationTime": "2023-04-07T19:56:09Z", - "deletionTime": "2023-04-07T19:56:51Z" - } - ] - } - }, - { - "name": "392ebda9-973c-473e-993b-d3b6ffb4b93f", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/392ebda9-973c-473e-993b-d3b6ffb4b93f", - "properties": { - "accountName": "cli3fpzmlckewgo", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T19:36:38Z", - "deletionTime": "2023-04-07T19:56:52Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "9467e6b5-7dc4-4df1-b294-26e57ccd4054", - "creationTime": "2023-04-07T19:36:40Z", - "deletionTime": "2023-04-07T19:56:52Z" - } - ] - } - }, - { - "name": "6b4db75b-1661-423c-8c99-a59df2c8b750", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/6b4db75b-1661-423c-8c99-a59df2c8b750", - "properties": { - "accountName": "cliftacbeowmtnb", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "3b6bd5fc-b344-47da-beae-48bf09a109fc", - "creationTime": "2023-04-07T21:41:14Z", - "deletionTime": "2023-04-07T21:42:59Z" - } - ] - } - }, - { - "name": "b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/b840d536-517f-43c3-9fe1-4e21c0c6ef0b", - "properties": { - "accountName": "clipofi2jwwbtu4", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:22:17Z", - "deletionTime": "2023-04-07T21:42:59Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "f02dc3bb-71d9-4a23-a098-3f6c5f2ffacf", - "creationTime": "2023-04-07T21:22:18Z", - "deletionTime": "2023-04-07T21:42:59Z" - } - ] - } - }, - { - "name": "c95badde-2545-4446-a2d2-816a9f2a5b86", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c95badde-2545-4446-a2d2-816a9f2a5b86", - "properties": { - "accountName": "cliwq55chmmvzvu", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T13:41:40Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "d4bed555-e94d-4dbc-8d7a-15127160dacd", - "creationTime": "2023-04-14T13:41:42Z", - "deletionTime": "2023-04-14T14:02:52Z" - } - ] - } - }, - { - "name": "ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec276bde-3201-4cf4-ba7c-bd4e67be12c6", - "properties": { - "accountName": "clixsitnvbfssqd", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "4a101578-b27e-4884-adf8-7401b753b2f1", - "creationTime": "2023-04-14T14:01:14Z", - "deletionTime": "2023-04-14T14:02:52Z" - } - ] - } - }, - { - "name": "a874b5bc-e1da-462e-9606-6400be4c6d1e", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/a874b5bc-e1da-462e-9606-6400be4c6d1e", - "properties": { - "accountName": "clinwxgmq26mrzy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T14:50:51Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "0c417371-741c-4ec9-bcb9-c53bd62ddb93", - "creationTime": "2023-04-14T14:50:52Z", - "deletionTime": "2023-04-14T15:10:01Z" - } - ] - } - }, - { - "name": "2c1894bc-08b2-419e-b56f-435537f0bd10", - "location": "West US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2c1894bc-08b2-419e-b56f-435537f0bd10", - "properties": { - "accountName": "clibaor2akp53uy", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "76680fdf-ff30-41e5-a14d-c42bd0dac5b1", - "creationTime": "2023-04-14T15:09:14Z", - "deletionTime": "2023-04-14T15:10:01Z" - } - ] - } - }, - { - "name": "40dbd153-3d36-42b7-8649-48e6307849f9", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40dbd153-3d36-42b7-8649-48e6307849f9", - "properties": { - "accountName": "cliiumnemwk33v5", - "apiType": "Sql", - "creationTime": "2023-04-14T16:48:09Z", - "oldestRestorableTime": "2023-04-14T16:48:09Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "17c67645-f2d5-4acf-bb4c-ee90a8cf5835", - "creationTime": "2023-04-14T16:48:10Z" - } - ] - } - }, - { - "name": "3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5a762d-b911-4aba-bc47-ad35c9f6541b", - "properties": { - "accountName": "cli-continuous30-cylyo7wg-restored", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b2324fa2-825d-447e-89cf-f2f09ffd648b", - "creationTime": "2023-03-24T16:01:18Z", - "deletionTime": "2023-03-24T16:01:53Z" - } - ] - } - }, - { - "name": "287b9f5a-bb35-40e0-b700-ee70a28067ed", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/287b9f5a-bb35-40e0-b700-ee70a28067ed", - "properties": { - "accountName": "cli-continuous30-cylyo7wg", - "apiType": "Sql", - "creationTime": "2023-03-24T15:42:44Z", - "deletionTime": "2023-03-24T16:01:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "5d8b31f3-cb6e-4db0-a4c0-7b166daf581c", - "creationTime": "2023-03-24T15:42:45Z", - "deletionTime": "2023-03-24T16:01:53Z" - } - ] - } - }, - { - "name": "8c9286c5-c880-449c-9030-327de00e36b6", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8c9286c5-c880-449c-9030-327de00e36b6", - "properties": { - "accountName": "cli-continuous30-wuye4s75", - "apiType": "Sql", - "creationTime": "2023-03-24T16:04:54Z", - "deletionTime": "2023-03-24T16:12:17Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "80ee88d8-f357-45ad-819b-5a909d2aba92", - "creationTime": "2023-03-24T16:04:55Z", - "deletionTime": "2023-03-24T16:12:17Z" - } - ] - } - }, - { - "name": "a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a8fd941b-eddd-4d65-9a60-1e8c1c081ef7", - "properties": { - "accountName": "cli-continuous30-qpysbnmc", - "apiType": "Sql", - "creationTime": "2023-03-24T16:45:16Z", - "deletionTime": "2023-03-24T16:52:22Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b040ec40-4669-49a9-a959-0ae681f97f7b", - "creationTime": "2023-03-24T16:45:17Z", - "deletionTime": "2023-03-24T16:52:22Z" - } - ] - } - }, - { - "name": "2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2478ed22-2b63-4ed5-bf22-73f56eb0bc10", - "properties": { - "accountName": "cli-continuous30-4uv42csa", - "apiType": "Sql", - "creationTime": "2023-03-24T17:01:08Z", - "deletionTime": "2023-03-24T17:07:36Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8b3fa30a-934c-4804-b7b3-88f1710ca66f", - "creationTime": "2023-03-24T17:01:09Z", - "deletionTime": "2023-03-24T17:07:36Z" - } - ] - } - }, - { - "name": "88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bd53de-c0a7-4b2c-89fd-be15ec2fad05", - "properties": { - "accountName": "cli-continuous30-e6tglvvh", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:31Z", - "deletionTime": "2023-03-24T19:24:33Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "350ccecf-2b3a-4b16-925a-42162219a8b5", - "creationTime": "2023-03-24T19:18:32Z", - "deletionTime": "2023-03-24T19:24:33Z" - } - ] - } - }, - { - "name": "bbc21107-730f-460e-a806-f73643e95a9b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bbc21107-730f-460e-a806-f73643e95a9b", - "properties": { - "accountName": "cli-continuous30-mgbfodqo", - "apiType": "Sql", - "creationTime": "2023-03-29T20:28:56Z", - "deletionTime": "2023-03-29T20:31:58Z", - "oldestRestorableTime": "2023-03-22T20:31:58Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "b7678157-ad62-436f-b396-194b0c9da6ec", - "creationTime": "2023-03-29T20:28:57Z", - "deletionTime": "2023-03-29T20:31:58Z" - } - ] - } - }, - { - "name": "5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e34f927-a83e-4c76-adad-f7dea5ed9d2f", - "properties": { - "accountName": "cli-continuous30-pqnqtvrw", - "apiType": "Sql", - "creationTime": "2023-03-29T20:35:21Z", - "deletionTime": "2023-03-29T20:38:56Z", - "oldestRestorableTime": "2023-03-22T20:38:56Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "08bc5a9e-78ca-4dcb-8d14-c39abe9c251c", - "creationTime": "2023-03-29T20:37:50Z", - "deletionTime": "2023-03-29T20:38:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2f3ba4b4-4730-4c8c-a6cd-b3cc944b4468", - "creationTime": "2023-03-29T20:35:22Z", - "deletionTime": "2023-03-29T20:38:56Z" - } - ] - } - }, - { - "name": "043ba9a3-51e9-4399-959a-95b2acbb03ab", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/043ba9a3-51e9-4399-959a-95b2acbb03ab", - "properties": { - "accountName": "cli-continuous30-nbcgdudl", - "apiType": "Sql", - "creationTime": "2023-03-29T20:49:15Z", - "deletionTime": "2023-03-29T20:52:54Z", - "oldestRestorableTime": "2023-03-22T20:52:54Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "59892378-9021-4b61-b1d7-bdf51ccf14a6", - "creationTime": "2023-03-29T20:51:44Z", - "deletionTime": "2023-03-29T20:52:54Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "29f145ff-dc62-4ad6-9347-64d458ecc7f0", - "creationTime": "2023-03-29T20:49:16Z", - "deletionTime": "2023-03-29T20:52:54Z" - } - ] - } - }, - { - "name": "3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3b4a5a19-6858-4927-ae5e-89f3b4f49886", - "properties": { - "accountName": "cli-continuous30-fvguiiqd", - "apiType": "Sql", - "creationTime": "2023-03-29T20:58:03Z", - "deletionTime": "2023-03-29T21:26:03Z", - "oldestRestorableTime": "2023-03-22T21:26:03Z", - "restorableLocations": [ - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "74472ff7-f101-4fb4-a616-ff4523ed2112", - "creationTime": "2023-03-29T21:00:45Z", - "deletionTime": "2023-03-29T21:26:03Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "977cc9ff-6a7b-4c45-9990-44c830c767ad", - "creationTime": "2023-03-29T20:58:04Z", - "deletionTime": "2023-03-29T21:26:03Z" - } - ] - } - }, - { - "name": "648c8b93-36da-440c-801c-19d18e3b3f21", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/648c8b93-36da-440c-801c-19d18e3b3f21", - "properties": { - "accountName": "cli-continuous30-of2nmx5u", - "apiType": "Sql", - "creationTime": "2023-03-29T22:12:53Z", - "deletionTime": "2023-03-29T22:16:03Z", - "oldestRestorableTime": "2023-03-22T22:16:03Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "448c2170-cb28-4eb2-8bb9-2300cea3c6e4", - "creationTime": "2023-03-29T22:12:54Z", - "deletionTime": "2023-03-29T22:16:03Z" - } - ] - } - }, - { - "name": "c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c6d25cd3-c7ea-4ed0-8646-318ec06733e5", - "properties": { - "accountName": "cli-continuous30-guwsy4ak", - "apiType": "Sql", - "creationTime": "2023-03-29T22:43:18Z", - "deletionTime": "2023-03-29T22:48:52Z", - "oldestRestorableTime": "2023-03-22T22:48:52Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9c08caa-e5ef-4e86-8266-f93bdd6d5d01", - "creationTime": "2023-03-29T22:45:41Z", - "deletionTime": "2023-03-29T22:48:52Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f77fdef1-41f5-44e7-89fc-a1a6b46c6ab3", - "creationTime": "2023-03-29T22:43:19Z", - "deletionTime": "2023-03-29T22:48:52Z" - } - ] - } - }, - { - "name": "751f535c-90ad-422c-8791-d85058c83f19", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/751f535c-90ad-422c-8791-d85058c83f19", - "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h-restored", - "apiType": "Sql", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d67f871f-55c3-4d8d-9b0d-5725d0c9e11f", - "creationTime": "2023-04-05T22:46:48Z", - "deletionTime": "2023-04-05T22:47:27Z" - } - ] - } - }, - { - "name": "7f80e153-eb85-455e-9a80-c79ecce45fcc", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7f80e153-eb85-455e-9a80-c79ecce45fcc", - "properties": { - "accountName": "cli-systemid-kq6yvu46yp4h", - "apiType": "Sql", - "creationTime": "2023-04-05T22:25:06Z", - "deletionTime": "2023-04-05T22:47:27Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "482bfbd7-1403-452b-92d2-fd4470b3bc90", - "creationTime": "2023-04-05T22:25:07Z", - "deletionTime": "2023-04-05T22:47:27Z" - } - ] - } - }, - { - "name": "4643f4c0-a808-47e8-8da1-b82ad90e3064", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4643f4c0-a808-47e8-8da1-b82ad90e3064", - "properties": { - "accountName": "cli-systemid-pml7r44tlwdv-restored", - "apiType": "Sql", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ab8e641e-2576-4e2b-9eff-9022d6873ca9", - "creationTime": "2023-04-07T16:05:21Z", - "deletionTime": "2023-04-07T16:06:54Z" - } - ] - } - }, - { - "name": "9962f6da-506f-408b-927f-4eb07a12c382", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9962f6da-506f-408b-927f-4eb07a12c382", - "properties": { - "accountName": "cli-systemid-pml7r44tlwdv", - "apiType": "Sql", - "creationTime": "2023-04-07T15:43:38Z", - "deletionTime": "2023-04-07T16:06:55Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "988f7cf5-7ce1-4dab-b3e9-07c4338fe811", - "creationTime": "2023-04-07T15:43:39Z", - "deletionTime": "2023-04-07T16:06:55Z" - } - ] - } - }, - { - "name": "27b84bf3-b593-482e-a54a-69ccc62caa24", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27b84bf3-b593-482e-a54a-69ccc62caa24", - "properties": { - "accountName": "cli-continuous30-5xp42uvg", - "apiType": "Sql", - "creationTime": "2023-04-07T16:35:15Z", - "deletionTime": "2023-04-07T16:38:01Z", - "oldestRestorableTime": "2023-03-31T16:38:01Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2e544e28-b972-4b1a-9a39-59d0f691a971", - "creationTime": "2023-04-07T16:35:16Z", - "deletionTime": "2023-04-07T16:38:01Z" - } - ] - } - }, - { - "name": "16f06a51-7d1e-47f2-ba72-b988c09ef026", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/16f06a51-7d1e-47f2-ba72-b988c09ef026", - "properties": { - "accountName": "cli-continuous7-kadtogihc", - "apiType": "Sql", - "creationTime": "2023-04-07T16:56:03Z", - "deletionTime": "2023-04-07T16:57:45Z", - "oldestRestorableTime": "2023-03-31T16:56:56Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "23688f3d-5e40-439a-91c2-b4c48abb262c", - "creationTime": "2023-04-07T16:56:04Z", - "deletionTime": "2023-04-07T16:57:45Z" - } - ] - } - }, - { - "name": "e283ef11-8edd-45d6-8a3f-8456e55147ce", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e283ef11-8edd-45d6-8a3f-8456e55147ce", - "properties": { - "accountName": "cli-continuous7-ghrp5g2r3", - "apiType": "Sql", - "creationTime": "2023-04-07T17:01:55Z", - "deletionTime": "2023-04-07T17:04:46Z", - "oldestRestorableTime": "2023-03-31T17:04:46Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "e448e628-c72a-4702-a70e-537e796f38fa", - "creationTime": "2023-04-07T17:01:56Z", - "deletionTime": "2023-04-07T17:04:46Z" - } - ] - } - }, - { - "name": "53c25e9f-44ca-4509-adcd-23802185cba8", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/53c25e9f-44ca-4509-adcd-23802185cba8", - "properties": { - "accountName": "cli-periodic-d6qxquiv72md", - "apiType": "Sql", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z", - "oldestRestorableTime": "2023-04-07T17:18:47Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "03d8b9fa-e1e3-4575-9e74-e12d89db858f", - "creationTime": "2023-04-07T17:18:47Z", - "deletionTime": "2023-04-07T17:21:35Z" - } - ] - } - }, - { - "name": "71c2477d-9580-4ca8-8ce3-0cf088a01ba2", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71c2477d-9580-4ca8-8ce3-0cf088a01ba2", - "properties": { - "accountName": "cliufubmalcsuyb", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "bc55ee23-cfd9-45e2-b903-b530cda64dd6", - "creationTime": "2023-04-07T17:52:17Z", - "deletionTime": "2023-04-07T17:52:51Z" - } - ] - } - }, - { - "name": "d82b5511-2bc1-4ae5-908c-df3587d7044d", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d82b5511-2bc1-4ae5-908c-df3587d7044d", - "properties": { - "accountName": "clitfyptqa45syc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T17:33:20Z", - "deletionTime": "2023-04-07T17:52:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "39d1fe05-a2fb-4d45-9d7a-2452ea35e3ac", - "creationTime": "2023-04-07T17:33:21Z", - "deletionTime": "2023-04-07T17:52:53Z" - } - ] - } - }, - { - "name": "329d5785-2f04-451c-a748-f79d0f562ff9", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/329d5785-2f04-451c-a748-f79d0f562ff9", - "properties": { - "accountName": "cliahilffivwqwi", - "apiType": "MongoDB", - "creationTime": "2023-04-07T19:26:23Z", - "deletionTime": "2023-04-07T19:31:01Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "272a2ae5-b407-4ccb-9388-40caa200abe9", - "creationTime": "2023-04-07T19:26:24Z", - "deletionTime": "2023-04-07T19:31:01Z" - } - ] - } - }, - { - "name": "3c242e93-29a4-47b6-98b5-ce5bc39c18ef", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3c242e93-29a4-47b6-98b5-ce5bc39c18ef", - "properties": { - "accountName": "cli5nu6pl77n5ia", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:12:03Z", - "deletionTime": "2023-04-07T20:16:06Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "86be718b-b336-4455-87a9-ca1ba3061f7b", - "creationTime": "2023-04-07T20:12:04Z", - "deletionTime": "2023-04-07T20:16:06Z" - } - ] - } - }, - { - "name": "ced5610b-4422-469f-a9ca-f83235fea285", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ced5610b-4422-469f-a9ca-f83235fea285", - "properties": { - "accountName": "clisrkiadnudmcc", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T20:25:32Z", - "deletionTime": "2023-04-07T20:29:54Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "43869c93-7996-4ee7-8ded-14f85ed06827", - "creationTime": "2023-04-07T20:25:33Z", - "deletionTime": "2023-04-07T20:29:54Z" - } - ] - } - }, - { - "name": "b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3497ad3-c09e-4af1-96a7-5b9f9fefa07d", - "properties": { - "accountName": "cliypixaxarcyzp", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:36:05Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "ca514481-97bb-4bb7-82ef-a1a302786529", - "creationTime": "2023-04-07T20:36:06Z", - "deletionTime": "2023-04-07T20:56:57Z" - } - ] - } - }, - { - "name": "4c7b927e-f807-4b90-9afb-dc3f951f5999", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4c7b927e-f807-4b90-9afb-dc3f951f5999", - "properties": { - "accountName": "clilnfxvj3jbdds", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9f171d35-9e8f-4ae1-8521-fadbef751b1a", - "creationTime": "2023-04-07T20:54:57Z", - "deletionTime": "2023-04-07T20:56:57Z" - } - ] - } - }, - { - "name": "fa921917-3a2e-4f7b-9616-e64a2e22e259", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fa921917-3a2e-4f7b-9616-e64a2e22e259", - "properties": { - "accountName": "cliwoaphmlu77h5", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T21:56:14Z", - "deletionTime": "2023-04-07T21:59:20Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d7b2a5f3-a3ef-42bf-bed0-c81e0a618748", - "creationTime": "2023-04-07T21:56:15Z", - "deletionTime": "2023-04-07T21:59:20Z" - } - ] - } - }, - { - "name": "b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b3b91a2e-2bfb-4b4f-a6a0-2eb37fc8b5f6", - "properties": { - "accountName": "clioh53zckfrcxk", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T22:04:54Z", - "deletionTime": "2023-04-07T22:09:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "64e2c97d-cbdc-42f0-bf62-88b012d9d647", - "creationTime": "2023-04-07T22:04:55Z", - "deletionTime": "2023-04-07T22:09:53Z" - } - ] - } - }, - { - "name": "1509ab3b-1a49-449e-beb1-2c57ab09af03", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1509ab3b-1a49-449e-beb1-2c57ab09af03", - "properties": { - "accountName": "cli7cixib236qbg", - "apiType": "Sql", - "creationTime": "2023-04-08T17:25:42Z", - "deletionTime": "2023-04-08T17:29:36Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "12b3702b-44ec-46e7-a1e2-aee716e0a6dc", - "creationTime": "2023-04-08T17:25:44Z", - "deletionTime": "2023-04-08T17:29:36Z" - } - ] - } - }, - { - "name": "8cae61e8-ba0e-4a5f-b1b6-1f586992e780", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8cae61e8-ba0e-4a5f-b1b6-1f586992e780", - "properties": { - "accountName": "cli-continuous7-hfvk4t4fj", - "apiType": "Sql", - "creationTime": "2023-04-13T14:48:07Z", - "deletionTime": "2023-04-13T14:49:43Z", - "oldestRestorableTime": "2023-04-06T14:49:43Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9bf1db58-6e68-4c10-ba77-a648db045332", - "creationTime": "2023-04-13T14:48:08Z", - "deletionTime": "2023-04-13T14:49:43Z" - } - ] - } - }, - { - "name": "656f9307-43c6-4dc6-8e9f-30174bf79a24", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/656f9307-43c6-4dc6-8e9f-30174bf79a24", - "properties": { - "accountName": "cli-continuous7-zputoz3gu", - "apiType": "Sql", - "creationTime": "2023-04-14T13:23:19Z", - "deletionTime": "2023-04-14T13:26:29Z", - "oldestRestorableTime": "2023-04-07T13:26:29Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "585453e2-2f69-4672-b634-2cc4d3c7e42f", - "creationTime": "2023-04-14T13:23:20Z", - "deletionTime": "2023-04-14T13:26:29Z" - } - ] - } - }, - { - "name": "36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36ca1b7d-a2b7-4eac-9a66-5defbdf5901e", - "properties": { - "accountName": "cli-continuous7-737ullqld", - "apiType": "Sql", - "creationTime": "2023-04-14T13:36:13Z", - "deletionTime": "2023-04-14T13:38:00Z", - "oldestRestorableTime": "2023-04-07T13:38:00Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4899a1ce-1ef8-47db-abb3-99729b57f628", - "creationTime": "2023-04-14T13:36:14Z", - "deletionTime": "2023-04-14T13:38:00Z" - } - ] - } - }, - { - "name": "35fa8217-556c-4f7b-acb6-dde585f4f758", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35fa8217-556c-4f7b-acb6-dde585f4f758", - "properties": { - "accountName": "clidiym44m6kuui", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0ceee035-6175-4453-862a-87096ed36d89", - "creationTime": "2023-04-14T14:26:49Z", - "deletionTime": "2023-04-14T14:27:29Z" - } - ] - } - }, - { - "name": "d90ffd7e-6a54-4ba2-b756-8625142c227a", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d90ffd7e-6a54-4ba2-b756-8625142c227a", - "properties": { - "accountName": "clifxznjcelc2k7", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:07:29Z", - "deletionTime": "2023-04-14T14:27:29Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6f5ef76a-21c6-4412-b686-cac51ee7cf87", - "creationTime": "2023-04-14T14:07:30Z", - "deletionTime": "2023-04-14T14:27:29Z" - } - ] - } - }, - { - "name": "6614834e-47d5-47ed-a9f4-bb0a04e36f1b", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6614834e-47d5-47ed-a9f4-bb0a04e36f1b", - "properties": { - "accountName": "clifdo3gehahcp3", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T14:32:21Z", - "deletionTime": "2023-04-14T14:36:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f406a453-3550-42ff-8073-2a8817bccc24", - "creationTime": "2023-04-14T14:32:22Z", - "deletionTime": "2023-04-14T14:36:53Z" - } - ] - } - }, - { - "name": "fdf708d8-be1d-4581-98bf-edcf87ef87af", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fdf708d8-be1d-4581-98bf-edcf87ef87af", - "properties": { - "accountName": "clijvrcnqk7clgr", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:39:15Z", - "deletionTime": "2023-04-14T15:59:46Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "afbd7881-4e09-46e2-9506-67a900da4ec2", - "creationTime": "2023-04-14T15:39:16Z", - "deletionTime": "2023-04-14T15:59:46Z" - } - ] - } - }, - { - "name": "84f8e018-f026-4a8c-94df-a833c68247b4", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/84f8e018-f026-4a8c-94df-a833c68247b4", - "properties": { - "accountName": "cliw5rqb5ajsohh", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "1b4515dc-7766-4d11-b4b5-0c29e0eb9928", - "creationTime": "2023-04-14T15:57:50Z", - "deletionTime": "2023-04-14T15:59:47Z" - } - ] - } - }, - { - "name": "9b468180-f881-4f58-a6dd-5ff0fe3f787f", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9b468180-f881-4f58-a6dd-5ff0fe3f787f", - "properties": { - "accountName": "cliz3js7jmkwxxb", - "apiType": "Sql", - "creationTime": "2023-04-14T16:51:53Z", - "deletionTime": "2023-04-14T16:55:53Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "d6afbaa7-78b0-45df-9fe9-acd6d132f78f", - "creationTime": "2023-04-14T16:51:54Z", - "deletionTime": "2023-04-14T16:55:53Z" - } - ] - } - }, - { - "name": "7b198b9f-c763-407a-aa48-dc3d61c7be06", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7b198b9f-c763-407a-aa48-dc3d61c7be06", - "properties": { - "accountName": "cliamicotk3huk3", - "apiType": "MongoDB", - "creationTime": "2023-04-14T16:59:34Z", - "deletionTime": "2023-04-14T17:04:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "8e63549c-5c29-4fd3-b6d1-87419c87c643", - "creationTime": "2023-04-14T16:59:35Z", - "deletionTime": "2023-04-14T17:04:35Z" - } - ] - } - }, - { - "name": "f476ae9b-17ca-4d90-a156-4bd46f0789bd", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f476ae9b-17ca-4d90-a156-4bd46f0789bd", - "properties": { - "accountName": "cli7fcxogqa75ng", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-14T17:07:39Z", - "deletionTime": "2023-04-14T17:12:37Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "91f684ab-b8b3-47a2-a45d-fd1f07953ab6", - "creationTime": "2023-04-14T17:07:40Z", - "deletionTime": "2023-04-14T17:12:37Z" - } - ] - } - }, - { - "name": "6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c6cd1ab-ac6e-4a58-b334-a556a2fea5c3", - "properties": { - "accountName": "clibijii3gdxu7r", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T17:16:06Z", - "deletionTime": "2023-04-14T17:19:35Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "92ef7f28-e452-4ce9-9696-59828b108914", - "creationTime": "2023-04-14T17:16:07Z", - "deletionTime": "2023-04-14T17:19:35Z" - } - ] - } - }, - { - "name": "25dcfb03-55c0-4e09-8d17-5a418c3f6fff", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/25dcfb03-55c0-4e09-8d17-5a418c3f6fff", - "properties": { - "accountName": "cli-continuous7-ixtyb5gvo", - "apiType": "Sql", - "creationTime": "2023-04-14T17:21:52Z", - "deletionTime": "2023-04-14T17:23:42Z", - "oldestRestorableTime": "2023-04-07T17:22:55Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "21adcfcd-1f18-4d47-8bc6-ed406e8894fe", - "creationTime": "2023-04-14T17:21:53Z", - "deletionTime": "2023-04-14T17:23:42Z" - } - ] - } - }, - { - "name": "8f356085-cb27-4fd1-8034-0ede9767cb80", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f356085-cb27-4fd1-8034-0ede9767cb80", - "properties": { - "accountName": "cli-continuous30-expjec5z", - "apiType": "Sql", - "creationTime": "2023-04-14T17:25:24Z", - "deletionTime": "2023-04-14T17:27:06Z", - "oldestRestorableTime": "2023-04-07T17:27:06Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "9102466b-9f6b-48be-a169-b6a835ad6ff5", - "creationTime": "2023-04-14T17:25:25Z", - "deletionTime": "2023-04-14T17:27:06Z" - } - ] - } - }, - { - "name": "5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a8fcee2-0172-44c4-8eb1-75fbe1cdd7cb", - "properties": { - "accountName": "cli-periodic-ppe7oaphbkgu", - "apiType": "Sql", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z", - "oldestRestorableTime": "2023-04-14T18:01:21Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "083332bf-463e-4d76-aefa-02b4d43e5538", - "creationTime": "2023-04-14T18:01:21Z", - "deletionTime": "2023-04-14T18:03:46Z" - } - ] - } - }, - { - "name": "bd79cd3a-850f-4d3b-8f41-51ca911c6595", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bd79cd3a-850f-4d3b-8f41-51ca911c6595", - "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g-restored", - "apiType": "Sql", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "baa3c33c-dc48-44ab-8825-87604b399b83", - "creationTime": "2023-04-14T18:30:44Z", - "deletionTime": "2023-04-14T18:31:44Z" - } - ] - } - }, - { - "name": "03924bd4-1a64-4eb8-b128-df95e14cd043", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03924bd4-1a64-4eb8-b128-df95e14cd043", - "properties": { - "accountName": "cli-systemid-ppze3bdfpo3g", - "apiType": "Sql", - "creationTime": "2023-04-14T18:08:00Z", - "deletionTime": "2023-04-14T18:31:44Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4d8571a1-02f5-4db6-8cf1-e25fa3894c1f", - "creationTime": "2023-04-14T18:08:01Z", - "deletionTime": "2023-04-14T18:31:44Z" - } - ] - } - }, - { - "name": "fe4322b0-09a5-4654-8baf-d93c9be45dc5", - "location": "East US 2", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe4322b0-09a5-4654-8baf-d93c9be45dc5", - "properties": { - "accountName": "cli7i23nmwwvyik", - "apiType": "Table, Sql", - "creationTime": "2023-04-14T18:36:04Z", - "deletionTime": "2023-04-14T18:40:37Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "05b87ed4-c762-446f-83ef-73fdf2775e62", - "creationTime": "2023-04-14T18:36:05Z", - "deletionTime": "2023-04-14T18:40:37Z" - } - ] - } - }, - { - "name": "f4004a76-8173-4d36-9590-6090cce37a4d", - "location": "West Europe", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d", - "properties": { - "accountName": "aholdtest", - "apiType": "MongoDB", - "creationTime": "2021-07-01T19:34:24Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Europe", - "regionalDatabaseAccountInstanceId": "f7a9416f-25a2-45fd-902d-f3679e08854e", - "creationTime": "2021-07-01T19:34:25Z" - } - ] - } - }, - { - "name": "3564d9f8-5f2d-4d00-a66f-5d370d970371", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371", - "properties": { - "accountName": "targetacct112", - "apiType": "Sql", - "creationTime": "2021-03-01T10:33:41Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2eb33e65-1263-4a25-a18a-e7a85875f2a8", - "creationTime": "2021-03-01T10:33:41Z" - } - ] - } - }, - { - "name": "74ebfb99-1914-4ea9-b802-736b5bda12a7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7", - "properties": { - "accountName": "pitrmongotest", - "apiType": "MongoDB", - "creationTime": "2020-10-01T17:27:22Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73ef95f2-a338-4afc-8bb2-6fc3b0071d58", - "creationTime": "2020-10-01T17:27:23Z" - } - ] - } - }, - { - "name": "a081024d-5e38-45c1-b1cb-9c99552d42b3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3", - "properties": { - "accountName": "pitrmongowithsnapshots", - "apiType": "MongoDB", - "creationTime": "2021-01-07T19:45:07Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cef7a5af-c690-49cd-b661-53f9241552bf", - "creationTime": "2021-01-07T19:45:07Z" - } - ] - } - }, - { - "name": "36d321ce-5c39-4d66-9347-47beebff1142", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142", - "properties": { - "accountName": "test0319-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:28:13Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de", - "creationTime": "2021-07-07T21:28:13Z" - }, - { - "locationName": "West US 2", - "regionalDatabaseAccountInstanceId": "225506b6-641c-47a5-b7a4-2fa096d68535", - "creationTime": "2021-07-07T21:28:13Z" - } - ] - } - }, - { - "name": "1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37", - "properties": { - "accountName": "pitracctdemo2", - "apiType": "Sql", - "creationTime": "2020-08-11T02:34:23Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7419408f-e6af-4596-a76b-c31ca62a54ca", - "creationTime": "2020-08-11T02:34:24Z" - } - ] - } - }, - { - "name": "b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35", - "properties": { - "accountName": "ptr-target", - "apiType": "Sql", - "creationTime": "2021-01-05T22:25:24Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1f68340e-49a4-45df-9a2a-804cd8ab1795", - "creationTime": "2021-01-05T22:25:24Z" - } - ] - } - }, - { - "name": "9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74", - "properties": { - "accountName": "pitrmongotest-restore", - "apiType": "MongoDB", - "creationTime": "2020-10-01T21:24:45Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "75c41286-d7f2-4594-b9f2-87f6c9843cf8", - "creationTime": "2020-10-01T21:24:45Z" - } - ] - } - }, - { - "name": "6fd844b3-71af-4e89-9b9d-f829945272bf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf", - "properties": { - "accountName": "pitrdemo1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:28:59Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "af26f717-b6ff-4eac-864c-17e759891ae8", - "creationTime": "2020-10-15T17:29:00Z" - } - ] - } - }, - { - "name": "3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245", - "properties": { - "accountName": "pitrdemorestored1015", - "apiType": "Sql", - "creationTime": "2020-10-15T17:37:20Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2f4857ad-25c3-4e2f-883a-abe35c5f5e0c", - "creationTime": "2020-10-15T17:37:20Z" - } - ] - } - }, - { - "name": "23e99a35-cd36-4df4-9614-f767a03b9995", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995", - "properties": { - "accountName": "subbannageeta", - "apiType": "Sql", - "creationTime": "2020-08-08T01:04:53Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30701557-ecf8-43ce-8810-2c8be01dccf9", - "creationTime": "2020-08-08T01:04:53Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8283b088-b67d-4975-bfbe-0705e3e7a599", - "creationTime": "2020-08-08T01:15:44Z" - } - ] - } - }, - { - "name": "afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c", - "properties": { - "accountName": "scottkirill", - "apiType": "Sql", - "creationTime": "2021-04-15T17:21:20Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3dcb79a-b56a-4dff-9f8e-76a29285e724", - "creationTime": "2021-04-15T17:21:20Z" - } - ] - } - }, - { - "name": "01c9a078-6ca2-43fd-92c7-632167c86590", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590", - "properties": { - "accountName": "test0319-pitr-r1", - "apiType": "Sql", - "creationTime": "2021-07-07T21:54:07Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1074b897-ee89-466c-8a35-a1e695d7f3b9", - "creationTime": "2021-07-07T21:54:07Z" - } - ] - } - }, - { - "name": "35b64b76-2e55-4fa5-a1de-724c60f5deca", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca", - "properties": { - "accountName": "onboardingtestaccount0124", - "apiType": "Sql", - "creationTime": "2022-01-24T20:24:43Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf", - "creationTime": "2022-01-24T20:24:44Z" - } - ] - } - }, - { - "name": "3a8ddfcb-1b82-47f3-9577-971315b7427f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f", - "properties": { - "accountName": "onboardingtestaccount0124-restored", - "apiType": "Sql", - "creationTime": "2022-01-24T20:48:23Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0cfd50fd-bb27-4b8f-9123-20b438a41cb1", - "creationTime": "2022-01-24T20:48:23Z" - } - ] - } - }, - { - "name": "01652628-d4ef-449d-846e-38e8250f0b9a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01652628-d4ef-449d-846e-38e8250f0b9a", - "properties": { - "accountName": "vinh-table2-restore", - "apiType": "Table, Sql", - "creationTime": "2022-04-07T00:48:08Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ca19196-24d1-4153-b5ee-d879baa33be6", - "creationTime": "2022-04-07T00:48:08Z" - } - ] - } - }, - { - "name": "4b754475-3b23-4485-9205-87ac1661af13", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13", - "properties": { - "accountName": "vinhpitr30-cli", - "apiType": "Sql", - "creationTime": "2022-04-29T23:50:20Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "94b37f83-7256-4645-8cbb-72b101f7a0a1", - "creationTime": "2022-04-29T23:50:21Z" - } - ] - } - }, - { - "name": "ce240906-61b1-41c3-a54c-bd90e3d8ec70", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce240906-61b1-41c3-a54c-bd90e3d8ec70", - "properties": { - "accountName": "vinhperiodic3-cli", - "apiType": "Sql", - "creationTime": "2022-06-03T17:21:23Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2afbd7a9-dcda-4918-9f95-12c08764ac49", - "creationTime": "2022-06-03T17:21:23Z" - } - ] - } - }, - { - "name": "023add2e-531e-4574-a7df-4d09c97d548d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/023add2e-531e-4574-a7df-4d09c97d548d", - "properties": { - "accountName": "vinh-pitr7-portal", - "apiType": "Sql", - "creationTime": "2022-05-31T19:24:32Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "46e03f50-a458-4cb9-8b02-dbf1b7677291", - "creationTime": "2022-05-31T19:24:34Z" - } - ] - } - }, - { - "name": "b67f7b8c-2b1b-417d-833d-1e3e393b192c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b67f7b8c-2b1b-417d-833d-1e3e393b192c", - "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7", - "apiType": "Sql", - "creationTime": "2022-05-31T23:36:11Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e6569c6-8716-4984-bf16-74085c75c705", - "creationTime": "2022-05-31T23:36:11Z" - } - ] - } - }, - { - "name": "d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d69f8bdc-b00e-43f3-99b1-9ffac0a1b6bc", - "properties": { - "accountName": "vinh-periodic-portal-tobemigrated-to-7-porta", - "apiType": "Sql", - "creationTime": "2022-06-03T18:42:58Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a8401fa-5297-4189-ba47-a7b172ea489b", - "creationTime": "2022-06-03T18:42:58Z" - } - ] - } - }, - { - "name": "3808b68e-7cae-4b91-901b-e29b35b311be", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3808b68e-7cae-4b91-901b-e29b35b311be", - "properties": { - "accountName": "vinh-periodic-again", - "apiType": "Sql", - "creationTime": "2022-06-10T20:01:48Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a519926d-1463-4af1-ba30-a1b6ef5d3989", - "creationTime": "2022-06-10T20:01:48Z" - } - ] - } - }, - { - "name": "cc09ab90-3342-4aa9-a95d-3f6677cfd792", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc09ab90-3342-4aa9-a95d-3f6677cfd792", - "properties": { - "accountName": "vinh-periodic-again2", - "apiType": "Sql", - "creationTime": "2022-06-10T23:57:37Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b8bed17e-e976-498a-98ef-02b76476dead", - "creationTime": "2022-06-10T23:57:37Z" - } - ] - } - }, - { - "name": "83b9ed65-b665-45e6-b06f-baf9b0205304", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/83b9ed65-b665-45e6-b06f-baf9b0205304", - "properties": { - "accountName": "vinh-gremlin-again", - "apiType": "Gremlin, Sql", - "creationTime": "2022-07-28T01:55:28Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9df9dde5-97a0-4404-9f07-31997cd4b8b4", - "creationTime": "2022-07-28T01:55:28Z" - } - ] - } - }, - { - "name": "df774a43-6e6f-4725-82d0-67c18c69a906", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/df774a43-6e6f-4725-82d0-67c18c69a906", - "properties": { - "accountName": "vinh-table-tennis-cli-0190", - "apiType": "Table, Sql", - "creationTime": "2022-08-11T05:19:28Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1bc9461e-3e52-4108-90ac-a99375fc0e81", - "creationTime": "2022-08-11T05:19:28Z" - } - ] - } - }, - { - "name": "f8c9b302-e047-4f58-b920-fd92e5fbaa3d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d", - "properties": { - "accountName": "ddhamothsqlpitracc", - "apiType": "Sql", - "creationTime": "2022-10-12T07:15:50Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "936e589a-70ad-4853-b983-64629561b40c", - "creationTime": "2022-10-12T07:15:51Z" - } - ] - } - }, - { - "name": "ca7a5371-47b2-4ae2-b0a4-307fb80273fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb", - "properties": { - "accountName": "ddhamothmongopitracc", - "apiType": "MongoDB", - "creationTime": "2022-10-12T07:18:54Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce33f178-92b2-42a4-9b0e-5aed43d00f6d", - "creationTime": "2022-10-12T07:18:55Z" - } - ] - } - }, - { - "name": "847ea1b0-fe40-404a-a5e1-e32e7e0ea588", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847ea1b0-fe40-404a-a5e1-e32e7e0ea588", - "properties": { - "accountName": "dsapaligadbkeytest", - "apiType": "Sql", - "creationTime": "2022-10-27T16:53:54Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c0d16b9e-d2b7-4350-969d-9ed321868f1f", - "creationTime": "2022-10-27T16:53:56Z" - } - ] - } - }, - { - "name": "3bd6c3ea-33e5-49a7-b67f-be767d228c41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41", - "properties": { - "accountName": "ddhamothpitrsqlacc2", - "apiType": "Sql", - "creationTime": "2022-11-15T21:30:17Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00d5a7da-4291-4ea6-8c30-c0c9cdb954fc", - "creationTime": "2022-11-15T21:30:18Z" - } - ] - } - }, - { - "name": "019422e0-378d-4191-b142-4f23fd0c1d0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c", - "properties": { - "accountName": "vinkumsql", - "apiType": "Sql", - "creationTime": "2022-12-06T19:35:15Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f8e2ead-8114-4853-b60f-30b6b0d8e200", - "creationTime": "2022-12-06T19:35:16Z" - } - ] - } - }, - { - "name": "d5e8f5f9-66d2-4417-b752-9c46e28b78f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d5e8f5f9-66d2-4417-b752-9c46e28b78f5", - "properties": { - "accountName": "dsapaliga-monitor-test2", - "apiType": "Sql", - "creationTime": "2022-12-09T16:57:51Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cb1bb6e0-898f-4c43-b69f-932bd87a74ac", - "creationTime": "2022-12-09T16:57:51Z" - } - ] - } - }, - { - "name": "75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff", - "properties": { - "accountName": "nikhiltestmig", - "apiType": "Sql", - "creationTime": "2022-12-15T19:23:56Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "785f9939-a7bc-4696-bdd2-d8e2e2f55d72", - "creationTime": "2022-12-15T19:23:56Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "efe37686-f44b-4a3e-8955-40f46c101f47", - "creationTime": "2022-12-19T06:05:45Z" - } - ] - } - }, - { - "name": "2bf685e1-2106-4a9c-a218-7f5e49d008a5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5", - "properties": { - "accountName": "nikhil-multi-region-pitr", - "apiType": "Sql", - "creationTime": "2022-12-19T06:00:50Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "930298bb-0c4f-43ee-b7d9-365fbd6e96d5", - "creationTime": "2022-12-19T06:00:52Z" - } - ] - } - }, - { - "name": "d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b", - "properties": { - "accountName": "test-account23", - "apiType": "Sql", - "creationTime": "2022-12-24T18:24:52Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ecde616-a04b-4a95-8340-69ee01bff25f", - "creationTime": "2022-12-24T18:24:53Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "bcd3a857-d005-4eb9-b83b-d50878cc58a4", - "creationTime": "2022-12-24T18:27:11Z" - } - ] - } - }, - { - "name": "c0e85028-dfc8-4f38-acb6-9230bf01f3ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad", - "properties": { - "accountName": "testpitr", - "apiType": "Sql", - "creationTime": "2022-12-27T20:37:00Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf", - "creationTime": "2022-12-27T20:37:02Z" - } - ] - } - }, - { - "name": "04f78e7e-2737-4057-9b76-b47fa1a672e5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5", - "properties": { - "accountName": "readregionrestore-test", - "apiType": "Sql", - "creationTime": "2023-01-09T23:54:38Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b", - "creationTime": "2023-01-09T23:54:38Z" - } - ] - } - }, - { - "name": "082db2b8-f98a-4959-94eb-8eabfb71ad51", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/082db2b8-f98a-4959-94eb-8eabfb71ad51", - "properties": { - "accountName": "vinhpitr30-cli-arm-restore", - "apiType": "Sql", - "creationTime": "2023-02-06T21:33:23Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f6602e1d-30b8-4012-bba8-27d223143b1c", - "creationTime": "2023-02-06T21:33:23Z" - } - ] - } - }, - { - "name": "342f3d00-4060-4667-bbe1-72ac477ffa19", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/342f3d00-4060-4667-bbe1-72ac477ffa19", - "properties": { - "accountName": "grem-test", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-06T19:09:58Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f3a9b26f-9928-4846-99cf-3417ae0f3970", - "creationTime": "2023-03-06T19:09:59Z" - } - ] - } - }, - { - "name": "49e7884b-f72a-4a31-90c6-85d8ac831528", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49e7884b-f72a-4a31-90c6-85d8ac831528", - "properties": { - "accountName": "mongo-test-1", - "apiType": "MongoDB", - "creationTime": "2023-03-06T19:26:33Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0797b62d-b10f-4667-bef6-8f1e1dd67288", - "creationTime": "2023-03-06T19:26:34Z" - } - ] - } - }, - { - "name": "4c6bb551-3e38-4ba5-acbb-76842541abe5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c6bb551-3e38-4ba5-acbb-76842541abe5", - "properties": { - "accountName": "sql-test-1", - "apiType": "Sql", - "creationTime": "2023-03-06T19:26:23Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e29473aa-cb2d-49eb-b677-0083ee2fb623", - "creationTime": "2023-03-06T19:26:24Z" - } - ] - } - }, - { - "name": "277fd382-acb2-4cc6-8702-8e4fbc09bd8c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/277fd382-acb2-4cc6-8702-8e4fbc09bd8c", - "properties": { - "accountName": "tables-test-1", - "apiType": "Table, Sql", - "creationTime": "2023-03-06T19:30:24Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5496d2c2-08e4-4250-9df9-c7bf47d4cc65", - "creationTime": "2023-03-06T19:30:25Z" - } - ] - } - }, - { - "name": "4cadd2d6-8f0c-4382-951c-3d9ce509dbef", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef", - "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:32:50Z", - "oldestRestorableTime": "2023-03-28T14:32:50Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "508bb3b9-304a-4f22-98dc-e526e7675164", - "creationTime": "2023-03-28T14:32:51Z" - } - ] - } - }, - { - "name": "9c508d5f-d54b-4d93-9d6f-70e89a4b688b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T14:53:31Z", - "oldestRestorableTime": "2023-03-28T14:53:31Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5909c49b-017d-4eb7-bac9-afcbe6dea25e", - "creationTime": "2023-03-28T14:53:32Z" - } - ] - } - }, - { - "name": "63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/63c806a9-04ed-4ab5-ab3b-b99f8badf0e6", - "properties": { - "accountName": "dsapaliga-xrr-test", - "apiType": "Sql", - "creationTime": "2023-03-30T04:00:57Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "19fa5bd0-36a8-4769-8e58-088c5dfd2416", - "creationTime": "2023-03-30T04:00:58Z" - } - ] - } - }, - { - "name": "8a50203c-14a6-4ab7-8ec5-5217c6365c41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a50203c-14a6-4ab7-8ec5-5217c6365c41", - "properties": { - "accountName": "dsapaliga-xrr-cli2", - "apiType": "Sql", - "creationTime": "2023-03-30T04:23:35Z", - "oldestRestorableTime": "2023-04-13T03:28:11Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e73f7ea-4a9e-4423-8e19-85dd670b9350", - "creationTime": "2023-03-30T04:23:36Z" - }, - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a862a627-679b-4b9e-812a-d7f6045e4aca", - "creationTime": "2023-03-30T04:25:59Z" - } - ] - } - }, - { - "name": "f6d09874-07de-4a66-988b-6fa8f3fa1e28", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28", - "properties": { - "accountName": "r-grem-db-account-938", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:55Z", - "oldestRestorableTime": "2023-04-05T19:15:55Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6ec79e-9a22-4b72-8059-e1ab5a731fad", - "creationTime": "2023-04-05T19:15:56Z" - } - ] - } - }, - { - "name": "528ccf38-78f4-4096-82fd-29e09c61c8fc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc", - "properties": { - "accountName": "r-table-account-9379", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:45:49Z", - "oldestRestorableTime": "2023-04-06T01:45:49Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bb934786-50aa-47cf-a7af-7c9fccca8557", - "creationTime": "2023-04-06T01:45:51Z" - } - ] - } - }, - { - "name": "7edd8b68-1cba-481c-b74a-1db578c11dbc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc", - "properties": { - "accountName": "restoredaccount-5362", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:03:48Z", - "oldestRestorableTime": "2023-04-06T02:03:48Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5", - "creationTime": "2023-04-06T02:03:48Z" - } - ] - } - }, - { - "name": "a35295a6-1229-4eed-a75e-1780a2e2eddf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf", - "properties": { - "accountName": "r-table-account-5626", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T02:12:24Z", - "oldestRestorableTime": "2023-04-06T02:12:24Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50ae78d1-30ba-44a6-aaf3-20a19a399d7e", - "creationTime": "2023-04-06T02:12:25Z" - } - ] - } - }, - { - "name": "96eed3f1-6edd-4080-bec5-e5fddea98f95", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95", - "properties": { - "accountName": "r-table-account-1300", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:23:30Z", - "oldestRestorableTime": "2023-04-06T06:23:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5dad4036-c76f-4e59-a427-03df369647e6", - "creationTime": "2023-04-06T06:23:31Z" - } - ] - } - }, - { - "name": "c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a", - "properties": { - "accountName": "restoredaccount-9934", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:40:38Z", - "oldestRestorableTime": "2023-04-06T06:40:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc7821d3-2238-4041-88db-9aae6faee521", - "creationTime": "2023-04-06T06:40:38Z" - } - ] - } - }, - { - "name": "688cf5e5-7073-438b-bc68-1792ad8e1c94", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/688cf5e5-7073-438b-bc68-1792ad8e1c94", - "properties": { - "accountName": "cli3grog6psgdfn", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T17:59:19Z", - "oldestRestorableTime": "2023-04-06T17:59:19Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "4cd06091-5c47-43ad-b0bf-fb979b7533fa", - "creationTime": "2023-04-06T17:59:20Z" - } - ] - } - }, - { - "name": "b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77d12ba-3a62-4855-82e8-d9407a8c0c5f", - "properties": { - "accountName": "clil3ignfqgk6kz", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:02:42Z", - "oldestRestorableTime": "2023-04-06T18:02:42Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c77b294f-a637-4027-975d-da170e374748", - "creationTime": "2023-04-06T18:02:43Z" - } - ] - } - }, - { - "name": "4656b731-172b-4064-8514-f327e6841751", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4656b731-172b-4064-8514-f327e6841751", - "properties": { - "accountName": "cliysii3c7g3auw", - "apiType": "Sql", - "creationTime": "2023-04-06T18:00:38Z", - "oldestRestorableTime": "2023-04-06T18:00:38Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b9235d1c-5834-4b45-bc65-f9a29f47ec94", - "creationTime": "2023-04-06T18:00:39Z" - } - ] - } - }, - { - "name": "66ee5eed-4837-4f5d-80f4-95e2016421ec", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66ee5eed-4837-4f5d-80f4-95e2016421ec", - "properties": { - "accountName": "clihhqescxfepto", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:03:34Z", - "oldestRestorableTime": "2023-04-06T18:03:34Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ea538718-f1f8-4e2e-a9ad-16cdecd56e09", - "creationTime": "2023-04-06T18:03:35Z" - } - ] - } - }, - { - "name": "86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86843e4f-1ac6-46f0-88d5-6f7cce6d47e4", - "properties": { - "accountName": "clib27b72hyhtjp", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:02Z", - "oldestRestorableTime": "2023-04-06T18:02:02Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3834645c-999a-41af-986b-d25af57e0dd9", - "creationTime": "2023-04-06T18:02:03Z" - } - ] - } - }, - { - "name": "9cdd6500-1062-40a0-8c15-67c8f241c9f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9cdd6500-1062-40a0-8c15-67c8f241c9f7", - "properties": { - "accountName": "clio3vmbb3n7afz", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:07:13Z", - "oldestRestorableTime": "2023-04-06T18:07:13Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "35268718-9800-40de-871e-bdac4532b569", - "creationTime": "2023-04-06T18:07:14Z" - } - ] - } - }, - { - "name": "6e728bb3-0b89-479a-8a99-5d1f1e4d502b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e728bb3-0b89-479a-8a99-5d1f1e4d502b", - "properties": { - "accountName": "cliuoo2ldjhxpwj", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:04:25Z", - "oldestRestorableTime": "2023-04-06T18:04:25Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dd6e2d1-a2dc-4b93-a408-3924c8839fb5", - "creationTime": "2023-04-06T18:04:26Z" - } - ] - } - }, - { - "name": "6f3be6df-288f-4700-9e2a-91ec0669cf05", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3be6df-288f-4700-9e2a-91ec0669cf05", - "properties": { - "accountName": "clizy6bsjdyjuwo", - "apiType": "Sql", - "creationTime": "2023-04-06T18:03:13Z", - "oldestRestorableTime": "2023-04-06T18:03:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "643830de-f0fd-42ce-ba2e-3da65b2524d6", - "creationTime": "2023-04-06T18:03:14Z" - } - ] - } - }, - { - "name": "3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cd6441e-29e7-4de4-9bdf-e538bed8c8fb", - "properties": { - "accountName": "clizcfq53tcsj7v", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:04:50Z", - "oldestRestorableTime": "2023-04-06T18:04:50Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4483f369-3304-4757-b262-933936c2b241", - "creationTime": "2023-04-06T18:04:52Z" - } - ] - } - }, - { - "name": "20f08e86-d5df-4d41-9778-7ba7c559249c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20f08e86-d5df-4d41-9778-7ba7c559249c", - "properties": { - "accountName": "cli2gdxmqiqo4ik", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:58Z", - "oldestRestorableTime": "2023-04-06T18:02:58Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc500b4-07fe-4239-8523-b2084acf0d12", - "creationTime": "2023-04-06T18:02:58Z" - } - ] - } - }, - { - "name": "7c4d2403-86b1-4730-9c42-621e55185f1c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c4d2403-86b1-4730-9c42-621e55185f1c", - "properties": { - "accountName": "cligsqzmjlnuq5j", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:06:34Z", - "oldestRestorableTime": "2023-04-06T18:06:34Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "a7abf39e-a25b-484c-b618-c619262989cc", - "creationTime": "2023-04-06T18:06:35Z" - } - ] - } - }, - { - "name": "3ecb1118-70eb-4fef-b785-77d8b0f45e93", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93", - "properties": { - "accountName": "r-grem-db-account-7826", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:27:30Z", - "oldestRestorableTime": "2023-04-06T18:27:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a", - "creationTime": "2023-04-06T18:27:31Z" - } - ] - } - }, - { - "name": "85449877-b9ec-40e5-8f86-d8cefc438fae", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85449877-b9ec-40e5-8f86-d8cefc438fae", - "properties": { - "accountName": "cliec3z5o2473ut", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:31:12Z", - "oldestRestorableTime": "2023-04-06T18:31:12Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80ed5340-f854-4a99-a940-41ec87f0a9e3", - "creationTime": "2023-04-06T18:31:13Z" - } - ] - } - }, - { - "name": "f22441cc-76e0-46f6-9a16-9ca6970da16b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22441cc-76e0-46f6-9a16-9ca6970da16b", - "properties": { - "accountName": "clinrylxz344nf3", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:44Z", - "oldestRestorableTime": "2023-04-06T18:29:44Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6cbf8a02-dbd4-489a-a79d-8f96bc192a81", - "creationTime": "2023-04-06T18:29:45Z" - } - ] - } - }, - { - "name": "41bea1a7-0992-4956-a8f2-2aa776d92df5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41bea1a7-0992-4956-a8f2-2aa776d92df5", - "properties": { - "accountName": "clilaesevwusylf", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:34:21Z", - "oldestRestorableTime": "2023-04-06T18:34:21Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f402b1d8-2d58-4285-888d-f0e8e24ad833", - "creationTime": "2023-04-06T18:34:23Z" - } - ] - } - }, - { - "name": "07aaeea4-4475-4b6b-afcf-987bef9b5c35", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/07aaeea4-4475-4b6b-afcf-987bef9b5c35", - "properties": { - "accountName": "cli7p3qq5cporx7", - "apiType": "Sql", - "creationTime": "2023-04-06T18:29:35Z", - "oldestRestorableTime": "2023-04-06T18:29:35Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c9337a1-9e76-4755-b9c7-6bc29c13bba5", - "creationTime": "2023-04-06T18:29:36Z" - } - ] - } - }, - { - "name": "0a30bc60-d556-4999-abb2-4b7a61f4608e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a30bc60-d556-4999-abb2-4b7a61f4608e", - "properties": { - "accountName": "clij75qd5uyobmj", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:31:13Z", - "oldestRestorableTime": "2023-04-06T18:31:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e7fa093-67ef-4ba4-a12a-077086f8cffa", - "creationTime": "2023-04-06T18:31:14Z" - } - ] - } - }, - { - "name": "8a7d6175-2174-495f-9147-ade59959d7a1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1", - "properties": { - "accountName": "r-grem-db-account-5687", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:34:51Z", - "oldestRestorableTime": "2023-04-06T18:34:51Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76ee69fb-0d99-461e-94bf-0d64823293b2", - "creationTime": "2023-04-06T18:34:52Z" - } - ] - } - }, - { - "name": "91df614a-d17c-4510-8727-354fe0d1447d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91df614a-d17c-4510-8727-354fe0d1447d", - "properties": { - "accountName": "clivh5sbv5jm2tn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:55Z", - "oldestRestorableTime": "2023-04-06T18:35:55Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7f929620-a761-47c9-921d-3775c86b2241", - "creationTime": "2023-04-06T18:35:56Z" - } - ] - } - }, - { - "name": "073071e8-3f6e-4510-9175-440346e61824", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/073071e8-3f6e-4510-9175-440346e61824", - "properties": { - "accountName": "clipmrcd5m37yeh", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:27Z", - "oldestRestorableTime": "2023-04-06T18:34:27Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f84f5b93-b7ef-485f-bd42-8a39027945be", - "creationTime": "2023-04-06T18:34:28Z" - } - ] - } - }, - { - "name": "3fba8106-fd42-4a61-a3f0-3067fec50c69", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fba8106-fd42-4a61-a3f0-3067fec50c69", - "properties": { - "accountName": "clieik2we2gw5zk", - "apiType": "Sql", - "creationTime": "2023-04-06T18:34:28Z", - "oldestRestorableTime": "2023-04-06T18:34:28Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "efabd739-953f-4c26-bac9-376c1194d555", - "creationTime": "2023-04-06T18:34:29Z" - } - ] - } - }, - { - "name": "2fcef010-9953-4ab6-b5c2-58039efa3b56", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fcef010-9953-4ab6-b5c2-58039efa3b56", - "properties": { - "accountName": "cli24p5gxxip4wp", - "apiType": "MongoDB", - "creationTime": "2023-04-06T18:36:07Z", - "oldestRestorableTime": "2023-04-06T18:36:07Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7ef7021-95e6-449a-bcf7-b837bfd93002", - "creationTime": "2023-04-06T18:36:08Z" - } - ] - } - }, - { - "name": "29f761f2-0db3-4e1b-adc4-133eee2f4ca7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29f761f2-0db3-4e1b-adc4-133eee2f4ca7", - "properties": { - "accountName": "cli4nd5tsapqcn4", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T18:38:50Z", - "oldestRestorableTime": "2023-04-06T18:38:50Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0fe82904-d8d4-4ba8-a902-e04d8e3f7672", - "creationTime": "2023-04-06T18:38:51Z" - } - ] - } - }, - { - "name": "cd9fa266-b4a1-456f-acbd-b49afce60ebf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd9fa266-b4a1-456f-acbd-b49afce60ebf", - "properties": { - "accountName": "r-database-account-4892", - "apiType": "Sql", - "creationTime": "2023-03-23T10:54:16Z", - "deletionTime": "2023-03-23T10:54:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d50d3a4-9527-481d-b301-979633e1223e", - "creationTime": "2023-03-23T10:54:17Z", - "deletionTime": "2023-03-23T10:54:57Z" - } - ] - } - }, - { - "name": "ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad302ff0-c5cc-43ef-9d8a-cbf0138e80fe", - "properties": { - "accountName": "r-database-account-6730", - "apiType": "Sql", - "creationTime": "2023-03-23T11:05:04Z", - "deletionTime": "2023-03-23T11:06:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "43698c19-d2c6-4357-9d3a-6c602c0a8063", - "creationTime": "2023-03-23T11:05:05Z", - "deletionTime": "2023-03-23T11:06:25Z" - } - ] - } - }, - { - "name": "398bb457-8c63-4dff-a3f2-4ef7b0e21097", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/398bb457-8c63-4dff-a3f2-4ef7b0e21097", - "properties": { - "accountName": "dbaccount-6688", - "apiType": "Sql", - "creationTime": "2023-03-23T11:16:07Z", - "deletionTime": "2023-03-23T11:20:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "21bbe432-0023-4030-a87e-cb62298ab7d6", - "creationTime": "2023-03-23T11:16:08Z", - "deletionTime": "2023-03-23T11:20:59Z" - } - ] - } - }, - { - "name": "0768f3f1-b168-46b8-bdd2-671139a55152", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0768f3f1-b168-46b8-bdd2-671139a55152", - "properties": { - "accountName": "dbaccount-1880", - "apiType": "Sql", - "creationTime": "2023-03-23T11:22:51Z", - "deletionTime": "2023-03-23T11:26:46Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cee7a279-f258-4a27-8c8a-3469749d9727", - "creationTime": "2023-03-23T11:22:52Z", - "deletionTime": "2023-03-23T11:26:46Z" - } - ] - } - }, - { - "name": "614caf77-1d59-43d9-8799-65f1c05cb19d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/614caf77-1d59-43d9-8799-65f1c05cb19d", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e96190be-7dba-4bf2-bb3f-0b6011a6d4a0", - "creationTime": "2023-03-23T18:28:48Z", - "deletionTime": "2023-03-23T18:31:37Z" - } - ] - } - }, - { - "name": "b82fb71b-8feb-4ae1-8fca-12a424858869", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b82fb71b-8feb-4ae1-8fca-12a424858869", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-23T21:16:33Z", - "deletionTime": "2023-03-23T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6e32f9ef-cb1a-45d9-8151-9f0e540fc0e5", - "creationTime": "2023-03-23T21:16:34Z", - "deletionTime": "2023-03-23T21:20:17Z" - } - ] - } - }, - { - "name": "b48c55ae-e4e4-4184-94c6-0d5354ed392a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b48c55ae-e4e4-4184-94c6-0d5354ed392a", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:01:08Z", - "deletionTime": "2023-03-24T16:04:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fff7965e-cb9f-4dd9-8c09-50e9a0392312", - "creationTime": "2023-03-24T16:01:09Z", - "deletionTime": "2023-03-24T16:04:52Z" - } - ] - } - }, - { - "name": "151f9fea-5280-4201-8e95-0ea414c89379", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/151f9fea-5280-4201-8e95-0ea414c89379", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T16:18:09Z", - "deletionTime": "2023-03-24T16:21:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79f550b2-ea1d-421d-a173-3efdbe01f0fd", - "creationTime": "2023-03-24T16:18:10Z", - "deletionTime": "2023-03-24T16:21:49Z" - } - ] - } - }, - { - "name": "edbde762-f533-4cc9-886a-a2196e203b19", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edbde762-f533-4cc9-886a-a2196e203b19", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:00:54Z", - "deletionTime": "2023-03-24T17:03:11Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ae5580af-ff3a-46f4-9f6b-4c0bb7b92711", - "creationTime": "2023-03-24T17:00:55Z", - "deletionTime": "2023-03-24T17:03:11Z" - } - ] - } - }, - { - "name": "c58137c3-cb09-4d6e-8549-b2088de0334b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c58137c3-cb09-4d6e-8549-b2088de0334b", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea41e59-d707-4449-95ad-e4dd39be8042", - "creationTime": "2023-03-24T17:17:36Z", - "deletionTime": "2023-03-24T17:20:51Z" - } - ] - } - }, - { - "name": "adc8a914-1886-496d-942d-0a7f5c97fe68", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc8a914-1886-496d-942d-0a7f5c97fe68", - "properties": { - "accountName": "cosmosdb-1215", - "apiType": "Sql", - "creationTime": "2023-03-24T18:51:09Z", - "deletionTime": "2023-03-24T18:51:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f7e9b835-6295-41b4-812e-d222e517c3b9", - "creationTime": "2023-03-24T18:51:10Z", - "deletionTime": "2023-03-24T18:51:31Z" - } - ] - } - }, - { - "name": "2d6283a2-c380-4c55-8e15-0d54c48eccf5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2d6283a2-c380-4c55-8e15-0d54c48eccf5", - "properties": { - "accountName": "cosmosdb-1216", - "apiType": "Sql", - "creationTime": "2023-03-24T19:00:50Z", - "deletionTime": "2023-03-24T19:15:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "be5449f5-24e0-471d-b4ad-55488912aa52", - "creationTime": "2023-03-24T19:00:51Z", - "deletionTime": "2023-03-24T19:15:40Z" - } - ] - } - }, - { - "name": "219254b8-6f3a-466e-b360-95f262bfe51e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/219254b8-6f3a-466e-b360-95f262bfe51e", - "properties": { - "accountName": "cosmosdb-1217", - "apiType": "Sql", - "creationTime": "2023-03-24T19:18:09Z", - "deletionTime": "2023-03-24T19:20:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9fbd263e-9b42-4464-bf93-6ec22763dbf0", - "creationTime": "2023-03-24T19:18:10Z", - "deletionTime": "2023-03-24T19:20:56Z" - } - ] - } - }, - { - "name": "e888bd61-957a-4028-af47-b834b0a267ab", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e888bd61-957a-4028-af47-b834b0a267ab", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-24T19:34:54Z", - "deletionTime": "2023-03-24T19:50:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20b1bf9a-e013-4c7b-803f-a23bd175add1", - "creationTime": "2023-03-24T19:34:55Z", - "deletionTime": "2023-03-24T19:50:50Z" - } - ] - } - }, - { - "name": "bb18a586-b5fa-4ac8-b95c-44511db6e35a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb18a586-b5fa-4ac8-b95c-44511db6e35a", - "properties": { - "accountName": "restored2-cosmosdb-1210-5", - "apiType": "Sql", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f543832-2915-448a-bcfd-0b254b264e1b", - "creationTime": "2023-03-24T19:49:54Z", - "deletionTime": "2023-03-24T19:50:51Z" - } - ] - } - }, - { - "name": "9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a2ca5c4-3c63-47b1-9b4b-38380e7ac36d", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-24T20:32:49Z", - "deletionTime": "2023-03-24T20:50:46Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c82e20c9-64fb-4ccb-9283-0032bddb7737", - "creationTime": "2023-03-24T20:32:50Z", - "deletionTime": "2023-03-24T20:50:46Z" - } - ] - } - }, - { - "name": "2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2f9fcd0f-89ca-4e88-83f2-81dcaa61821f", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:11:27Z", - "deletionTime": "2023-03-25T16:23:23Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "593c7c8d-217c-4065-a791-4dfc12cb2349", - "creationTime": "2023-03-25T16:11:28Z", - "deletionTime": "2023-03-25T16:23:23Z" - } - ] - } - }, - { - "name": "b268ad0d-50ec-4128-a1f3-837e0b413d82", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b268ad0d-50ec-4128-a1f3-837e0b413d82", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2654b081-5b40-4128-b1fd-453249788e29", - "creationTime": "2023-03-25T16:42:51Z", - "deletionTime": "2023-03-26T14:50:09Z" - } - ] - } - }, - { - "name": "2533e0b0-a675-441d-9b41-147c66cb8834", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2533e0b0-a675-441d-9b41-147c66cb8834", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-26T16:03:42Z", - "deletionTime": "2023-03-26T16:15:36Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e48692ff-6c9b-4111-8ac4-d12765ebb2db", - "creationTime": "2023-03-26T16:03:43Z", - "deletionTime": "2023-03-26T16:15:36Z" - } - ] - } - }, - { - "name": "b8b22f13-af36-48ee-9287-ce41bbe41959", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8b22f13-af36-48ee-9287-ce41bbe41959", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-27T03:23:23Z", - "deletionTime": "2023-03-27T03:41:45Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "231da769-64c3-4091-91ed-3557170cccb4", - "creationTime": "2023-03-27T03:23:24Z", - "deletionTime": "2023-03-27T03:41:45Z" - } - ] - } - }, - { - "name": "9af6581a-653f-4c3d-a387-8f48ebb27113", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9af6581a-653f-4c3d-a387-8f48ebb27113", - "properties": { - "accountName": "grem-test-72", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5aecf3c1-9821-4d92-b0d2-d18c6e02f8d2", - "creationTime": "2023-03-17T18:46:10Z", - "deletionTime": "2023-03-27T17:30:51Z" - } - ] - } - }, - { - "name": "becbb2de-6960-44a7-ac0b-aec31dcbe25f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/becbb2de-6960-44a7-ac0b-aec31dcbe25f", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T02:19:03Z", - "deletionTime": "2023-03-28T02:22:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df940efb-3896-4b66-b28e-db5409dc0188", - "creationTime": "2023-03-28T02:19:04Z", - "deletionTime": "2023-03-28T02:22:53Z" - } - ] - } - }, - { - "name": "a9481019-401b-431b-b5f7-440ec8798dfd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9481019-401b-431b-b5f7-440ec8798dfd", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T03:39:15Z", - "deletionTime": "2023-03-28T03:42:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6122006-c805-457e-be6d-bbdb2238e017", - "creationTime": "2023-03-28T03:39:16Z", - "deletionTime": "2023-03-28T03:42:12Z" - } - ] - } - }, - { - "name": "ebe59dd3-989f-4514-8ec1-68da44f859f8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebe59dd3-989f-4514-8ec1-68da44f859f8", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T13:58:50Z", - "deletionTime": "2023-03-28T13:59:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e9cbc44-ccf6-4f69-ab91-cb21b87a4512", - "creationTime": "2023-03-28T13:58:51Z", - "deletionTime": "2023-03-28T13:59:37Z" - } - ] - } - }, - { - "name": "b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4dcc0e2-161d-432b-83c6-c9c07b2d41f5", - "properties": { - "accountName": "cosmosdb-1232", - "apiType": "Sql", - "creationTime": "2023-03-28T14:10:51Z", - "deletionTime": "2023-03-28T14:13:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "973964d3-c33d-481f-885d-52d0535ead76", - "creationTime": "2023-03-28T14:10:52Z", - "deletionTime": "2023-03-28T14:13:58Z" - } - ] - } - }, - { - "name": "7ec7860b-60dc-46ba-86c1-5342485272f1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7ec7860b-60dc-46ba-86c1-5342485272f1", - "properties": { - "accountName": "cosmosdb-1233", - "apiType": "Sql", - "creationTime": "2023-03-28T14:25:17Z", - "deletionTime": "2023-03-28T14:28:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "88431622-d98c-4ba4-8a33-8ff0f07cc6d0", - "creationTime": "2023-03-28T14:25:18Z", - "deletionTime": "2023-03-28T14:28:04Z" - } - ] - } - }, - { - "name": "b28ee03a-49e3-498e-ad05-0a897f8c1dfc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b28ee03a-49e3-498e-ad05-0a897f8c1dfc", - "properties": { - "accountName": "cosmosdb-1231", - "apiType": "Sql", - "creationTime": "2023-03-28T14:35:15Z", - "deletionTime": "2023-03-28T14:39:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "59885ab9-7f6f-40ef-8924-e5e004dfc572", - "creationTime": "2023-03-28T14:35:16Z", - "deletionTime": "2023-03-28T14:39:43Z" - } - ] - } - }, - { - "name": "a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a72b5ecf-6ca4-4c4e-99d9-6967f2e4cb9d", - "properties": { - "accountName": "cosmosdb-1234", - "apiType": "Sql", - "creationTime": "2023-03-28T14:54:34Z", - "deletionTime": "2023-03-28T14:58:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "329fa132-9546-4f5e-a86e-b2deca76d61f", - "creationTime": "2023-03-28T14:54:35Z", - "deletionTime": "2023-03-28T14:58:59Z" - } - ] - } - }, - { - "name": "f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46d6ca4-98c6-43bd-9589-89f0cb4b3bcc", - "properties": { - "accountName": "cosmosdb-12103", - "apiType": "Sql", - "creationTime": "2023-03-28T15:09:04Z", - "deletionTime": "2023-03-28T15:27:39Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84f85e29-36cc-4927-a263-eeafc73a0eef", - "creationTime": "2023-03-28T15:09:05Z", - "deletionTime": "2023-03-28T15:27:39Z" - } - ] - } - }, - { - "name": "e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e383e740-29a4-4a1b-bb48-fb1ce3e17b0e", - "properties": { - "accountName": "restored2-cosmosdb-12103-3", - "apiType": "Sql", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29f59107-cca6-4644-a8f3-691215822a8f", - "creationTime": "2023-03-28T15:25:43Z", - "deletionTime": "2023-03-28T15:27:40Z" - } - ] - } - }, - { - "name": "537b9a57-2765-44ef-a9f9-49d4f872c282", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/537b9a57-2765-44ef-a9f9-49d4f872c282", - "properties": { - "accountName": "cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "20803b22-aedf-491e-8b26-749c7f187d9f", - "creationTime": "2023-03-28T15:34:43Z", - "deletionTime": "2023-03-28T15:39:16Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52f279ed-8d90-4457-841d-c89023594409", - "creationTime": "2023-03-28T15:32:25Z", - "deletionTime": "2023-03-28T15:39:16Z" - } - ] - } - }, - { - "name": "0b76b5e5-5258-4e41-99b2-2e4243d5d01d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b76b5e5-5258-4e41-99b2-2e4243d5d01d", - "properties": { - "accountName": "r-database-account-9490", - "apiType": "Sql", - "creationTime": "2023-03-28T22:16:00Z", - "deletionTime": "2023-03-28T22:16:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "904499ee-83c8-45c4-8ffb-9e252175c85a", - "creationTime": "2023-03-28T22:16:01Z", - "deletionTime": "2023-03-28T22:16:48Z" - } - ] - } - }, - { - "name": "03ad66ba-329b-42a9-a663-7175c237d696", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03ad66ba-329b-42a9-a663-7175c237d696", - "properties": { - "accountName": "r-database-account-5060", - "apiType": "Sql", - "creationTime": "2023-03-29T01:52:39Z", - "deletionTime": "2023-03-29T01:53:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "392886e4-74f9-4965-b33a-9524905bee69", - "creationTime": "2023-03-29T01:52:40Z", - "deletionTime": "2023-03-29T01:53:32Z" - } - ] - } - }, - { - "name": "45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/45f7ca78-07fe-498c-ba4d-c9ba97fcdd9b", - "properties": { - "accountName": "r-database-account-8615", - "apiType": "Sql", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a4e7d5df-2da7-4528-86a1-03bed6f0b032", - "creationTime": "2023-03-29T02:21:49Z", - "deletionTime": "2023-03-29T02:24:17Z" - } - ] - } - }, - { - "name": "0493e113-a439-4b4c-bb63-289ce6aa320b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0493e113-a439-4b4c-bb63-289ce6aa320b", - "properties": { - "accountName": "r-database-account-6456", - "apiType": "Sql", - "creationTime": "2023-03-29T02:33:02Z", - "deletionTime": "2023-03-29T02:34:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ceb8477-72c1-4bdc-b687-7f232121c4c0", - "creationTime": "2023-03-29T02:33:03Z", - "deletionTime": "2023-03-29T02:34:43Z" - } - ] - } - }, - { - "name": "835d93a1-22dd-478a-b58d-426efe281471", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/835d93a1-22dd-478a-b58d-426efe281471", - "properties": { - "accountName": "r-database-account-4855", - "apiType": "Sql", - "creationTime": "2023-03-29T02:47:00Z", - "deletionTime": "2023-03-29T02:49:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e8faf491-e708-4423-83a1-c91a0aa3bf5b", - "creationTime": "2023-03-29T02:47:01Z", - "deletionTime": "2023-03-29T02:49:00Z" - } - ] - } - }, - { - "name": "b6158db2-0ce6-4f2e-b80a-76314cc65beb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6158db2-0ce6-4f2e-b80a-76314cc65beb", - "properties": { - "accountName": "r-database-account-84", - "apiType": "Sql", - "creationTime": "2023-03-29T03:26:20Z", - "deletionTime": "2023-03-29T03:28:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90f28c53-2152-4ec3-8253-4f0620b7bd9f", - "creationTime": "2023-03-29T03:26:21Z", - "deletionTime": "2023-03-29T03:28:03Z" - } - ] - } - }, - { - "name": "745f1b21-405d-46bf-8788-0d661ffbb160", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/745f1b21-405d-46bf-8788-0d661ffbb160", - "properties": { - "accountName": "r-database-account-5060", - "apiType": "Sql", - "creationTime": "2023-03-29T03:40:43Z", - "deletionTime": "2023-03-29T03:42:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8e6b79a-c845-4ce4-82a4-f53631ca2a53", - "creationTime": "2023-03-29T03:40:44Z", - "deletionTime": "2023-03-29T03:42:31Z" - } - ] - } - }, - { - "name": "454b0097-ad05-4177-9048-93cff3b23e4c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/454b0097-ad05-4177-9048-93cff3b23e4c", - "properties": { - "accountName": "r-database-account-985", - "apiType": "Sql", - "creationTime": "2023-03-29T04:04:48Z", - "deletionTime": "2023-03-29T04:05:36Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6c9333a0-3765-4bac-977e-9a0f0b382f4f", - "creationTime": "2023-03-29T04:04:49Z", - "deletionTime": "2023-03-29T04:05:36Z" - } - ] - } - }, - { - "name": "7058b879-44d2-4d6e-81f8-a7dac99841f4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7058b879-44d2-4d6e-81f8-a7dac99841f4", - "properties": { - "accountName": "r-database-account-411", - "apiType": "Sql", - "creationTime": "2023-03-29T04:32:28Z", - "deletionTime": "2023-03-29T04:34:13Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12df2724-1c27-4ba9-b29c-e02c20a46be3", - "creationTime": "2023-03-29T04:32:29Z", - "deletionTime": "2023-03-29T04:34:13Z" - } - ] - } - }, - { - "name": "c94d2f50-a986-4e83-815a-10c8b598ac62", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c94d2f50-a986-4e83-815a-10c8b598ac62", - "properties": { - "accountName": "r-database-account-7460", - "apiType": "Sql", - "creationTime": "2023-03-29T04:59:34Z", - "deletionTime": "2023-03-29T05:01:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edf6d350-4ae3-406a-91ac-2a6a2dd16040", - "creationTime": "2023-03-29T04:59:35Z", - "deletionTime": "2023-03-29T05:01:02Z" - } - ] - } - }, - { - "name": "cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc3bb082-71c1-4de6-a4f7-0b1b1b3e636b", - "properties": { - "accountName": "r-database-account-6301", - "apiType": "Sql", - "creationTime": "2023-03-29T05:27:44Z", - "deletionTime": "2023-03-29T05:29:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4e037a5-d6b5-437a-9a80-060798d92152", - "creationTime": "2023-03-29T05:27:45Z", - "deletionTime": "2023-03-29T05:29:32Z" - } - ] - } - }, - { - "name": "4a3f5791-025d-47dd-ab5e-294edd3cbb9c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a3f5791-025d-47dd-ab5e-294edd3cbb9c", - "properties": { - "accountName": "r-database-account-725", - "apiType": "Sql", - "creationTime": "2023-03-29T05:51:55Z", - "deletionTime": "2023-03-29T05:53:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "387bb1e6-3fe5-4f06-ad7a-439c66caa9e2", - "creationTime": "2023-03-29T05:51:56Z", - "deletionTime": "2023-03-29T05:53:14Z" - } - ] - } - }, - { - "name": "056d0783-4aa7-493e-8c87-33d1bcd2a92f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/056d0783-4aa7-493e-8c87-33d1bcd2a92f", - "properties": { - "accountName": "r-database-account-5868", - "apiType": "Sql", - "creationTime": "2023-03-29T06:07:55Z", - "deletionTime": "2023-03-29T06:10:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73e29e66-8116-409b-85e0-481c1b9f8fcb", - "creationTime": "2023-03-29T06:07:56Z", - "deletionTime": "2023-03-29T06:10:43Z" - } - ] - } - }, - { - "name": "5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a2dbc14-93b3-49d7-b2e2-1e823f0e4103", - "properties": { - "accountName": "r-database-account-6513", - "apiType": "Sql", - "creationTime": "2023-03-29T06:41:45Z", - "deletionTime": "2023-03-29T06:45:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90d8dc-6ac8-44d7-b6aa-bed1b064d9bf", - "creationTime": "2023-03-29T06:41:46Z", - "deletionTime": "2023-03-29T06:45:18Z" - } - ] - } - }, - { - "name": "e53bb849-2a9a-481e-8085-8aebe2e5a2f0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e53bb849-2a9a-481e-8085-8aebe2e5a2f0", - "properties": { - "accountName": "r-database-account-79", - "apiType": "Sql", - "creationTime": "2023-03-29T07:22:12Z", - "deletionTime": "2023-03-29T07:24:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56041ba3-dd8c-485d-a318-e1217381db7d", - "creationTime": "2023-03-29T07:22:13Z", - "deletionTime": "2023-03-29T07:24:10Z" - } - ] - } - }, - { - "name": "c0a8c715-c9d8-44bd-8e21-36434f0ac43b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a8c715-c9d8-44bd-8e21-36434f0ac43b", - "properties": { - "accountName": "r-database-account-766", - "apiType": "Sql", - "creationTime": "2023-03-29T08:19:11Z", - "deletionTime": "2023-03-29T08:20:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0e4a7b02-9545-4b86-a6a2-c09c815d62d5", - "creationTime": "2023-03-29T08:19:12Z", - "deletionTime": "2023-03-29T08:20:09Z" - } - ] - } - }, - { - "name": "fa235396-6959-4dc1-932d-2ac66d318878", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa235396-6959-4dc1-932d-2ac66d318878", - "properties": { - "accountName": "r-database-account-9810", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:33:51Z", - "deletionTime": "2023-03-29T08:48:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce7e35f-f240-430b-bb58-3b498c76695a", - "creationTime": "2023-03-29T08:33:53Z", - "deletionTime": "2023-03-29T08:48:10Z" - } - ] - } - }, - { - "name": "912f8ae6-27e0-4605-9b62-db8adbb9d6b1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/912f8ae6-27e0-4605-9b62-db8adbb9d6b1", - "properties": { - "accountName": "r-database-account-6103", - "apiType": "Sql", - "creationTime": "2023-03-29T09:01:29Z", - "deletionTime": "2023-03-29T09:13:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e35bf5ae-b665-430e-b969-dac027d3148b", - "creationTime": "2023-03-29T09:01:30Z", - "deletionTime": "2023-03-29T09:13:42Z" - } - ] - } - }, - { - "name": "d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4ffb126-ce3c-4d3c-8fc6-1eb7040a5246", - "properties": { - "accountName": "r-database-account-8066", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:28:36Z", - "deletionTime": "2023-03-29T09:44:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4460b051-575c-4b0d-997d-1d12f1728d5e", - "creationTime": "2023-03-29T09:28:37Z", - "deletionTime": "2023-03-29T09:44:31Z" - } - ] - } - }, - { - "name": "ddab1ead-237f-448e-8291-995fddb1ae74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddab1ead-237f-448e-8291-995fddb1ae74", - "properties": { - "accountName": "r-database-account-7977", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T10:01:55Z", - "deletionTime": "2023-03-29T10:03:30Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce622032-a746-4815-b0a0-74723430a2c4", - "creationTime": "2023-03-29T10:01:56Z", - "deletionTime": "2023-03-29T10:03:30Z" - } - ] - } - }, - { - "name": "3dbfa4ec-b091-40db-a1bd-1d658efb67ea", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dbfa4ec-b091-40db-a1bd-1d658efb67ea", - "properties": { - "accountName": "r-database-account-116", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T10:20:03Z", - "deletionTime": "2023-03-29T10:21:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d250c8b-de47-442d-abc8-f8b972060bd4", - "creationTime": "2023-03-29T10:20:04Z", - "deletionTime": "2023-03-29T10:21:16Z" - } - ] - } - }, - { - "name": "c283feb5-e5dd-4ee2-bf78-710eb7334502", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c283feb5-e5dd-4ee2-bf78-710eb7334502", - "properties": { - "accountName": "restoredaccount-7426", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "55135b7c-4f0f-4faf-9b65-50a15f23fb4d", - "creationTime": "2023-03-29T09:43:27Z", - "deletionTime": "2023-03-29T10:33:42Z" - } - ] - } - }, - { - "name": "8f98f5a1-765d-4cd4-9a61-01abcf27189a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f98f5a1-765d-4cd4-9a61-01abcf27189a", - "properties": { - "accountName": "r-database-account-9884", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T08:16:22Z", - "deletionTime": "2023-03-29T10:33:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a60b5dc8-8498-4956-ada5-7310e2613583", - "creationTime": "2023-03-29T08:16:23Z", - "deletionTime": "2023-03-29T10:33:43Z" - } - ] - } - }, - { - "name": "32418422-43cf-4b21-a2af-e2e289bdeadd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32418422-43cf-4b21-a2af-e2e289bdeadd", - "properties": { - "accountName": "r-database-account-2379", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:28:35Z", - "deletionTime": "2023-03-29T16:44:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56a95aad-a5ca-4a14-a4b0-3384fb130cbb", - "creationTime": "2023-03-29T16:28:36Z", - "deletionTime": "2023-03-29T16:44:35Z" - } - ] - } - }, - { - "name": "59d2920c-e1d6-4051-abea-4ab835ff926f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59d2920c-e1d6-4051-abea-4ab835ff926f", - "properties": { - "accountName": "r-database-account-3992", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T16:22:41Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab35b706-7928-4eac-95dd-d6bac57baa19", - "creationTime": "2023-03-29T16:22:42Z", - "deletionTime": "2023-03-29T16:57:31Z" - } - ] - } - }, - { - "name": "bd37f5fe-2aa7-4339-8f77-0efa043b60d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bd37f5fe-2aa7-4339-8f77-0efa043b60d4", - "properties": { - "accountName": "restoredaccount-232", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06a21e8c-d0e4-4438-b21d-58932b9778cd", - "creationTime": "2023-03-29T16:43:40Z", - "deletionTime": "2023-03-29T16:57:31Z" - } - ] - } - }, - { - "name": "af1cd63a-1119-4204-ace2-0fee38385e2d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af1cd63a-1119-4204-ace2-0fee38385e2d", - "properties": { - "accountName": "r-database-account-1794", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:14:16Z", - "deletionTime": "2023-03-29T17:15:46Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "609e88d2-7e92-4d71-bcd4-dfce324324ec", - "creationTime": "2023-03-29T17:14:17Z", - "deletionTime": "2023-03-29T17:15:46Z" - } - ] - } - }, - { - "name": "8940962c-1866-49f7-871f-38869cce24f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8940962c-1866-49f7-871f-38869cce24f7", - "properties": { - "accountName": "r-database-account-7040", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T17:32:14Z", - "deletionTime": "2023-03-29T17:33:38Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd07b7ef-b2e9-426c-ad1b-86932a1af93e", - "creationTime": "2023-03-29T17:32:15Z", - "deletionTime": "2023-03-29T17:33:38Z" - } - ] - } - }, - { - "name": "08c4a93d-922a-4fda-a4d2-57eeb8061d16", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08c4a93d-922a-4fda-a4d2-57eeb8061d16", - "properties": { - "accountName": "r-database-account-959", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:41:56Z", - "deletionTime": "2023-03-29T17:42:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc0d70c-744a-4522-b797-c0077cdf15f8", - "creationTime": "2023-03-29T17:41:58Z", - "deletionTime": "2023-03-29T17:42:37Z" - } - ] - } - }, - { - "name": "64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64469bf6-34d0-4d1c-a0b4-19bbd0fd966a", - "properties": { - "accountName": "r-database-account-8612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:51:17Z", - "deletionTime": "2023-03-29T18:07:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e27699fd-3f65-4ebb-ac0b-7c1a9f434d55", - "creationTime": "2023-03-29T17:51:18Z", - "deletionTime": "2023-03-29T18:07:55Z" - } - ] - } - }, - { - "name": "aed536dc-0645-4fd8-9a84-5fa4894cb082", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aed536dc-0645-4fd8-9a84-5fa4894cb082", - "properties": { - "accountName": "r-database-account-640", - "apiType": "Sql", - "creationTime": "2023-03-29T18:21:12Z", - "deletionTime": "2023-03-29T18:37:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "442b00f8-96fa-46c3-9aee-da7f81274ed0", - "creationTime": "2023-03-29T18:21:13Z", - "deletionTime": "2023-03-29T18:37:25Z" - } - ] - } - }, - { - "name": "ebcdc313-e068-4539-bfc9-63238422f44d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebcdc313-e068-4539-bfc9-63238422f44d", - "properties": { - "accountName": "r-database-account-6103", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:45:36Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ff90a6b4-7181-418c-bf3a-0bb2057edcd9", - "creationTime": "2023-03-29T17:45:37Z", - "deletionTime": "2023-03-29T18:49:19Z" - } - ] - } - }, - { - "name": "2cc1ef89-6a2f-47c2-903f-650995b0c7d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2cc1ef89-6a2f-47c2-903f-650995b0c7d9", - "properties": { - "accountName": "restoredaccount-9093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0397d584-9550-4f50-9644-ce854e52789c", - "creationTime": "2023-03-29T18:07:01Z", - "deletionTime": "2023-03-29T18:49:19Z" - } - ] - } - }, - { - "name": "d3c5c616-c5cb-4512-a6e8-66bf708d02a4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d3c5c616-c5cb-4512-a6e8-66bf708d02a4", - "properties": { - "accountName": "restoredaccount-5464", - "apiType": "Sql", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6234e1b4-9f91-4d97-b8f4-127d8acbb702", - "creationTime": "2023-03-29T18:36:52Z", - "deletionTime": "2023-03-29T18:49:20Z" - } - ] - } - }, - { - "name": "735c812a-1f15-4443-abe7-d4613cb6a6d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/735c812a-1f15-4443-abe7-d4613cb6a6d4", - "properties": { - "accountName": "r-database-account-582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T18:55:11Z", - "deletionTime": "2023-03-29T18:56:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ca092a02-521e-4d1b-be5c-3687a9f76666", - "creationTime": "2023-03-29T18:55:12Z", - "deletionTime": "2023-03-29T18:56:12Z" - } - ] - } - }, - { - "name": "0e8316a7-2dee-4a92-a2a4-dd50024c003f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e8316a7-2dee-4a92-a2a4-dd50024c003f", - "properties": { - "accountName": "r-database-account-7109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:11:47Z", - "deletionTime": "2023-03-29T19:13:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "10e93a0e-cfc3-4500-b46e-3319e701638c", - "creationTime": "2023-03-29T19:11:48Z", - "deletionTime": "2023-03-29T19:13:28Z" - } - ] - } - }, - { - "name": "032b2afa-1e13-406e-b881-fadd3a62e35e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/032b2afa-1e13-406e-b881-fadd3a62e35e", - "properties": { - "accountName": "r-database-account-1862", - "apiType": "Sql", - "creationTime": "2023-03-29T19:27:17Z", - "deletionTime": "2023-03-29T19:28:11Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b3ec574-82cf-4560-87b5-dd5b2d894ded", - "creationTime": "2023-03-29T19:27:18Z", - "deletionTime": "2023-03-29T19:28:11Z" - } - ] - } - }, - { - "name": "b3d3e441-a1f1-4462-91f8-91419e4df140", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d3e441-a1f1-4462-91f8-91419e4df140", - "properties": { - "accountName": "r-database-account-669", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T19:41:10Z", - "deletionTime": "2023-03-29T19:42:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ad56fe7c-eee0-4171-bdcc-118a76720704", - "creationTime": "2023-03-29T19:41:11Z", - "deletionTime": "2023-03-29T19:42:32Z" - } - ] - } - }, - { - "name": "560393d6-acd2-4c0b-be05-b83b0084f9b6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/560393d6-acd2-4c0b-be05-b83b0084f9b6", - "properties": { - "accountName": "r-database-account-8361", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T19:57:31Z", - "deletionTime": "2023-03-29T19:58:15Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2d79671c-579e-4585-bdea-ec3b3a5df684", - "creationTime": "2023-03-29T19:57:32Z", - "deletionTime": "2023-03-29T19:58:15Z" - } - ] - } - }, - { - "name": "b4038ac6-da0c-4094-9484-2eed98e0269b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4038ac6-da0c-4094-9484-2eed98e0269b", - "properties": { - "accountName": "r-database-account-9", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:12:42Z", - "deletionTime": "2023-03-29T20:28:47Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c5479a8d-cf82-42a5-a098-9335a828b098", - "creationTime": "2023-03-29T20:12:43Z", - "deletionTime": "2023-03-29T20:28:47Z" - } - ] - } - }, - { - "name": "fd2bd462-8083-41cb-94d9-3beef3b6bba1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd2bd462-8083-41cb-94d9-3beef3b6bba1", - "properties": { - "accountName": "r-database-account-7334", - "apiType": "Sql", - "creationTime": "2023-03-29T20:42:13Z", - "deletionTime": "2023-03-29T20:44:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b05ada40-407f-422e-a022-58c3f1dfb6db", - "creationTime": "2023-03-29T20:42:14Z", - "deletionTime": "2023-03-29T20:44:52Z" - } - ] - } - }, - { - "name": "9513098d-df71-4d21-8d95-2fd12d55402e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9513098d-df71-4d21-8d95-2fd12d55402e", - "properties": { - "accountName": "r-database-account-4820", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:00:04Z", - "deletionTime": "2023-03-29T21:16:44Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "616ecf7e-db77-4283-b919-19b76044b206", - "creationTime": "2023-03-29T21:00:05Z", - "deletionTime": "2023-03-29T21:16:44Z" - } - ] - } - }, - { - "name": "f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f0a8ea1a-7c1b-4b3d-bc38-4b31a3bf0a6f", - "properties": { - "accountName": "r-database-account-2346", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86796284-7293-414e-8b74-96ffda7ee851", - "creationTime": "2023-03-29T21:32:51Z", - "deletionTime": "2023-03-29T21:34:14Z" - } - ] - } - }, - { - "name": "d7c23eb7-187f-447f-ae6c-fc95971c9004", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7c23eb7-187f-447f-ae6c-fc95971c9004", - "properties": { - "accountName": "restoredaccount-4730", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90aec122-fe1e-4a2e-96c6-167974316477", - "creationTime": "2023-03-29T21:15:51Z", - "deletionTime": "2023-03-29T21:45:40Z" - } - ] - } - }, - { - "name": "4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4101e617-98ff-4788-b1a1-c4cf3dbbcfbe", - "properties": { - "accountName": "restoredaccount-1173", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b4a9d7f-ee75-4f60-bc3c-0b6b843999fa", - "creationTime": "2023-03-29T20:27:59Z", - "deletionTime": "2023-03-29T21:45:41Z" - } - ] - } - }, - { - "name": "a24a2d84-9b34-4ce6-b698-7535b354515b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a24a2d84-9b34-4ce6-b698-7535b354515b", - "properties": { - "accountName": "r-database-account-3981", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T21:50:14Z", - "deletionTime": "2023-03-29T21:52:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce273cd-f8b3-4019-a48e-e8bf8ace745a", - "creationTime": "2023-03-29T21:50:15Z", - "deletionTime": "2023-03-29T21:52:00Z" - } - ] - } - }, - { - "name": "8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c86bf7e-b27b-4bfa-9a61-41cdae6446ca", - "properties": { - "accountName": "r-database-account-6608", - "apiType": "Sql", - "creationTime": "2023-03-29T22:05:54Z", - "deletionTime": "2023-03-29T22:06:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c689ba1-4f2a-426e-be06-0c7632faf319", - "creationTime": "2023-03-29T22:05:55Z", - "deletionTime": "2023-03-29T22:06:58Z" - } - ] - } - }, - { - "name": "d003df48-a9ea-4212-a771-0c539141cd9d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d003df48-a9ea-4212-a771-0c539141cd9d", - "properties": { - "accountName": "r-database-account-9561", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:19:29Z", - "deletionTime": "2023-03-29T22:20:23Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4b882cc-3fa4-4306-bc6a-7083bd176ee1", - "creationTime": "2023-03-29T22:19:30Z", - "deletionTime": "2023-03-29T22:20:23Z" - } - ] - } - }, - { - "name": "57cb20ff-9032-4b32-9910-ae0db61aa24c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57cb20ff-9032-4b32-9910-ae0db61aa24c", - "properties": { - "accountName": "r-database-account-1309", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T22:36:33Z", - "deletionTime": "2023-03-29T22:37:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7703a7ab-0a09-4f2c-bc34-e94a5e814101", - "creationTime": "2023-03-29T22:36:35Z", - "deletionTime": "2023-03-29T22:37:50Z" - } - ] - } - }, - { - "name": "99a8b0b8-482c-4728-a285-7f90ff9b5ab8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99a8b0b8-482c-4728-a285-7f90ff9b5ab8", - "properties": { - "accountName": "dsapaliga-restore-test5", - "apiType": "Sql", - "creationTime": "2023-03-29T21:59:36Z", - "deletionTime": "2023-03-29T22:56:12Z", - "oldestRestorableTime": "2023-03-22T22:56:12Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6714e55b-c205-4acd-a13d-e7a905d841e9", - "creationTime": "2023-03-29T21:59:38Z", - "deletionTime": "2023-03-29T22:56:12Z" - } - ] - } - }, - { - "name": "d8c8c887-61e8-434c-afeb-33beda3369ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8c8c887-61e8-434c-afeb-33beda3369ad", - "properties": { - "accountName": "dsapaliga-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z", - "oldestRestorableTime": "2023-03-22T22:56:35Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "0984089c-0624-4298-a6fb-eeb082b34e0d", - "creationTime": "2023-03-29T20:22:36Z", - "deletionTime": "2023-03-29T22:56:35Z" - } - ] - } - }, - { - "name": "973b2ab8-fbd0-4236-8e6f-64eac43566ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/973b2ab8-fbd0-4236-8e6f-64eac43566ba", - "properties": { - "accountName": "dsapaliga-test-restored", - "apiType": "Sql", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z", - "oldestRestorableTime": "2023-03-22T22:57:04Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c176b980-38c2-4bd5-b369-fc262685e1d9", - "creationTime": "2023-03-29T20:04:20Z", - "deletionTime": "2023-03-29T22:57:04Z" - } - ] - } - }, - { - "name": "d524b3ab-15dc-4d7e-a233-61f1f2fd0194", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d524b3ab-15dc-4d7e-a233-61f1f2fd0194", - "properties": { - "accountName": "dsapaliga-restore-test", - "apiType": "Sql", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z", - "oldestRestorableTime": "2023-03-22T22:57:42Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "6e5b9207-f1fd-4c6c-9300-7663aa110473", - "creationTime": "2023-03-29T19:42:26Z", - "deletionTime": "2023-03-29T22:57:42Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82b01793-5308-4cfe-b0a5-0f04cfe54847", - "creationTime": "2022-12-08T21:21:36Z", - "deletionTime": "2023-03-29T22:57:42Z" - } - ] - } - }, - { - "name": "52581e9f-9743-4007-9041-e15df28ce4ee", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52581e9f-9743-4007-9041-e15df28ce4ee", - "properties": { - "accountName": "r-database-account-1604", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T22:51:34Z", - "deletionTime": "2023-03-29T23:07:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c94b447a-0b04-47ef-aa83-bf3b20e16e80", - "creationTime": "2023-03-29T22:51:35Z", - "deletionTime": "2023-03-29T23:07:58Z" - } - ] - } - }, - { - "name": "9ab892fe-ad41-4e51-a646-530c226c8772", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ab892fe-ad41-4e51-a646-530c226c8772", - "properties": { - "accountName": "r-database-account-39", - "apiType": "Sql", - "creationTime": "2023-03-29T23:21:19Z", - "deletionTime": "2023-03-29T23:37:29Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e77a73c7-2feb-42db-8083-721aea29eca0", - "creationTime": "2023-03-29T23:21:20Z", - "deletionTime": "2023-03-29T23:37:29Z" - } - ] - } - }, - { - "name": "73d2b508-f7b6-44a7-bde8-c304fa63be0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/73d2b508-f7b6-44a7-bde8-c304fa63be0c", - "properties": { - "accountName": "r-database-account-6553", - "apiType": "Table, Sql", - "creationTime": "2023-03-29T23:52:19Z", - "deletionTime": "2023-03-29T23:54:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f98515c-5903-4c1a-bb0f-0fe1e9a1954b", - "creationTime": "2023-03-29T23:52:20Z", - "deletionTime": "2023-03-29T23:54:50Z" - } - ] - } - }, - { - "name": "ccd330d6-6061-4ba6-876e-b044c2d13271", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ccd330d6-6061-4ba6-876e-b044c2d13271", - "properties": { - "accountName": "r-database-account-8730", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T00:45:13Z", - "deletionTime": "2023-03-30T00:49:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e22b01f5-f1bb-486d-94d8-1175267a27ed", - "creationTime": "2023-03-30T00:45:15Z", - "deletionTime": "2023-03-30T00:49:42Z" - } - ] - } - }, - { - "name": "b108d2b0-cd93-49bf-a81e-6e86b39b4521", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b108d2b0-cd93-49bf-a81e-6e86b39b4521", - "properties": { - "accountName": "r-database-account-2459", - "apiType": "Sql", - "creationTime": "2023-03-30T01:04:05Z", - "deletionTime": "2023-03-30T01:06:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bb76033-e056-4985-a460-9b6751c655a5", - "creationTime": "2023-03-30T01:04:06Z", - "deletionTime": "2023-03-30T01:06:50Z" - } - ] - } - }, - { - "name": "881ab426-1826-4b5e-b24c-9ffae5f3f4b6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/881ab426-1826-4b5e-b24c-9ffae5f3f4b6", - "properties": { - "accountName": "r-database-account-2957", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T01:23:37Z", - "deletionTime": "2023-03-30T01:26:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "30ea6d29-39b9-439c-ac35-22025783a884", - "creationTime": "2023-03-30T01:23:39Z", - "deletionTime": "2023-03-30T01:26:18Z" - } - ] - } - }, - { - "name": "d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d60fe511-3d6c-404b-ac2f-8c0e1b3d3a17", - "properties": { - "accountName": "r-database-account-6086", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T01:44:49Z", - "deletionTime": "2023-03-30T01:54:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "763da886-351a-4f36-8295-505c3f46b85a", - "creationTime": "2023-03-30T01:44:50Z", - "deletionTime": "2023-03-30T01:54:03Z" - } - ] - } - }, - { - "name": "cf74f361-f712-4108-9ab8-ecf81afe7766", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf74f361-f712-4108-9ab8-ecf81afe7766", - "properties": { - "accountName": "r-database-account-9503", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:14:47Z", - "deletionTime": "2023-03-30T02:19:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3c37f357-9f58-4326-aeae-d9777eaf1caf", - "creationTime": "2023-03-30T02:14:48Z", - "deletionTime": "2023-03-30T02:19:28Z" - } - ] - } - }, - { - "name": "a717fb23-baed-4b80-ab44-bedcce157333", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a717fb23-baed-4b80-ab44-bedcce157333", - "properties": { - "accountName": "r-database-account-255", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T02:41:09Z", - "deletionTime": "2023-03-30T02:50:27Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7311e49-dbe0-4776-a5a7-dd10f9724724", - "creationTime": "2023-03-30T02:41:10Z", - "deletionTime": "2023-03-30T02:50:27Z" - } - ] - } - }, - { - "name": "ae9d1849-3bb2-4a0f-832e-660e2c983f98", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ae9d1849-3bb2-4a0f-832e-660e2c983f98", - "properties": { - "accountName": "cosmosdb-12104", - "apiType": "Sql", - "creationTime": "2023-03-30T03:16:29Z", - "deletionTime": "2023-03-30T03:24:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "Central US", - "regionalDatabaseAccountInstanceId": "f36ac03e-06e0-4b0d-9471-9df5c232c8e1", - "creationTime": "2023-03-30T03:18:49Z", - "deletionTime": "2023-03-30T03:24:26Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d362cb7e-0c13-460c-b720-c0d6eaef52a0", - "creationTime": "2023-03-30T03:16:30Z", - "deletionTime": "2023-03-30T03:24:26Z" - } - ] - } - }, - { - "name": "6f0807a3-126a-4462-a3e7-de5a1342d3e1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f0807a3-126a-4462-a3e7-de5a1342d3e1", - "properties": { - "accountName": "r-database-account-7398", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:22:44Z", - "deletionTime": "2023-03-30T03:24:34Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a5819ec3-7887-42c1-a67f-6c575d7d290d", - "creationTime": "2023-03-30T03:22:45Z", - "deletionTime": "2023-03-30T03:24:34Z" - } - ] - } - }, - { - "name": "3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cf13c1f-54e3-4126-9ac9-d8c7cbe95c45", - "properties": { - "accountName": "r-database-account-2003", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T03:40:25Z", - "deletionTime": "2023-03-30T03:41:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3b370f37-a138-4a69-8816-30ca274752db", - "creationTime": "2023-03-30T03:40:26Z", - "deletionTime": "2023-03-30T03:41:26Z" - } - ] - } - }, - { - "name": "b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4818c5d-d2d7-4a8f-bde1-8f3601d20a55", - "properties": { - "accountName": "dsapaliga-rcg-migrationtest", - "apiType": "Sql", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z", - "oldestRestorableTime": "2023-03-23T03:56:45Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b7955b-e750-4bcf-b931-16164d11cd62", - "creationTime": "2022-11-15T16:10:18Z", - "deletionTime": "2023-03-30T03:56:45Z" - } - ] - } - }, - { - "name": "2b989b20-ec10-4162-a94e-d5d4118fa657", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b989b20-ec10-4162-a94e-d5d4118fa657", - "properties": { - "accountName": "r-database-account-3308", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T03:55:54Z", - "deletionTime": "2023-03-30T03:56:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86e31c50-5443-40e8-a97d-e6ae590d9192", - "creationTime": "2023-03-30T03:55:55Z", - "deletionTime": "2023-03-30T03:56:52Z" - } - ] - } - }, - { - "name": "daf00acd-625e-4dcd-8453-247b297129a3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/daf00acd-625e-4dcd-8453-247b297129a3", - "properties": { - "accountName": "dsapaliga-restored-cli-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z", - "oldestRestorableTime": "2023-03-23T03:57:10Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "555eaea5-bcdd-460f-bd73-63ee41bd7437", - "creationTime": "2023-03-29T23:45:38Z", - "deletionTime": "2023-03-30T03:57:10Z" - } - ] - } - }, - { - "name": "e97da8aa-6aed-421d-a8ff-47aa50f43934", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e97da8aa-6aed-421d-a8ff-47aa50f43934", - "properties": { - "accountName": "dsapaliga-xrr-cli", - "apiType": "Sql", - "creationTime": "2023-03-29T23:10:13Z", - "deletionTime": "2023-03-30T03:57:17Z", - "oldestRestorableTime": "2023-03-23T03:57:17Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "2b34067a-1265-4f88-a0b8-1c824f1a85b1", - "creationTime": "2023-03-29T23:12:40Z", - "deletionTime": "2023-03-30T03:57:17Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c460b6b5-37ae-47f6-bbcc-97b107baa9b4", - "creationTime": "2023-03-29T23:10:14Z", - "deletionTime": "2023-03-30T03:57:17Z" - } - ] - } - }, - { - "name": "847d2545-7fa2-43c1-a987-9cc15b4227bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/847d2545-7fa2-43c1-a987-9cc15b4227bc", - "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2", - "apiType": "Sql", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z", - "oldestRestorableTime": "2023-03-23T03:57:27Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "78d8e829-c8c7-4479-a2ae-f06d22ed7b8f", - "creationTime": "2023-03-29T23:30:50Z", - "deletionTime": "2023-03-30T03:57:27Z" - } - ] - } - }, - { - "name": "1b94a50b-6adf-4781-b339-4b43ab4a1123", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1b94a50b-6adf-4781-b339-4b43ab4a1123", - "properties": { - "accountName": "dsapaliga-xrr-restored-eastus2rg", - "apiType": "Sql", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z", - "oldestRestorableTime": "2023-03-23T03:57:36Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "c329781b-3cd9-4d67-828e-40eca8212f85", - "creationTime": "2023-03-29T23:48:12Z", - "deletionTime": "2023-03-30T03:57:36Z" - } - ] - } - }, - { - "name": "6d8b2ac1-b105-448d-b0bb-64d2b1129853", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d8b2ac1-b105-448d-b0bb-64d2b1129853", - "properties": { - "accountName": "dsapaliga-xrr-restorefix", - "apiType": "Sql", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z", - "oldestRestorableTime": "2023-03-23T04:15:46Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "55f0a770-e0ab-49f2-8dde-990ab1ea0b64", - "creationTime": "2023-03-30T03:51:46Z", - "deletionTime": "2023-03-30T04:15:46Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d0554b7-efbe-4795-840f-10734f015675", - "creationTime": "2023-03-30T03:32:07Z", - "deletionTime": "2023-03-30T04:15:46Z" - } - ] - } - }, - { - "name": "2896560d-7c61-44b5-95a3-2e325d44b464", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2896560d-7c61-44b5-95a3-2e325d44b464", - "properties": { - "accountName": "dsapaliga-xrr", - "apiType": "Sql", - "creationTime": "2023-03-29T23:01:28Z", - "deletionTime": "2023-03-30T04:16:00Z", - "oldestRestorableTime": "2023-03-23T04:16:00Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "feccebce-f342-4280-8f02-78dc22a38bd0", - "creationTime": "2023-03-29T23:11:33Z", - "deletionTime": "2023-03-30T04:16:00Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "044ffbbd-bb93-4c8d-9333-f26cc2d2552c", - "creationTime": "2023-03-29T23:01:29Z", - "deletionTime": "2023-03-30T04:16:00Z" - } - ] - } - }, - { - "name": "a79063ce-89b8-4a18-b265-f1ee306e1416", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a79063ce-89b8-4a18-b265-f1ee306e1416", - "properties": { - "accountName": "r-database-account-9362", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:14:52Z", - "deletionTime": "2023-03-30T04:33:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5872347-3f35-4196-9a34-1f423272933c", - "creationTime": "2023-03-30T04:14:53Z", - "deletionTime": "2023-03-30T04:33:19Z" - } - ] - } - }, - { - "name": "1c3674cb-6055-43f2-8cca-10368b4147f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c3674cb-6055-43f2-8cca-10368b4147f3", - "properties": { - "accountName": "r-database-account-7026", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T04:49:23Z", - "deletionTime": "2023-03-30T05:05:15Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f5536de0-7d21-4ba3-9f8b-782a96374b85", - "creationTime": "2023-03-30T04:49:24Z", - "deletionTime": "2023-03-30T05:05:15Z" - } - ] - } - }, - { - "name": "f45a44ef-ebd6-423d-a386-5412cb032e55", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f45a44ef-ebd6-423d-a386-5412cb032e55", - "properties": { - "accountName": "r-database-account-8518", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:21:59Z", - "deletionTime": "2023-03-30T05:23:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "760ab0e7-6ac6-48f3-a910-431079d71772", - "creationTime": "2023-03-30T05:22:00Z", - "deletionTime": "2023-03-30T05:23:37Z" - } - ] - } - }, - { - "name": "38376a6a-5db2-4b05-aadd-bd1af7e35d00", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38376a6a-5db2-4b05-aadd-bd1af7e35d00", - "properties": { - "accountName": "restoredaccount-8613", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "58c1cd68-6124-4a3d-9d71-83e71feef2ef", - "creationTime": "2023-03-30T05:04:25Z", - "deletionTime": "2023-03-30T05:36:03Z" - } - ] - } - }, - { - "name": "6a425483-5b3a-4e03-aa16-d8a469b5cd86", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a425483-5b3a-4e03-aa16-d8a469b5cd86", - "properties": { - "accountName": "restoredaccount-4321", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb33ffe6-2bfa-42be-ab40-ede741dad896", - "creationTime": "2023-03-30T04:32:28Z", - "deletionTime": "2023-03-30T05:36:03Z" - } - ] - } - }, - { - "name": "edc7af31-148a-42d0-8ce2-a8de2416e4b8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edc7af31-148a-42d0-8ce2-a8de2416e4b8", - "properties": { - "accountName": "r-database-account-9910", - "apiType": "Sql", - "creationTime": "2023-03-30T05:44:40Z", - "deletionTime": "2023-03-30T06:00:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f772afe4-1935-4095-bf10-7b903a6147a8", - "creationTime": "2023-03-30T05:44:41Z", - "deletionTime": "2023-03-30T06:00:37Z" - } - ] - } - }, - { - "name": "7eb10ac8-7ad9-466b-99e3-1e84439e46e8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7eb10ac8-7ad9-466b-99e3-1e84439e46e8", - "properties": { - "accountName": "r-database-account-8895", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:29:10Z", - "deletionTime": "2023-03-30T06:47:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "001a31e7-89b0-4527-b821-f4cce6fd9c68", - "creationTime": "2023-03-30T06:29:12Z", - "deletionTime": "2023-03-30T06:47:25Z" - } - ] - } - }, - { - "name": "8f0c28e1-d7b4-4b87-a859-250c1339fab3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f0c28e1-d7b4-4b87-a859-250c1339fab3", - "properties": { - "accountName": "restoredaccount-6039", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b15d1fd-ae9d-419c-8eff-0cf1c1e09f0f", - "creationTime": "2023-03-30T06:46:31Z", - "deletionTime": "2023-03-30T06:58:51Z" - } - ] - } - }, - { - "name": "53b30478-fadc-4af9-bde8-663f3793b182", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53b30478-fadc-4af9-bde8-663f3793b182", - "properties": { - "accountName": "r-database-account-6131", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:23:46Z", - "deletionTime": "2023-03-30T07:39:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2a8599a-34c3-4f28-95ee-4f54149c4f04", - "creationTime": "2023-03-30T07:23:47Z", - "deletionTime": "2023-03-30T07:39:31Z" - } - ] - } - }, - { - "name": "6f3866f9-c287-4bbe-ae35-2af825b3935c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f3866f9-c287-4bbe-ae35-2af825b3935c", - "properties": { - "accountName": "r-database-account-5579", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:00:42Z", - "deletionTime": "2023-03-30T08:02:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e64e743-6983-4c35-bb51-f297a9994eee", - "creationTime": "2023-03-30T08:00:43Z", - "deletionTime": "2023-03-30T08:02:03Z" - } - ] - } - }, - { - "name": "060e7475-4517-4e9c-9000-7c9413f9c5b4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/060e7475-4517-4e9c-9000-7c9413f9c5b4", - "properties": { - "accountName": "r-database-account-6802", - "apiType": "Sql", - "creationTime": "2023-03-30T08:15:53Z", - "deletionTime": "2023-03-30T08:16:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "56f4d910-86e3-4477-9c73-c4d976f14946", - "creationTime": "2023-03-30T08:15:54Z", - "deletionTime": "2023-03-30T08:16:49Z" - } - ] - } - }, - { - "name": "de2f5574-3e72-4695-b58f-3887831c9ae2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de2f5574-3e72-4695-b58f-3887831c9ae2", - "properties": { - "accountName": "r-database-account-4928", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T08:29:55Z", - "deletionTime": "2023-03-30T08:30:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27e91253-ac92-4f2d-95b8-72822704cc9d", - "creationTime": "2023-03-30T08:29:56Z", - "deletionTime": "2023-03-30T08:30:59Z" - } - ] - } - }, - { - "name": "b80e33d8-6aed-4092-964b-f007e318e0bc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b80e33d8-6aed-4092-964b-f007e318e0bc", - "properties": { - "accountName": "r-database-account-9554", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T08:45:00Z", - "deletionTime": "2023-03-30T08:46:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1b900275-5ff3-4204-a52c-809be282cf0c", - "creationTime": "2023-03-30T08:45:01Z", - "deletionTime": "2023-03-30T08:46:14Z" - } - ] - } - }, - { - "name": "ad13ceda-d324-4529-baac-c23ea5a44edd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad13ceda-d324-4529-baac-c23ea5a44edd", - "properties": { - "accountName": "r-database-account-9311", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:00:35Z", - "deletionTime": "2023-03-30T09:16:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77c14e47-f7b1-44ba-87e9-e61ce223f711", - "creationTime": "2023-03-30T09:00:36Z", - "deletionTime": "2023-03-30T09:16:50Z" - } - ] - } - }, - { - "name": "521a5d65-de37-47be-88ca-ec32b564a261", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/521a5d65-de37-47be-88ca-ec32b564a261", - "properties": { - "accountName": "r-database-account-2240", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:32:58Z", - "deletionTime": "2023-03-30T09:51:38Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35fc5a7b-8761-4aad-b316-101cb6e6216a", - "creationTime": "2023-03-30T09:32:59Z", - "deletionTime": "2023-03-30T09:51:38Z" - } - ] - } - }, - { - "name": "f12e8871-d9f8-40df-9c88-11a90459db0b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f12e8871-d9f8-40df-9c88-11a90459db0b", - "properties": { - "accountName": "r-database-account-1851", - "apiType": "Sql", - "creationTime": "2023-03-30T10:05:27Z", - "deletionTime": "2023-03-30T10:21:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9e023745-40f5-4e1e-a86d-d48e118161d5", - "creationTime": "2023-03-30T10:05:28Z", - "deletionTime": "2023-03-30T10:21:42Z" - } - ] - } - }, - { - "name": "a9bbc584-bd0e-490b-8fce-076258f066a2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9bbc584-bd0e-490b-8fce-076258f066a2", - "properties": { - "accountName": "r-database-account-5797", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:37:02Z", - "deletionTime": "2023-03-30T10:55:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "270b5461-035c-4c94-bfda-6dd3e6343a3f", - "creationTime": "2023-03-30T10:37:04Z", - "deletionTime": "2023-03-30T10:55:19Z" - } - ] - } - }, - { - "name": "848eab17-6f06-4c2e-b3d2-90509a3f6307", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/848eab17-6f06-4c2e-b3d2-90509a3f6307", - "properties": { - "accountName": "r-database-account-9560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:11:57Z", - "deletionTime": "2023-03-30T11:25:05Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e505e40c-23f8-4571-925b-17bea646e4a2", - "creationTime": "2023-03-30T11:11:58Z", - "deletionTime": "2023-03-30T11:25:05Z" - } - ] - } - }, - { - "name": "79c7cf23-13da-46c6-b38a-cc58e471b975", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79c7cf23-13da-46c6-b38a-cc58e471b975", - "properties": { - "accountName": "r-database-account-1767", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T11:41:56Z", - "deletionTime": "2023-03-30T11:43:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba719f81-4abb-4f1c-a5a8-aa888bdee855", - "creationTime": "2023-03-30T11:41:57Z", - "deletionTime": "2023-03-30T11:43:33Z" - } - ] - } - }, - { - "name": "b77aa6fb-3f75-4728-b731-2e794f10d2b9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b77aa6fb-3f75-4728-b731-2e794f10d2b9", - "properties": { - "accountName": "restoredaccount-4001", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ef7925d-38cb-489c-9fb2-bb7e52e53aaa", - "creationTime": "2023-03-30T09:50:47Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ebac2fa3-ebc9-4d65-aed2-fbe6dc091deb", - "properties": { - "accountName": "restoredaccount-7112", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4f606f3-5de5-4477-8e1f-b281d4f74a9b", - "creationTime": "2023-03-30T10:54:29Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "0370cb08-0af9-4438-b21f-405a5564b689", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0370cb08-0af9-4438-b21f-405a5564b689", - "properties": { - "accountName": "restoredaccount-9834", - "apiType": "Sql", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6da1342f-53cb-4dea-a586-160a702abff6", - "creationTime": "2023-03-30T10:21:00Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "6c273b23-ae84-4945-b093-d57bca835c7c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c273b23-ae84-4945-b093-d57bca835c7c", - "properties": { - "accountName": "restoredaccount-4009", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "960ef7d5-bc94-48eb-a9ad-76c37bd59ebd", - "creationTime": "2023-03-30T09:16:05Z", - "deletionTime": "2023-03-30T11:56:33Z" - } - ] - } - }, - { - "name": "17de7698-0393-4b12-ba51-99d12ba83904", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17de7698-0393-4b12-ba51-99d12ba83904", - "properties": { - "accountName": "r-database-account-9743", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:00:07Z", - "deletionTime": "2023-03-30T12:01:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4ab367b1-2f03-4558-8e6a-b14c0ed0630a", - "creationTime": "2023-03-30T12:00:08Z", - "deletionTime": "2023-03-30T12:01:49Z" - } - ] - } - }, - { - "name": "987831cb-c610-4631-a650-0b6678c31649", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987831cb-c610-4631-a650-0b6678c31649", - "properties": { - "accountName": "r-database-account-3771", - "apiType": "Sql", - "creationTime": "2023-03-30T12:15:11Z", - "deletionTime": "2023-03-30T12:15:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "45d45911-6a94-4096-b175-dffdc2ba761b", - "creationTime": "2023-03-30T12:15:12Z", - "deletionTime": "2023-03-30T12:15:59Z" - } - ] - } - }, - { - "name": "8320f97f-b1df-466a-bd11-e6926cb7152d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8320f97f-b1df-466a-bd11-e6926cb7152d", - "properties": { - "accountName": "r-database-account-3969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T12:29:18Z", - "deletionTime": "2023-03-30T12:30:13Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "624a5088-a616-4475-9447-d29a5eb5df56", - "creationTime": "2023-03-30T12:29:19Z", - "deletionTime": "2023-03-30T12:30:13Z" - } - ] - } - }, - { - "name": "4ca32556-0c3c-45e0-ad82-a5526d19776a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4ca32556-0c3c-45e0-ad82-a5526d19776a", - "properties": { - "accountName": "r-database-account-7064", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T12:44:53Z", - "deletionTime": "2023-03-30T12:46:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d2c6ee0a-e6dd-41f7-a2f2-803f613a0205", - "creationTime": "2023-03-30T12:44:54Z", - "deletionTime": "2023-03-30T12:46:04Z" - } - ] - } - }, - { - "name": "e4da85c4-77a1-4835-a584-cd5abf6c3c89", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4da85c4-77a1-4835-a584-cd5abf6c3c89", - "properties": { - "accountName": "r-database-account-8980", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:00:40Z", - "deletionTime": "2023-03-30T13:17:11Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dc6db853-94b1-4dd6-95db-c1f1ff628264", - "creationTime": "2023-03-30T13:00:41Z", - "deletionTime": "2023-03-30T13:17:11Z" - } - ] - } - }, - { - "name": "da698bfe-64ef-4c88-80ed-c99da4ae61d4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da698bfe-64ef-4c88-80ed-c99da4ae61d4", - "properties": { - "accountName": "r-database-account-2102", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:33:35Z", - "deletionTime": "2023-03-30T13:51:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a6148208-9a77-4292-b90c-839578f5e673", - "creationTime": "2023-03-30T13:33:36Z", - "deletionTime": "2023-03-30T13:51:57Z" - } - ] - } - }, - { - "name": "4a0940ae-09ba-4141-a68c-7501982b25d1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a0940ae-09ba-4141-a68c-7501982b25d1", - "properties": { - "accountName": "r-database-account-6294", - "apiType": "Sql", - "creationTime": "2023-03-30T14:05:48Z", - "deletionTime": "2023-03-30T14:21:29Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fc1bab6-29c1-409b-8418-fd1e43b60619", - "creationTime": "2023-03-30T14:05:49Z", - "deletionTime": "2023-03-30T14:21:29Z" - } - ] - } - }, - { - "name": "86a5260e-5153-431d-8eab-af58b83494af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/86a5260e-5153-431d-8eab-af58b83494af", - "properties": { - "accountName": "r-database-account-2370", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:35:58Z", - "deletionTime": "2023-03-30T14:54:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20a7e299-43e8-4e8a-8a90-3b2cd54f7c15", - "creationTime": "2023-03-30T14:35:59Z", - "deletionTime": "2023-03-30T14:54:17Z" - } - ] - } - }, - { - "name": "a6f3a407-dd95-42a4-ad4c-3b27e77d8013", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6f3a407-dd95-42a4-ad4c-3b27e77d8013", - "properties": { - "accountName": "r-database-account-3273", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:10:49Z", - "deletionTime": "2023-03-30T15:24:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a892b302-8b8c-405f-80b4-f6900e28aeb1", - "creationTime": "2023-03-30T15:10:50Z", - "deletionTime": "2023-03-30T15:24:06Z" - } - ] - } - }, - { - "name": "8246105a-a890-4491-9dd6-7292d01fea88", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8246105a-a890-4491-9dd6-7292d01fea88", - "properties": { - "accountName": "r-database-account-3250", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T15:40:22Z", - "deletionTime": "2023-03-30T15:41:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a457753c-b1f4-441e-b5a2-398452ee00aa", - "creationTime": "2023-03-30T15:40:23Z", - "deletionTime": "2023-03-30T15:41:57Z" - } - ] - } - }, - { - "name": "bbf50286-0d85-4979-9c86-63d10090b51a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bbf50286-0d85-4979-9c86-63d10090b51a", - "properties": { - "accountName": "restoredaccount-2722", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "41ef55dd-13a1-4a6e-ac41-a46849a40e1e", - "creationTime": "2023-03-30T13:51:29Z", - "deletionTime": "2023-03-30T15:53:55Z" - } - ] - } - }, - { - "name": "4a80703a-89d3-46d2-a1e3-b87617ecae51", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a80703a-89d3-46d2-a1e3-b87617ecae51", - "properties": { - "accountName": "restoredaccount-4323", - "apiType": "Sql", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36a736f1-b137-4f81-80ea-694235b0bd70", - "creationTime": "2023-03-30T14:20:50Z", - "deletionTime": "2023-03-30T15:53:55Z" - } - ] - } - }, - { - "name": "80c98630-7e3f-45d6-b50b-cb8571dda04c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80c98630-7e3f-45d6-b50b-cb8571dda04c", - "properties": { - "accountName": "restoredaccount-2887", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6218dc1-718a-46cc-90ae-96808076ae0e", - "creationTime": "2023-03-30T13:16:48Z", - "deletionTime": "2023-03-30T15:53:56Z" - } - ] - } - }, - { - "name": "b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5bd1b60-0dac-4e6c-baaf-7bb82c297f84", - "properties": { - "accountName": "restoredaccount-3024", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "50df5c23-1419-4c03-b538-ddf7d28a1c61", - "creationTime": "2023-03-30T14:53:50Z", - "deletionTime": "2023-03-30T15:53:56Z" - } - ] - } - }, - { - "name": "6367f89c-a216-46f7-8d70-0ccffd3d70ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6367f89c-a216-46f7-8d70-0ccffd3d70ad", - "properties": { - "accountName": "r-database-account-4043", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:31:27Z", - "deletionTime": "2023-03-30T16:47:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e020a2e1-0e8c-45f4-84a1-c354ac00ffc0", - "creationTime": "2023-03-30T16:31:28Z", - "deletionTime": "2023-03-30T16:47:52Z" - } - ] - } - }, - { - "name": "00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00f7eae7-e8e9-4cc0-9d66-9e6f0aa4e030", - "properties": { - "accountName": "restoredaccount-7511", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ce006d9-7d96-4450-a4f4-9848abdc082f", - "creationTime": "2023-03-30T16:47:28Z", - "deletionTime": "2023-03-30T17:00:19Z" - } - ] - } - }, - { - "name": "87ebb4c1-4ed1-42e8-8903-378a75a7bc15", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ebb4c1-4ed1-42e8-8903-378a75a7bc15", - "properties": { - "accountName": "r-database-account-353", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a03513e7-ee85-4770-a2a1-b67c9ce52b4e", - "creationTime": "2023-03-30T17:04:32Z", - "deletionTime": "2023-03-30T17:07:06Z" - } - ] - } - }, - { - "name": "8b549c68-6dd0-454b-a37c-4eb62232b44f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b549c68-6dd0-454b-a37c-4eb62232b44f", - "properties": { - "accountName": "r-database-account-8087", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:24:28Z", - "deletionTime": "2023-03-30T17:39:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db389965-4892-4de0-927a-5d06dfa0844b", - "creationTime": "2023-03-30T17:24:29Z", - "deletionTime": "2023-03-30T17:39:50Z" - } - ] - } - }, - { - "name": "8dc2c4cb-ecbc-4cc3-9514-44832293360d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dc2c4cb-ecbc-4cc3-9514-44832293360d", - "properties": { - "accountName": "restoredaccount-560", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1ccd505-43f1-4765-a740-9b1176b86989", - "creationTime": "2023-03-30T17:39:25Z", - "deletionTime": "2023-03-30T17:51:16Z" - } - ] - } - }, - { - "name": "d9e2fd03-4af1-4649-98c3-65f580724594", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9e2fd03-4af1-4649-98c3-65f580724594", - "properties": { - "accountName": "r-database-account-7446", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:08:24Z", - "deletionTime": "2023-03-30T19:10:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16f0d9f-bb6e-4d6a-8c16-ee0110bab752", - "creationTime": "2023-03-30T19:08:25Z", - "deletionTime": "2023-03-30T19:10:04Z" - } - ] - } - }, - { - "name": "84fe0b60-732a-47ad-9827-1a1edabcd126", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84fe0b60-732a-47ad-9827-1a1edabcd126", - "properties": { - "accountName": "r-database-account-8409", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:30:14Z", - "deletionTime": "2023-03-30T19:46:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "596be993-15ca-4975-998a-be3244f2339f", - "creationTime": "2023-03-30T19:30:15Z", - "deletionTime": "2023-03-30T19:46:59Z" - } - ] - } - }, - { - "name": "46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d32ba9-f16b-4f59-9c16-8bf1ef7e0cf9", - "properties": { - "accountName": "restoredaccount-9502", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f32a1766-d089-4316-aa53-29f2cd850334", - "creationTime": "2023-03-30T19:46:10Z", - "deletionTime": "2023-03-30T19:58:17Z" - } - ] - } - }, - { - "name": "a274527e-da37-49f9-9878-cef9f55b334d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a274527e-da37-49f9-9878-cef9f55b334d", - "properties": { - "accountName": "r-database-account-4548", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:23:16Z", - "deletionTime": "2023-03-30T20:41:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9bd4a072-d0bb-4144-b744-fc96c2206dd0", - "creationTime": "2023-03-30T20:23:17Z", - "deletionTime": "2023-03-30T20:41:33Z" - } - ] - } - }, - { - "name": "37f08f1b-305c-460e-bc0c-7811a85b831b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/37f08f1b-305c-460e-bc0c-7811a85b831b", - "properties": { - "accountName": "restoredaccount-3745", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f61d231e-3e40-4843-b3a7-18d71ced4b1f", - "creationTime": "2023-03-30T20:41:08Z", - "deletionTime": "2023-03-30T20:52:52Z" - } - ] - } - }, - { - "name": "82953f61-9482-4186-a3cb-fe5bbad492f5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82953f61-9482-4186-a3cb-fe5bbad492f5", - "properties": { - "accountName": "r-database-account-2582", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T21:50:24Z", - "deletionTime": "2023-03-30T21:52:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d697b9d-edd4-432a-a456-7545bb5e061f", - "creationTime": "2023-03-30T21:50:27Z", - "deletionTime": "2023-03-30T21:52:04Z" - } - ] - } - }, - { - "name": "b7d53a2d-d75e-42ef-82fc-2bf948828126", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b7d53a2d-d75e-42ef-82fc-2bf948828126", - "properties": { - "accountName": "r-database-account-8779", - "apiType": "Sql", - "creationTime": "2023-03-30T22:06:33Z", - "deletionTime": "2023-03-30T22:07:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2c2fea9f-5b0f-4d94-a91f-456abfd41b3f", - "creationTime": "2023-03-30T22:06:34Z", - "deletionTime": "2023-03-30T22:07:17Z" - } - ] - } - }, - { - "name": "38947549-a1bf-4023-bc95-88dcc312797f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38947549-a1bf-4023-bc95-88dcc312797f", - "properties": { - "accountName": "r-database-account-4386", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:20:34Z", - "deletionTime": "2023-03-30T22:21:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2a2f2b10-ea48-46f4-b57f-f78ddb90b18e", - "creationTime": "2023-03-30T22:20:35Z", - "deletionTime": "2023-03-30T22:21:28Z" - } - ] - } - }, - { - "name": "3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3aaccd29-8dbe-42e4-b287-84d0bfd3f1f7", - "properties": { - "accountName": "r-database-account-3583", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T22:35:57Z", - "deletionTime": "2023-03-30T22:36:47Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1118544d-3bd7-4a3d-a78b-1628ef5f9a02", - "creationTime": "2023-03-30T22:35:58Z", - "deletionTime": "2023-03-30T22:36:47Z" - } - ] - } - }, - { - "name": "736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/736be6ea-19e7-4cdb-a9ac-2c12f8fa2eba", - "properties": { - "accountName": "r-database-account-5053", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T22:51:37Z", - "deletionTime": "2023-03-30T23:05:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a31c8ee8-46af-49b8-a3a6-f338b1180451", - "creationTime": "2023-03-30T22:51:38Z", - "deletionTime": "2023-03-30T23:05:43Z" - } - ] - } - }, - { - "name": "17692a3a-23c6-428d-a13a-94657bdea47a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/17692a3a-23c6-428d-a13a-94657bdea47a", - "properties": { - "accountName": "r-database-account-9618", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:22:07Z", - "deletionTime": "2023-03-30T23:40:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e81c408-cf6c-4ce3-8bf8-e930e4eb35f6", - "creationTime": "2023-03-30T23:22:08Z", - "deletionTime": "2023-03-30T23:40:57Z" - } - ] - } - }, - { - "name": "aae41121-0386-45f5-884b-acca11a878e3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aae41121-0386-45f5-884b-acca11a878e3", - "properties": { - "accountName": "restoredaccount-2225", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "258d33af-139c-40a3-a52d-016de9626d18", - "creationTime": "2023-03-30T23:40:03Z", - "deletionTime": "2023-03-30T23:52:14Z" - } - ] - } - }, - { - "name": "1e6d022b-776a-4482-a9a2-2d4f981e9674", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e6d022b-776a-4482-a9a2-2d4f981e9674", - "properties": { - "accountName": "r-database-account-220", - "apiType": "Sql", - "creationTime": "2023-03-31T00:05:32Z", - "deletionTime": "2023-03-31T00:21:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "84517dfc-2483-45f2-91f2-a2ace4a1ed67", - "creationTime": "2023-03-31T00:05:33Z", - "deletionTime": "2023-03-31T00:21:52Z" - } - ] - } - }, - { - "name": "14b5d3fc-2878-48c2-817a-2d902bab72e5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14b5d3fc-2878-48c2-817a-2d902bab72e5", - "properties": { - "accountName": "restoredaccount-9446", - "apiType": "Sql", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe4cf99d-8b4a-41f2-813f-3c71b89c5c8c", - "creationTime": "2023-03-31T00:21:09Z", - "deletionTime": "2023-03-31T00:32:36Z" - } - ] - } - }, - { - "name": "58e65817-aa8e-4e2f-b984-d1dd4279ce74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58e65817-aa8e-4e2f-b984-d1dd4279ce74", - "properties": { - "accountName": "r-database-account-2092", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T00:47:34Z", - "deletionTime": "2023-03-31T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601578c9-c2e4-49fd-9d2e-e7e4ab59bdc7", - "creationTime": "2023-03-31T00:47:35Z", - "deletionTime": "2023-03-31T01:05:40Z" - } - ] - } - }, - { - "name": "8a767a9e-47fd-428d-a0d1-00e138cd4b5d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a767a9e-47fd-428d-a0d1-00e138cd4b5d", - "properties": { - "accountName": "restoredaccount-6025", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d0d3b527-5ae9-49f1-9b8a-0ecec740939e", - "creationTime": "2023-03-31T01:04:48Z", - "deletionTime": "2023-03-31T01:17:03Z" - } - ] - } - }, - { - "name": "89218c06-82d7-4397-a460-2f07c20d7138", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89218c06-82d7-4397-a460-2f07c20d7138", - "properties": { - "accountName": "r-database-account-2331", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:32:56Z", - "deletionTime": "2023-03-31T01:49:23Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79ceb1ec-7d5f-436f-a70a-583cc421a625", - "creationTime": "2023-03-31T01:32:57Z", - "deletionTime": "2023-03-31T01:49:23Z" - } - ] - } - }, - { - "name": "480bf65c-2961-46e6-a44c-4de49632a509", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/480bf65c-2961-46e6-a44c-4de49632a509", - "properties": { - "accountName": "restoredaccount-6086", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "99922046-de3d-419f-b821-678affa1bd97", - "creationTime": "2023-03-31T01:48:31Z", - "deletionTime": "2023-03-31T02:01:14Z" - } - ] - } - }, - { - "name": "a56d6115-98ce-4360-a0f6-dc0fa7ae161a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a56d6115-98ce-4360-a0f6-dc0fa7ae161a", - "properties": { - "accountName": "r-database-account-3761", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T02:17:45Z", - "deletionTime": "2023-03-31T02:19:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9a0eb90-eda8-429c-8142-5dcc3934f583", - "creationTime": "2023-03-31T02:17:46Z", - "deletionTime": "2023-03-31T02:19:03Z" - } - ] - } - }, - { - "name": "4f124886-5b63-4e45-8d07-3a693077d7bf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f124886-5b63-4e45-8d07-3a693077d7bf", - "properties": { - "accountName": "r-database-account-176", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T02:35:45Z", - "deletionTime": "2023-03-31T02:37:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e1752212-5d68-4bc5-97e5-c88de0d8ba3f", - "creationTime": "2023-03-31T02:35:46Z", - "deletionTime": "2023-03-31T02:37:16Z" - } - ] - } - }, - { - "name": "eb4a3925-986b-42a9-b004-fc2d48b6180c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb4a3925-986b-42a9-b004-fc2d48b6180c", - "properties": { - "accountName": "r-database-account-9754", - "apiType": "Sql", - "creationTime": "2023-03-31T02:51:04Z", - "deletionTime": "2023-03-31T02:51:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2caa8c93-2be4-49a8-8302-e11a1491bab1", - "creationTime": "2023-03-31T02:51:05Z", - "deletionTime": "2023-03-31T02:51:58Z" - } - ] - } - }, - { - "name": "b44736f2-85b3-46aa-862e-ed587ac5e2e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b44736f2-85b3-46aa-862e-ed587ac5e2e0", - "properties": { - "accountName": "r-database-account-3560", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:04:37Z", - "deletionTime": "2023-03-31T03:05:38Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5b8467ba-0d5f-4ca3-ad11-79f09fec6aac", - "creationTime": "2023-03-31T03:04:38Z", - "deletionTime": "2023-03-31T03:05:38Z" - } - ] - } - }, - { - "name": "4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cdf6d4c-fcb1-4e05-9f53-3382d9187b25", - "properties": { - "accountName": "r-database-account-7061", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T03:21:54Z", - "deletionTime": "2023-03-31T03:23:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cdab76fa-df70-4a3c-ae4c-ca7eb3f47eca", - "creationTime": "2023-03-31T03:21:55Z", - "deletionTime": "2023-03-31T03:23:03Z" - } - ] - } - }, - { - "name": "bdf8f215-7bca-4191-a0a6-ad827041f384", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdf8f215-7bca-4191-a0a6-ad827041f384", - "properties": { - "accountName": "r-database-account-6492", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T03:37:32Z", - "deletionTime": "2023-03-31T03:51:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36f2a6c3-954a-43b5-9d79-34a429b645f8", - "creationTime": "2023-03-31T03:37:33Z", - "deletionTime": "2023-03-31T03:51:53Z" - } - ] - } - }, - { - "name": "d23d7f49-80f4-4bdd-9088-6309a1939e1e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d23d7f49-80f4-4bdd-9088-6309a1939e1e", - "properties": { - "accountName": "r-database-account-2187", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:07:50Z", - "deletionTime": "2023-03-31T04:26:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ef55ca6-8447-4734-817c-5b5b373df9dc", - "creationTime": "2023-03-31T04:07:51Z", - "deletionTime": "2023-03-31T04:26:04Z" - } - ] - } - }, - { - "name": "dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfd02c3b-758f-4eaa-ab8b-1a0d8eccf19b", - "properties": { - "accountName": "restoredaccount-3749", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7ea40069-e812-4b4e-ba08-e558d15404f8", - "creationTime": "2023-03-31T04:25:40Z", - "deletionTime": "2023-03-31T04:37:22Z" - } - ] - } - }, - { - "name": "8c5948e1-9714-42b2-a09c-aa8cb48ed671", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c5948e1-9714-42b2-a09c-aa8cb48ed671", - "properties": { - "accountName": "r-database-account-1319", - "apiType": "Sql", - "creationTime": "2023-03-31T04:51:37Z", - "deletionTime": "2023-03-31T05:08:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bdb3c990-b5fa-46eb-8557-d483f88271ab", - "creationTime": "2023-03-31T04:51:38Z", - "deletionTime": "2023-03-31T05:08:00Z" - } - ] - } - }, - { - "name": "5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a64fb9b-61b1-4f1e-bcc6-f3fa3c7bbe29", - "properties": { - "accountName": "restoredaccount-949", - "apiType": "Sql", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1886ac31-bc3d-4eeb-8814-ac72e5ff8c33", - "creationTime": "2023-03-31T05:07:24Z", - "deletionTime": "2023-03-31T05:18:12Z" - } - ] - } - }, - { - "name": "91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/91a3bcfb-e79d-4d97-adf4-ed5afb947b4b", - "properties": { - "accountName": "r-database-account-3444", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:33:47Z", - "deletionTime": "2023-03-31T05:52:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "477aefdd-3ea0-44d4-92fa-61fa91cb6896", - "creationTime": "2023-03-31T05:33:48Z", - "deletionTime": "2023-03-31T05:52:04Z" - } - ] - } - }, - { - "name": "9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d8b3268-f35d-452d-8ae2-8eb9b3fe266b", - "properties": { - "accountName": "restoredaccount-8369", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d1f5f333-9db1-4ec3-880e-d9512521291b", - "creationTime": "2023-03-31T05:51:09Z", - "deletionTime": "2023-03-31T06:03:54Z" - } - ] - } - }, - { - "name": "a6938641-f254-423b-877a-01a80f789530", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6938641-f254-423b-877a-01a80f789530", - "properties": { - "accountName": "r-database-account-4184", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:20:37Z", - "deletionTime": "2023-03-31T06:36:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "79c142cc-4afc-4880-a2fb-b1842f69b3da", - "creationTime": "2023-03-31T06:20:38Z", - "deletionTime": "2023-03-31T06:36:54Z" - } - ] - } - }, - { - "name": "0a722a1a-c6af-4102-9da2-0a9ed018513d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a722a1a-c6af-4102-9da2-0a9ed018513d", - "properties": { - "accountName": "restoredaccount-8230", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "683ef33c-f17c-44cc-826d-a6b2a5afcabc", - "creationTime": "2023-03-31T06:35:59Z", - "deletionTime": "2023-03-31T06:48:41Z" - } - ] - } - }, - { - "name": "1bce83b8-6248-43f2-80bb-50e12dbe3703", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1bce83b8-6248-43f2-80bb-50e12dbe3703", - "properties": { - "accountName": "r-database-account-9421", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:10:08Z", - "deletionTime": "2023-03-31T07:27:01Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "902f5495-6280-4208-9e18-1dd489dd22c7", - "creationTime": "2023-03-31T07:10:09Z", - "deletionTime": "2023-03-31T07:27:01Z" - } - ] - } - }, - { - "name": "f1fe012d-8fed-417a-b8dd-40e8b7313776", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1fe012d-8fed-417a-b8dd-40e8b7313776", - "properties": { - "accountName": "restoredaccount-2737", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab174973-1db9-4e76-818b-bc73a2a2971f", - "creationTime": "2023-03-31T07:26:06Z", - "deletionTime": "2023-03-31T07:39:47Z" - } - ] - } - }, - { - "name": "58a535ca-818d-4dfc-8b03-ee8df49a87eb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58a535ca-818d-4dfc-8b03-ee8df49a87eb", - "properties": { - "accountName": "r-database-account-4921", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:56:33Z", - "deletionTime": "2023-03-31T07:58:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2420cf5e-59a9-4719-8589-c6e08ee59e67", - "creationTime": "2023-03-31T07:56:34Z", - "deletionTime": "2023-03-31T07:58:09Z" - } - ] - } - }, - { - "name": "bea1d046-d612-49e3-b64c-3e82a216987a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1d046-d612-49e3-b64c-3e82a216987a", - "properties": { - "accountName": "r-database-account-4832", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:15:55Z", - "deletionTime": "2023-03-31T08:33:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1e6e89e1-3e27-4d09-adae-5d44a51f647f", - "creationTime": "2023-03-31T08:15:57Z", - "deletionTime": "2023-03-31T08:33:06Z" - } - ] - } - }, - { - "name": "98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98f9fe35-16b9-4c6a-909f-582c1b9ca0c4", - "properties": { - "accountName": "restoredaccount-9360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cc422b8-edfc-451d-b0b3-1e5bd6bd3c30", - "creationTime": "2023-03-31T08:32:15Z", - "deletionTime": "2023-03-31T08:44:24Z" - } - ] - } - }, - { - "name": "9e6527c2-ded9-493a-9086-df70877c305d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e6527c2-ded9-493a-9086-df70877c305d", - "properties": { - "accountName": "r-database-account-7247", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T09:00:28Z", - "deletionTime": "2023-03-31T09:01:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "db520ad2-b338-4fdd-9df1-4028f40edd82", - "creationTime": "2023-03-31T09:00:29Z", - "deletionTime": "2023-03-31T09:01:48Z" - } - ] - } - }, - { - "name": "f80f3a51-4524-4507-9cb8-464cf706c72f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f80f3a51-4524-4507-9cb8-464cf706c72f", - "properties": { - "accountName": "r-database-account-2911", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:04:29Z", - "deletionTime": "2023-03-31T15:05:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0ec49121-883d-4bff-bdee-b2b5edebd2de", - "creationTime": "2023-03-31T15:04:30Z", - "deletionTime": "2023-03-31T15:05:51Z" - } - ] - } - }, - { - "name": "ba086ca8-47cf-41b6-81e9-3518af121e04", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ba086ca8-47cf-41b6-81e9-3518af121e04", - "properties": { - "accountName": "r-database-account-7482", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T15:22:06Z", - "deletionTime": "2023-03-31T15:23:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3939d0e5-7a62-443d-942a-337ae37fcc92", - "creationTime": "2023-03-31T15:22:08Z", - "deletionTime": "2023-03-31T15:23:48Z" - } - ] - } - }, - { - "name": "c739e02a-8d12-44a1-9b43-72dee580e901", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c739e02a-8d12-44a1-9b43-72dee580e901", - "properties": { - "accountName": "r-database-account-2396", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:34:52Z", - "deletionTime": "2023-04-04T16:36:27Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c753a4cd-3da6-4075-88b4-0bdb87efdb66", - "creationTime": "2023-04-04T16:34:53Z", - "deletionTime": "2023-04-04T16:36:27Z" - } - ] - } - }, - { - "name": "0700456b-b8dc-44c5-ba7d-218e66011a6e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0700456b-b8dc-44c5-ba7d-218e66011a6e", - "properties": { - "accountName": "r-database-account-2962", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T16:56:08Z", - "deletionTime": "2023-04-04T16:57:51Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4a6d9a14-b563-447e-a8d9-7226c589e027", - "creationTime": "2023-04-04T16:56:09Z", - "deletionTime": "2023-04-04T16:57:51Z" - } - ] - } - }, - { - "name": "0db192a4-68d9-400f-9ac8-df947d1253e4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db192a4-68d9-400f-9ac8-df947d1253e4", - "properties": { - "accountName": "r-database-account-2963", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:15:44Z", - "deletionTime": "2023-04-04T17:17:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "89727de0-f7fe-4a40-a5dc-5dc9d0f64ec5", - "creationTime": "2023-04-04T17:15:45Z", - "deletionTime": "2023-04-04T17:17:16Z" - } - ] - } - }, - { - "name": "f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9cba4cc-34f9-42e1-a6d5-7f50237b2a9c", - "properties": { - "accountName": "r-database-account-6481", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:49:37Z", - "deletionTime": "2023-04-04T17:51:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cede2d17-d0f1-48e9-9a29-8b479d55b874", - "creationTime": "2023-04-04T17:49:38Z", - "deletionTime": "2023-04-04T17:51:33Z" - } - ] - } - }, - { - "name": "14068f91-27dd-4007-bcd1-576ea1daa0ee", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/14068f91-27dd-4007-bcd1-576ea1daa0ee", - "properties": { - "accountName": "r-database-account-5265", - "apiType": "Sql", - "creationTime": "2023-04-04T18:05:44Z", - "deletionTime": "2023-04-04T18:06:15Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9d63fa08-a30f-4b9d-96eb-df12e21acae3", - "creationTime": "2023-04-04T18:05:45Z", - "deletionTime": "2023-04-04T18:06:15Z" - } - ] - } - }, - { - "name": "80a770e1-ec3e-4a91-8612-0b02b07514da", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80a770e1-ec3e-4a91-8612-0b02b07514da", - "properties": { - "accountName": "r-database-account-2888", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:48:32Z", - "deletionTime": "2023-04-04T18:50:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b90b0eef-ef24-431f-b258-31db7bc65d43", - "creationTime": "2023-04-04T18:48:33Z", - "deletionTime": "2023-04-04T18:50:14Z" - } - ] - } - }, - { - "name": "ad1760ce-6137-41f0-843a-84a233b507fb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ad1760ce-6137-41f0-843a-84a233b507fb", - "properties": { - "accountName": "r-database-account-3827", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:16:39Z", - "deletionTime": "2023-04-04T19:18:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bcfa63b5-edd6-43ed-ab53-b7fac0a77b98", - "creationTime": "2023-04-04T19:16:40Z", - "deletionTime": "2023-04-04T19:18:14Z" - } - ] - } - }, - { - "name": "43cda953-831a-41fd-86d6-8deb1a108ea7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/43cda953-831a-41fd-86d6-8deb1a108ea7", - "properties": { - "accountName": "r-database-account-7735", - "apiType": "Sql", - "creationTime": "2023-04-04T19:32:03Z", - "deletionTime": "2023-04-04T19:33:01Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8892a4de-4920-4436-829d-993f31e8dc20", - "creationTime": "2023-04-04T19:32:04Z", - "deletionTime": "2023-04-04T19:33:01Z" - } - ] - } - }, - { - "name": "640f00a0-c8a8-412a-ba22-01f3c831766e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/640f00a0-c8a8-412a-ba22-01f3c831766e", - "properties": { - "accountName": "r-database-account-1093", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T19:46:39Z", - "deletionTime": "2023-04-04T19:47:45Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0b642e02-5cd0-4153-870d-17ff530168a9", - "creationTime": "2023-04-04T19:46:40Z", - "deletionTime": "2023-04-04T19:47:45Z" - } - ] - } - }, - { - "name": "84ab51b4-27d8-472c-95b5-7e6e08433d46", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/84ab51b4-27d8-472c-95b5-7e6e08433d46", - "properties": { - "accountName": "r-database-account-5066", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6f7c1d23-dd5e-4f33-92c5-228befd1ae81", - "creationTime": "2023-04-04T20:02:17Z", - "deletionTime": "2023-04-04T20:03:01Z" - } - ] - } - }, - { - "name": "f93ac0d4-d245-42c0-9922-3071d2d2169b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f93ac0d4-d245-42c0-9922-3071d2d2169b", - "properties": { - "accountName": "r-database-account-1835", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:17:28Z", - "deletionTime": "2023-04-04T20:34:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "118d9ccd-48c2-4564-a1da-e518f6dc5bd1", - "creationTime": "2023-04-04T20:17:29Z", - "deletionTime": "2023-04-04T20:34:14Z" - } - ] - } - }, - { - "name": "cb2e954a-4e71-425a-b780-25555527fc7b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb2e954a-4e71-425a-b780-25555527fc7b", - "properties": { - "accountName": "restoredaccount-5931", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f4022bf8-c5dd-4425-b0fb-e77ef4284e6e", - "creationTime": "2023-04-04T20:33:26Z", - "deletionTime": "2023-04-04T20:46:32Z" - } - ] - } - }, - { - "name": "d46ce591-c9a4-4aa9-96b3-f46646869c5c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d46ce591-c9a4-4aa9-96b3-f46646869c5c", - "properties": { - "accountName": "r-database-account-8394", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:02:22Z", - "deletionTime": "2023-04-04T21:20:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0943a578-a98c-400f-a68f-fdb506668b5f", - "creationTime": "2023-04-04T21:02:23Z", - "deletionTime": "2023-04-04T21:20:17Z" - } - ] - } - }, - { - "name": "a49e0fa8-acb1-4525-ad64-cb47095516a3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a49e0fa8-acb1-4525-ad64-cb47095516a3", - "properties": { - "accountName": "r-database-account-5571", - "apiType": "Sql", - "creationTime": "2023-04-04T21:44:41Z", - "deletionTime": "2023-04-04T21:45:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06235ed8-cbab-497f-b462-9aca28b3f459", - "creationTime": "2023-04-04T21:44:42Z", - "deletionTime": "2023-04-04T21:45:35Z" - } - ] - } - }, - { - "name": "987588f7-7709-4336-aa45-223395911848", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/987588f7-7709-4336-aa45-223395911848", - "properties": { - "accountName": "r-database-account-1689", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:09:17Z", - "deletionTime": "2023-04-04T22:10:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05514068-13e5-4349-84a3-5155f381bf91", - "creationTime": "2023-04-04T22:09:19Z", - "deletionTime": "2023-04-04T22:10:56Z" - } - ] - } - }, - { - "name": "5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca75bba-faa2-40aa-9a4c-c5cde8bb41e8", - "properties": { - "accountName": "r-database-account-4876", - "apiType": "Sql", - "creationTime": "2023-04-04T22:24:45Z", - "deletionTime": "2023-04-04T22:25:39Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5fc14dbe-d311-4608-b6b0-c06eace31251", - "creationTime": "2023-04-04T22:24:46Z", - "deletionTime": "2023-04-04T22:25:39Z" - } - ] - } - }, - { - "name": "0225dda1-4e92-46d8-bc38-7ca3f01c24fe", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0225dda1-4e92-46d8-bc38-7ca3f01c24fe", - "properties": { - "accountName": "r-database-account-3793", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T22:38:37Z", - "deletionTime": "2023-04-04T22:39:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9455a7-7924-4d85-b0fe-babec15dc9cc", - "creationTime": "2023-04-04T22:38:38Z", - "deletionTime": "2023-04-04T22:39:26Z" - } - ] - } - }, - { - "name": "f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f63fedb6-9e95-4a2b-983a-5bbd7a2ff813", - "properties": { - "accountName": "r-database-account-2846", - "apiType": "Table, Sql", - "creationTime": "2023-04-04T22:54:10Z", - "deletionTime": "2023-04-04T22:55:15Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "53228a8c-92c9-49b1-bb70-b2e7ed39e0d6", - "creationTime": "2023-04-04T22:54:11Z", - "deletionTime": "2023-04-04T22:55:15Z" - } - ] - } - }, - { - "name": "a5f8a097-ee35-4a65-ab28-a57bf3e9c388", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5f8a097-ee35-4a65-ab28-a57bf3e9c388", - "properties": { - "accountName": "r-database-account-121", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:09:10Z", - "deletionTime": "2023-04-04T23:26:11Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "20c6b05c-aeca-4bd7-b66b-492f86a1ec5b", - "creationTime": "2023-04-04T23:09:11Z", - "deletionTime": "2023-04-04T23:26:11Z" - } - ] - } - }, - { - "name": "f2889950-ba46-4730-a73f-0b5a359ea63e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2889950-ba46-4730-a73f-0b5a359ea63e", - "properties": { - "accountName": "restoredaccount-7907", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cc901727-d242-4e3d-8783-97ab0c31b6ce", - "creationTime": "2023-04-04T23:25:23Z", - "deletionTime": "2023-04-04T23:37:35Z" - } - ] - } - }, - { - "name": "e75fc4ab-0e40-4203-a374-dc993e8fcaa7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e75fc4ab-0e40-4203-a374-dc993e8fcaa7", - "properties": { - "accountName": "r-database-account-5836", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T23:53:57Z", - "deletionTime": "2023-04-05T00:12:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80180605-fad7-48ca-8a17-6f55e8117c76", - "creationTime": "2023-04-04T23:53:58Z", - "deletionTime": "2023-04-05T00:12:42Z" - } - ] - } - }, - { - "name": "eda15431-8fd3-434e-a724-6478d0d766b0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eda15431-8fd3-434e-a724-6478d0d766b0", - "properties": { - "accountName": "restoredaccount-2781", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d16445f8-f78c-4720-90b1-9b62fb5505b7", - "creationTime": "2023-04-05T00:12:03Z", - "deletionTime": "2023-04-05T00:24:02Z" - } - ] - } - }, - { - "name": "080fc8ec-9b6d-430a-9f58-94c535616d1a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/080fc8ec-9b6d-430a-9f58-94c535616d1a", - "properties": { - "accountName": "r-database-account-886", - "apiType": "Sql", - "creationTime": "2023-04-05T00:38:08Z", - "deletionTime": "2023-04-05T00:55:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3c5466c-36e4-41ed-932e-808db33d498e", - "creationTime": "2023-04-05T00:38:09Z", - "deletionTime": "2023-04-05T00:55:26Z" - } - ] - } - }, - { - "name": "0461674a-5302-4644-8006-15273be1dd01", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0461674a-5302-4644-8006-15273be1dd01", - "properties": { - "accountName": "restoredaccount-1331", - "apiType": "Sql", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "68b82ff3-1a17-4373-8c33-483768d091dc", - "creationTime": "2023-04-05T00:54:34Z", - "deletionTime": "2023-04-05T01:05:40Z" - } - ] - } - }, - { - "name": "e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2f3e7b5-1b5c-4037-ba13-b384cd5c6450", - "properties": { - "accountName": "r-database-account-5720", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:20:43Z", - "deletionTime": "2023-04-05T01:39:46Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac647cd3-c6e3-4878-9987-cc526d148d19", - "creationTime": "2023-04-05T01:20:44Z", - "deletionTime": "2023-04-05T01:39:46Z" - } - ] - } - }, - { - "name": "0f2bc77d-1f8c-4be6-9288-0c5e84553371", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f2bc77d-1f8c-4be6-9288-0c5e84553371", - "properties": { - "accountName": "restoredaccount-3222", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c551046-695e-4c30-8e85-8098c433d3f4", - "creationTime": "2023-04-05T01:38:51Z", - "deletionTime": "2023-04-05T01:51:35Z" - } - ] - } - }, - { - "name": "b105738e-5ed9-4b79-a5b5-f6071ddf82e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b105738e-5ed9-4b79-a5b5-f6071ddf82e0", - "properties": { - "accountName": "r-database-account-7279", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:07:38Z", - "deletionTime": "2023-04-05T02:24:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9b351a9b-5712-4295-a566-d38189449609", - "creationTime": "2023-04-05T02:07:39Z", - "deletionTime": "2023-04-05T02:24:18Z" - } - ] - } - }, - { - "name": "3364799a-fb66-48f3-b389-45af2e775bd2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3364799a-fb66-48f3-b389-45af2e775bd2", - "properties": { - "accountName": "restoredaccount-2694", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1cf0b12c-24e0-4919-b20c-dc795968d7d6", - "creationTime": "2023-04-05T02:23:53Z", - "deletionTime": "2023-04-05T02:36:09Z" - } - ] - } - }, - { - "name": "cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf08e843-9ab3-4c13-bf2e-403dc9800f32", - "properties": { - "accountName": "r-database-account-2111", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T02:52:15Z", - "deletionTime": "2023-04-05T02:53:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "336d31f2-0eea-48ae-a93f-6cdad32f97c4", - "creationTime": "2023-04-05T02:52:16Z", - "deletionTime": "2023-04-05T02:53:42Z" - } - ] - } - }, - { - "name": "1275f66f-c69b-4813-9b61-901e1ec451af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1275f66f-c69b-4813-9b61-901e1ec451af", - "properties": { - "accountName": "r-database-account-4270", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:09:42Z", - "deletionTime": "2023-04-05T03:11:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6dcb278-db5b-4e0a-9fdb-a5ef57fa6d93", - "creationTime": "2023-04-05T03:09:43Z", - "deletionTime": "2023-04-05T03:11:28Z" - } - ] - } - }, - { - "name": "b8ec2616-62a8-4373-8bcb-26af3f699973", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b8ec2616-62a8-4373-8bcb-26af3f699973", - "properties": { - "accountName": "r-database-account-6226", - "apiType": "Sql", - "creationTime": "2023-04-05T03:25:14Z", - "deletionTime": "2023-04-05T03:26:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cec4f1df-c8f5-4595-b7fe-aaa7faa6488a", - "creationTime": "2023-04-05T03:25:15Z", - "deletionTime": "2023-04-05T03:26:12Z" - } - ] - } - }, - { - "name": "748c14fc-9f50-4a4d-a5b8-939382d947c6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/748c14fc-9f50-4a4d-a5b8-939382d947c6", - "properties": { - "accountName": "r-database-account-4472", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T03:39:46Z", - "deletionTime": "2023-04-05T03:40:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0557552a-75c4-400d-b647-b1e470ae4fef", - "creationTime": "2023-04-05T03:39:47Z", - "deletionTime": "2023-04-05T03:40:55Z" - } - ] - } - }, - { - "name": "0302f893-d16e-4b55-a7d3-db433ea28d11", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0302f893-d16e-4b55-a7d3-db433ea28d11", - "properties": { - "accountName": "r-database-account-5112", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T03:56:41Z", - "deletionTime": "2023-04-05T03:57:47Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "eae442e0-2e15-43e6-9793-09365c66d8ef", - "creationTime": "2023-04-05T03:56:42Z", - "deletionTime": "2023-04-05T03:57:47Z" - } - ] - } - }, - { - "name": "637f06b6-bc45-4b57-af6f-335a1780aaa3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/637f06b6-bc45-4b57-af6f-335a1780aaa3", - "properties": { - "accountName": "r-database-account-8806", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:11:45Z", - "deletionTime": "2023-04-05T04:37:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06fb565e-1445-40f4-a03b-3b5874cea6ca", - "creationTime": "2023-04-05T04:11:47Z", - "deletionTime": "2023-04-05T04:37:16Z" - } - ] - } - }, - { - "name": "6265ec21-b0ec-4ecc-9c97-d880f1575345", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6265ec21-b0ec-4ecc-9c97-d880f1575345", - "properties": { - "accountName": "restoredaccount-6850", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e7a57a6a-2010-4a0d-a9ef-d9316dfdce59", - "creationTime": "2023-04-05T06:30:08Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "fcd234fa-a27c-4150-9595-d0db433584e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fcd234fa-a27c-4150-9595-d0db433584e6", - "properties": { - "accountName": "r-database-account-705", - "apiType": "Sql", - "creationTime": "2023-04-05T05:56:56Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ead1cacf-d355-49bd-baf6-cacdbe17cf0b", - "creationTime": "2023-04-05T05:56:57Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c80c6b-6f6e-4907-9ddd-adad9c1cabd6", - "properties": { - "accountName": "r-database-account-4894", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:13:31Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1274ca5b-8297-4c3e-8d9b-932cbe7ea469", - "creationTime": "2023-04-05T06:13:32Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "1c6b3cce-70ca-4957-a6ba-de85b07ded7c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c6b3cce-70ca-4957-a6ba-de85b07ded7c", - "properties": { - "accountName": "r-database-account-3212", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T06:08:08Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "cd90f1f4-1e94-43ea-b2e5-6f4bdd35a4c9", - "creationTime": "2023-04-05T06:08:09Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "be9bf3d6-ab4e-42ca-890b-81d460a80d1f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be9bf3d6-ab4e-42ca-890b-81d460a80d1f", - "properties": { - "accountName": "r-database-account-9540", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:53:04Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "36b177a0-c1f9-4a42-b459-1adf8216f6f9", - "creationTime": "2023-04-05T05:53:05Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "32c0b7ad-2746-4972-ac3c-ef14cd8f9764", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c0b7ad-2746-4972-ac3c-ef14cd8f9764", - "properties": { - "accountName": "r-database-account-4658", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:02:37Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8a90384b-ab6d-4312-8c76-d7688281cfe0", - "creationTime": "2023-04-05T06:02:38Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "5dc243a8-01a2-4ed4-9a1c-789f857931c0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dc243a8-01a2-4ed4-9a1c-789f857931c0", - "properties": { - "accountName": "r-database-account-3189", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:35:19Z", - "deletionTime": "2023-04-05T06:54:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1319642-7e74-496e-a63b-28e7e75e9c8a", - "creationTime": "2023-04-05T06:35:20Z", - "deletionTime": "2023-04-05T06:54:25Z" - } - ] - } - }, - { - "name": "1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e35f26d-79ad-40a5-8ea4-a4f4aca1d983", - "properties": { - "accountName": "restoredaccount-7747", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c1da8a70-9e23-4b1d-962a-9c963a2eaf82", - "creationTime": "2023-04-05T06:53:31Z", - "deletionTime": "2023-04-05T06:54:26Z" - } - ] - } - }, - { - "name": "adc4a343-1599-470d-abcc-d951fdd50f37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/adc4a343-1599-470d-abcc-d951fdd50f37", - "properties": { - "accountName": "r-database-account-3312", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T17:13:48Z", - "deletionTime": "2023-04-05T06:56:38Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ceac000-b431-478e-a99b-5332a9ddb734", - "creationTime": "2023-04-04T17:13:49Z", - "deletionTime": "2023-04-05T06:56:38Z" - } - ] - } - }, - { - "name": "0db7be06-69d3-488e-8c75-0eb6966b4016", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0db7be06-69d3-488e-8c75-0eb6966b4016", - "properties": { - "accountName": "r-database-account-5846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T21:44:23Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e9423376-5ea5-465a-9f5e-f45d663f3fcb", - "creationTime": "2023-04-04T21:44:25Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "98cd330d-ec50-4a3d-a196-e9537578fed8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98cd330d-ec50-4a3d-a196-e9537578fed8", - "properties": { - "accountName": "r-database-account-2760", - "apiType": "Sql", - "creationTime": "2023-04-04T21:33:57Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4cb74464-09ae-4a66-9d79-fd748a5abd68", - "creationTime": "2023-04-04T21:33:58Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "9ce35a43-8b24-4060-a058-191f976df7c1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9ce35a43-8b24-4060-a058-191f976df7c1", - "properties": { - "accountName": "restoredaccount-9271", - "apiType": "Sql", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f83885b3-cf91-4301-aaf3-512e97dbf5e5", - "creationTime": "2023-04-04T21:49:17Z", - "deletionTime": "2023-04-05T06:58:31Z" - } - ] - } - }, - { - "name": "0398e7f9-0a83-474e-b5ee-49acfd0de933", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0398e7f9-0a83-474e-b5ee-49acfd0de933", - "properties": { - "accountName": "r-database-account-9266", - "apiType": "Sql", - "creationTime": "2023-03-29T07:47:00Z", - "deletionTime": "2023-04-05T06:58:41Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d28cdfba-d0ac-478a-95f3-202701cec8e7", - "creationTime": "2023-03-29T07:47:01Z", - "deletionTime": "2023-04-05T06:58:41Z" - } - ] - } - }, - { - "name": "79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79a0f651-110b-4ac2-814a-7bb4fb4b8b0f", - "properties": { - "accountName": "r-database-account-641", - "apiType": "Sql", - "creationTime": "2023-03-29T04:26:01Z", - "deletionTime": "2023-04-05T06:59:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "edbcea9f-2aae-4dfc-887a-1285575e2913", - "creationTime": "2023-03-29T04:26:02Z", - "deletionTime": "2023-04-05T06:59:03Z" - } - ] - } - }, - { - "name": "edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edd899be-b719-4eaa-a0b7-4c4bbd0eb70f", - "properties": { - "accountName": "r-database-account-3287", - "apiType": "Sql", - "creationTime": "2023-03-29T07:55:06Z", - "deletionTime": "2023-04-05T07:00:47Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "40e83aae-9b0c-44cd-8239-adc17f3b9674", - "creationTime": "2023-03-29T07:55:07Z", - "deletionTime": "2023-04-05T07:00:47Z" - } - ] - } - }, - { - "name": "8dd16bf5-1157-4389-8b6c-f6e66c4631f6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8dd16bf5-1157-4389-8b6c-f6e66c4631f6", - "properties": { - "accountName": "r-database-account-3926", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T17:08:41Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "14aa781e-a57d-49f6-9104-d27d50651ebe", - "creationTime": "2023-03-29T17:08:42Z", - "deletionTime": "2023-04-05T07:01:53Z" - } - ] - } - }, - { - "name": "92ce3190-d16b-438f-9791-b2254a597435", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92ce3190-d16b-438f-9791-b2254a597435", - "properties": { - "accountName": "r-database-account-1530", - "apiType": "Table, Sql", - "creationTime": "2023-03-31T07:05:13Z", - "deletionTime": "2023-04-05T07:01:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29ab1c79-928b-413c-b7e2-2c0d8d3f9a5f", - "creationTime": "2023-03-31T07:05:14Z", - "deletionTime": "2023-04-05T07:01:53Z" - } - ] - } - }, - { - "name": "c5934152-2095-41b0-9962-72be301ec23c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c5934152-2095-41b0-9962-72be301ec23c", - "properties": { - "accountName": "r-database-account-1333", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T07:09:38Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4556e019-508e-4f17-b75f-f6acaa1aaa31", - "creationTime": "2023-03-30T07:09:40Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "b9949dcc-131d-498e-aa54-e6302ddac4aa", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9949dcc-131d-498e-aa54-e6302ddac4aa", - "properties": { - "accountName": "r-database-account-2197", - "apiType": "Sql", - "creationTime": "2023-03-29T04:24:10Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b66de773-f431-4887-b660-1372c9b07d6f", - "creationTime": "2023-03-29T04:24:11Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a774bd9-e1cb-4a49-a382-5a7a2ed87cac", - "properties": { - "accountName": "r-database-account-4608", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T00:10:43Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b4c0c8dd-f372-4eea-8a98-7fa1df712938", - "creationTime": "2023-03-30T00:10:44Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "35cfd4da-1076-4df7-942c-832ffe4bf2d5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35cfd4da-1076-4df7-942c-832ffe4bf2d5", - "properties": { - "accountName": "r-database-account-4659", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-04T18:19:29Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "66b7d504-028a-473e-bb2c-96dbf16c41a2", - "creationTime": "2023-04-04T18:19:30Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "1526c330-5a1e-4c64-a6f5-1c490d8a21af", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1526c330-5a1e-4c64-a6f5-1c490d8a21af", - "properties": { - "accountName": "r-database-account-5637", - "apiType": "Table, Sql", - "creationTime": "2023-03-30T16:25:03Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8bfd434c-945d-4c68-8a55-47a96e44c33b", - "creationTime": "2023-03-30T16:25:04Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/210069bb-cc9e-43f3-aa29-e2aa7f0bf46e", - "properties": { - "accountName": "r-database-account-5467", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T04:53:26Z", - "deletionTime": "2023-04-05T07:01:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "74ff901e-868c-4809-9fb0-86531bb8575c", - "creationTime": "2023-04-05T04:53:27Z", - "deletionTime": "2023-04-05T07:01:54Z" - } - ] - } - }, - { - "name": "401f849e-50e6-483b-813a-1a5f1059006c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/401f849e-50e6-483b-813a-1a5f1059006c", - "properties": { - "accountName": "r-database-account-5933", - "apiType": "Sql", - "creationTime": "2023-04-04T19:13:48Z", - "deletionTime": "2023-04-05T07:01:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8691ba2e-1975-4ae7-9f9c-51a2f4a4d644", - "creationTime": "2023-04-04T19:13:49Z", - "deletionTime": "2023-04-05T07:01:55Z" - } - ] - } - }, - { - "name": "28117ed9-2b34-4549-94eb-e33d2286c0d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28117ed9-2b34-4549-94eb-e33d2286c0d9", - "properties": { - "accountName": "r-database-account-1535", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-30T20:20:58Z", - "deletionTime": "2023-04-05T07:01:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "35e6bef6-d0cb-4489-9fb6-e15337f4aaef", - "creationTime": "2023-03-30T20:21:00Z", - "deletionTime": "2023-04-05T07:01:58Z" - } - ] - } - }, - { - "name": "18774956-31f4-46cf-8b69-fe7eb1bc9444", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18774956-31f4-46cf-8b69-fe7eb1bc9444", - "properties": { - "accountName": "r-database-account-5305", - "apiType": "Sql", - "creationTime": "2023-03-29T02:15:48Z", - "deletionTime": "2023-04-05T07:02:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9110136-aee1-41c5-8a08-fce59f08b6d7", - "creationTime": "2023-03-29T02:15:49Z", - "deletionTime": "2023-04-05T07:02:00Z" - } - ] - } - }, - { - "name": "2fd15e3e-3f86-42c8-8485-74004eb117cd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fd15e3e-3f86-42c8-8485-74004eb117cd", - "properties": { - "accountName": "restoredaccount-590", - "apiType": "Sql", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "476b0f93-73ff-4cfb-b809-b7f50631fcdc", - "creationTime": "2023-03-30T05:59:59Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "aad1cbdc-eeb7-48e3-b868-afd8a6c65334", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aad1cbdc-eeb7-48e3-b868-afd8a6c65334", - "properties": { - "accountName": "restoredaccount-3736", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8902971c-23ca-4ead-9f72-289e65cfaa50", - "creationTime": "2023-04-05T05:11:25Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "af699620-0019-4a6b-ad59-e7c6381814ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/af699620-0019-4a6b-ad59-e7c6381814ba", - "properties": { - "accountName": "restoredaccount-7822", - "apiType": "Sql", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b82b8a80-7fd4-4a2c-8d72-a02a07e939e2", - "creationTime": "2023-03-29T23:36:48Z", - "deletionTime": "2023-04-05T07:02:18Z" - } - ] - } - }, - { - "name": "88d7ae04-0284-474e-833c-c20a4ecc2d37", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88d7ae04-0284-474e-833c-c20a4ecc2d37", - "properties": { - "accountName": "restoredaccount-5262", - "apiType": "Gremlin, Sql", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a89fd442-836f-4ef0-b97b-0edf6288657c", - "creationTime": "2023-03-29T23:07:06Z", - "deletionTime": "2023-04-05T07:02:19Z" - } - ] - } - }, - { - "name": "05442da3-1214-4c48-9883-b06ab54491dd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05442da3-1214-4c48-9883-b06ab54491dd", - "properties": { - "accountName": "r-database-account-6510", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:12:03Z", - "deletionTime": "2023-04-05T16:13:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8b29b20d-de42-4010-82b8-e865e470b768", - "creationTime": "2023-04-05T16:12:04Z", - "deletionTime": "2023-04-05T16:13:54Z" - } - ] - } - }, - { - "name": "6694c494-2902-4055-a8f1-af1b95d7ad29", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6694c494-2902-4055-a8f1-af1b95d7ad29", - "properties": { - "accountName": "r-database-account-6751", - "apiType": "Sql", - "creationTime": "2023-04-05T16:17:14Z", - "deletionTime": "2023-04-05T16:17:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8fd003db-1fe3-4cde-8ea2-9949c0c44ad2", - "creationTime": "2023-04-05T16:17:16Z", - "deletionTime": "2023-04-05T16:17:54Z" - } - ] - } - }, - { - "name": "554b58bc-ad47-4031-9100-02ef15baa510", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/554b58bc-ad47-4031-9100-02ef15baa510", - "properties": { - "accountName": "r-database-account-3896", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:22:51Z", - "deletionTime": "2023-04-05T16:24:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0f0a5b4-2041-4477-86ed-0ca8634ccab2", - "creationTime": "2023-04-05T16:22:52Z", - "deletionTime": "2023-04-05T16:24:03Z" - } - ] - } - }, - { - "name": "d97105e7-6a53-435f-9219-21b7e6ace085", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d97105e7-6a53-435f-9219-21b7e6ace085", - "properties": { - "accountName": "r-database-account-8009", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T16:28:41Z", - "deletionTime": "2023-04-05T16:29:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bea75fa6-d49d-4881-9894-4936f5a128f7", - "creationTime": "2023-04-05T16:28:42Z", - "deletionTime": "2023-04-05T16:29:40Z" - } - ] - } - }, - { - "name": "051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/051a1261-ba73-4ef2-84f2-2a0cac5fc4e1", - "properties": { - "accountName": "r-database-account-5770", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:34:14Z", - "deletionTime": "2023-04-05T16:51:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8e14ade4-4581-46cf-8924-f8259e4ed9c3", - "creationTime": "2023-04-05T16:34:15Z", - "deletionTime": "2023-04-05T16:51:55Z" - } - ] - } - }, - { - "name": "98ff29ee-3eec-4fb0-8f2e-749be3274ac0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/98ff29ee-3eec-4fb0-8f2e-749be3274ac0", - "properties": { - "accountName": "restoredaccount-4079", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ef58abe5-ee3e-4c26-8d79-913a8fdb0e76", - "creationTime": "2023-04-05T16:51:31Z", - "deletionTime": "2023-04-05T16:51:58Z" - } - ] - } - }, - { - "name": "a181c3ee-171b-4481-b30c-623238c24d41", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a181c3ee-171b-4481-b30c-623238c24d41", - "properties": { - "accountName": "restoredaccount-5402", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f87690a1-5e7d-49a2-8b8d-8d4c2ea6dbc0", - "creationTime": "2023-04-05T17:14:52Z", - "deletionTime": "2023-04-05T17:15:48Z" - } - ] - } - }, - { - "name": "115d217b-1e58-4653-af7e-756be6313d6e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/115d217b-1e58-4653-af7e-756be6313d6e", - "properties": { - "accountName": "r-database-account-5935", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T16:56:31Z", - "deletionTime": "2023-04-05T17:15:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3cd2e9f2-69ab-48ed-85ad-ede49c420996", - "creationTime": "2023-04-05T16:56:32Z", - "deletionTime": "2023-04-05T17:15:52Z" - } - ] - } - }, - { - "name": "e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e5fd1d90-dba3-4c4d-9c4d-c757eff6b892", - "properties": { - "accountName": "r-database-account-339", - "apiType": "Sql", - "creationTime": "2023-04-05T17:17:47Z", - "deletionTime": "2023-04-05T17:34:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e1063ca-f83b-49e0-babe-589e627b0138", - "creationTime": "2023-04-05T17:17:48Z", - "deletionTime": "2023-04-05T17:34:52Z" - } - ] - } - }, - { - "name": "4350889f-8316-4611-8c7b-0de037f83cb3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4350889f-8316-4611-8c7b-0de037f83cb3", - "properties": { - "accountName": "restoredaccount-6292", - "apiType": "Sql", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fe9a9004-f9a2-4965-8369-799bbca10c62", - "creationTime": "2023-04-05T17:34:16Z", - "deletionTime": "2023-04-05T17:34:53Z" - } - ] - } - }, - { - "name": "e43a2d2f-d461-4797-99a0-69fe32f76e38", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e43a2d2f-d461-4797-99a0-69fe32f76e38", - "properties": { - "accountName": "r-database-account-8514", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:39:47Z", - "deletionTime": "2023-04-05T17:58:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5028c260-89b2-41fe-bfc9-1172ef9d0b84", - "creationTime": "2023-04-05T17:39:48Z", - "deletionTime": "2023-04-05T17:58:43Z" - } - ] - } - }, - { - "name": "e39d66a9-028e-499d-b488-fde2e53814c5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e39d66a9-028e-499d-b488-fde2e53814c5", - "properties": { - "accountName": "restoredaccount-9641", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7e50a023-f962-4abf-ae0a-6c8678233f59", - "creationTime": "2023-04-05T17:57:46Z", - "deletionTime": "2023-04-05T17:58:45Z" - } - ] - } - }, - { - "name": "6c608839-1f5a-4ec1-81af-d656251da7a8", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6c608839-1f5a-4ec1-81af-d656251da7a8", - "properties": { - "accountName": "restoredaccount-2652", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf73ff36-1193-49d2-994e-4321a7238079", - "creationTime": "2023-04-05T18:20:21Z", - "deletionTime": "2023-04-05T18:21:00Z" - } - ] - } - }, - { - "name": "1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1eab3514-7cb4-4994-b9bc-3ed7a6cd91ec", - "properties": { - "accountName": "r-database-account-20", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:03:36Z", - "deletionTime": "2023-04-05T18:21:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3257c94a-05d2-4d20-b66a-563772e54081", - "creationTime": "2023-04-05T18:03:37Z", - "deletionTime": "2023-04-05T18:21:00Z" - } - ] - } - }, - { - "name": "a2e44fb7-d335-4093-ba69-d021af9bfe00", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2e44fb7-d335-4093-ba69-d021af9bfe00", - "properties": { - "accountName": "r-database-account-727", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:25:45Z", - "deletionTime": "2023-04-05T18:27:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8721d93d-66bb-496a-bd43-476a709d58f3", - "creationTime": "2023-04-05T18:25:47Z", - "deletionTime": "2023-04-05T18:27:03Z" - } - ] - } - }, - { - "name": "cd34644b-6f5a-4f25-8f6b-9068790ccc32", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd34644b-6f5a-4f25-8f6b-9068790ccc32", - "properties": { - "accountName": "r-database-account-2209", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T18:38:04Z", - "deletionTime": "2023-04-05T18:40:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0849eeb6-425f-45b1-9295-375e1e77f8ec", - "creationTime": "2023-04-05T18:38:05Z", - "deletionTime": "2023-04-05T18:40:00Z" - } - ] - } - }, - { - "name": "e106c7e7-2828-4193-b125-0540ec42f85a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e106c7e7-2828-4193-b125-0540ec42f85a", - "properties": { - "accountName": "r-grem-db-account-3109", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:15:20Z", - "deletionTime": "2023-04-05T19:17:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "019c7d7f-deb6-468c-812c-e6070d4cd1d9", - "creationTime": "2023-04-05T19:15:21Z", - "deletionTime": "2023-04-05T19:17:06Z" - } - ] - } - }, - { - "name": "19b77f33-9070-4bea-89ec-83ad22c59136", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/19b77f33-9070-4bea-89ec-83ad22c59136", - "properties": { - "accountName": "r-grem-db-account-3153", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:32:53Z", - "deletionTime": "2023-04-05T19:33:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "433e314f-d95a-4afe-a6d1-d95956c82ea7", - "creationTime": "2023-04-05T19:32:54Z", - "deletionTime": "2023-04-05T19:33:59Z" - } - ] - } - }, - { - "name": "e21f4e92-7380-4c32-b600-1a389aa4c845", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e21f4e92-7380-4c32-b600-1a389aa4c845", - "properties": { - "accountName": "r-grem-db-account-6612", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T19:47:56Z", - "deletionTime": "2023-04-05T20:04:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "97e120cc-6a06-4839-96fc-ba399c9af520", - "creationTime": "2023-04-05T19:47:57Z", - "deletionTime": "2023-04-05T20:04:52Z" - } - ] - } - }, - { - "name": "a6848c66-b318-4cb7-8e70-7d0b0b9b1918", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6848c66-b318-4cb7-8e70-7d0b0b9b1918", - "properties": { - "accountName": "restoredaccount-5075", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "09098604-8221-4b72-b876-ff6b64f88ad7", - "creationTime": "2023-04-05T20:03:59Z", - "deletionTime": "2023-04-05T20:16:10Z" - } - ] - } - }, - { - "name": "57958516-07cd-498b-b42b-d8bbde38fc72", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57958516-07cd-498b-b42b-d8bbde38fc72", - "properties": { - "accountName": "r-grem-db-account-2460", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:32:03Z", - "deletionTime": "2023-04-05T20:52:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d6bdc5f9-fec9-474f-94d9-e2d2074e22bc", - "creationTime": "2023-04-05T20:32:04Z", - "deletionTime": "2023-04-05T20:52:58Z" - } - ] - } - }, - { - "name": "856cabec-4726-4cd9-86e8-2d87abcc4cb0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/856cabec-4726-4cd9-86e8-2d87abcc4cb0", - "properties": { - "accountName": "restoredaccount-9191", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5334a45b-22fa-48e5-a07f-7b36a4525225", - "creationTime": "2023-04-05T20:52:26Z", - "deletionTime": "2023-04-05T21:04:48Z" - } - ] - } - }, - { - "name": "9e5c63ce-faaf-4b9f-932b-a62b365ce687", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e5c63ce-faaf-4b9f-932b-a62b365ce687", - "properties": { - "accountName": "r-grem-db-account-917", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:20:40Z", - "deletionTime": "2023-04-05T21:22:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6bd058b3-ab90-4b89-9a0d-a2a024c48d5d", - "creationTime": "2023-04-05T21:20:41Z", - "deletionTime": "2023-04-05T21:22:32Z" - } - ] - } - }, - { - "name": "d8af4291-a857-435c-9e68-add9be61e3e3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8af4291-a857-435c-9e68-add9be61e3e3", - "properties": { - "accountName": "r-grem-db-account-4408", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:38:27Z", - "deletionTime": "2023-04-05T21:39:23Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5eadf9d6-e990-4b35-8f0a-9bf3556ce98a", - "creationTime": "2023-04-05T21:38:28Z", - "deletionTime": "2023-04-05T21:39:23Z" - } - ] - } - }, - { - "name": "2348e86d-d845-4023-a61c-52a7c4998681", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2348e86d-d845-4023-a61c-52a7c4998681", - "properties": { - "accountName": "r-grem-db-account-3493", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T21:53:12Z", - "deletionTime": "2023-04-05T22:10:15Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "32c7b179-d3cb-45c5-a257-6bac70b722b0", - "creationTime": "2023-04-05T21:53:13Z", - "deletionTime": "2023-04-05T22:10:15Z" - } - ] - } - }, - { - "name": "10d05397-ea2c-4d64-a325-da1097b67a30", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/10d05397-ea2c-4d64-a325-da1097b67a30", - "properties": { - "accountName": "restoredaccount-7617", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b57901f9-1b30-4f20-beed-4d165118acfe", - "creationTime": "2023-04-05T22:09:33Z", - "deletionTime": "2023-04-05T22:22:05Z" - } - ] - } - }, - { - "name": "2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e5ad60e-fc7f-4ca3-9197-f55f4946e2be", - "properties": { - "accountName": "r-grem-db-account-4657", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:37:57Z", - "deletionTime": "2023-04-05T22:57:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "00e2decc-8646-4c40-adea-52565df4b8af", - "creationTime": "2023-04-05T22:37:58Z", - "deletionTime": "2023-04-05T22:57:18Z" - } - ] - } - }, - { - "name": "b9c23cc0-13f3-4895-8534-809a00376677", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9c23cc0-13f3-4895-8534-809a00376677", - "properties": { - "accountName": "restoredaccount-1097", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "302263d7-5b4c-496f-a1c0-e6bc97c76cd7", - "creationTime": "2023-04-05T22:56:24Z", - "deletionTime": "2023-04-05T23:09:40Z" - } - ] - } - }, - { - "name": "08d694bf-a697-4caa-a1c1-0729e9352e79", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/08d694bf-a697-4caa-a1c1-0729e9352e79", - "properties": { - "accountName": "r-table-account-4377", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:25:55Z", - "deletionTime": "2023-04-05T23:27:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "29288209-1ae4-4bf4-a6bf-53f287019cc6", - "creationTime": "2023-04-05T23:25:56Z", - "deletionTime": "2023-04-05T23:27:10Z" - } - ] - } - }, - { - "name": "c6990784-cf53-4251-a3e2-40e4d90842ce", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6990784-cf53-4251-a3e2-40e4d90842ce", - "properties": { - "accountName": "r-table-account-1415", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:41:00Z", - "deletionTime": "2023-04-05T23:59:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e3b584bf-03d7-48e0-a74d-baa380b856a5", - "creationTime": "2023-04-05T23:41:01Z", - "deletionTime": "2023-04-05T23:59:07Z" - } - ] - } - }, - { - "name": "89fa4594-ed8f-48ba-a362-dabbada8a453", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89fa4594-ed8f-48ba-a362-dabbada8a453", - "properties": { - "accountName": "restoredaccount-5386", - "apiType": "Table, Sql", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dcbf7af3-3748-4a1c-b10c-5c8471df95e2", - "creationTime": "2023-04-05T23:58:12Z", - "deletionTime": "2023-04-06T00:10:28Z" - } - ] - } - }, - { - "name": "701f814c-13b7-4144-b75c-52946e6946cb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/701f814c-13b7-4144-b75c-52946e6946cb", - "properties": { - "accountName": "r-table-account-6354", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:26:22Z", - "deletionTime": "2023-04-06T00:43:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e230d958-d2de-4531-90a6-03385f86fa0b", - "creationTime": "2023-04-06T00:26:23Z", - "deletionTime": "2023-04-06T00:43:42Z" - } - ] - } - }, - { - "name": "a96f997d-2cbf-4a64-b917-c776e6908601", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a96f997d-2cbf-4a64-b917-c776e6908601", - "properties": { - "accountName": "restoredaccount-3726", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f14c26ef-9f7f-46dc-a7a2-3227738259ba", - "creationTime": "2023-04-06T00:42:49Z", - "deletionTime": "2023-04-06T00:54:59Z" - } - ] - } - }, - { - "name": "7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f8c1fb1-b8dd-4cc2-acf2-73ea133ddccc", - "properties": { - "accountName": "r-table-account-6883", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:10:50Z", - "deletionTime": "2023-04-06T01:12:24Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "72e01a71-84f9-4a1f-b25d-b2115e97ddfa", - "creationTime": "2023-04-06T01:10:51Z", - "deletionTime": "2023-04-06T01:12:24Z" - } - ] - } - }, - { - "name": "3bafeaa9-0bcc-495a-96ac-502cd527b02a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bafeaa9-0bcc-495a-96ac-502cd527b02a", - "properties": { - "accountName": "r-table-account-5301", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T01:30:03Z", - "deletionTime": "2023-04-06T01:31:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "bf2a8b08-7dee-4de8-a0c8-038e9465808b", - "creationTime": "2023-04-06T01:30:04Z", - "deletionTime": "2023-04-06T01:31:00Z" - } - ] - } - }, - { - "name": "999e9d75-47c8-4230-8a4e-677ee461269b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/999e9d75-47c8-4230-8a4e-677ee461269b", - "properties": { - "accountName": "r-database-account-3960", - "apiType": "Sql", - "creationTime": "2023-04-06T02:16:51Z", - "deletionTime": "2023-04-06T02:17:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "82564ae1-34a4-4c57-b6ee-62f4186d989a", - "creationTime": "2023-04-06T02:16:52Z", - "deletionTime": "2023-04-06T02:17:49Z" - } - ] - } - }, - { - "name": "9aa1ae50-d50f-463c-92c5-d12c04cd5aac", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9aa1ae50-d50f-463c-92c5-d12c04cd5aac", - "properties": { - "accountName": "r-database-account-6028", - "apiType": "Sql", - "creationTime": "2023-04-06T02:27:53Z", - "deletionTime": "2023-04-06T02:44:39Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c9da4825-c62f-4745-8261-0176b60f9828", - "creationTime": "2023-04-06T02:27:54Z", - "deletionTime": "2023-04-06T02:44:39Z" - } - ] - } - }, - { - "name": "3065e921-a49b-43d6-84aa-037f18987a23", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3065e921-a49b-43d6-84aa-037f18987a23", - "properties": { - "accountName": "restoredaccount-7075", - "apiType": "Sql", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a2ad9d1e-b964-4251-8251-8c99d475d0f8", - "creationTime": "2023-04-06T02:43:55Z", - "deletionTime": "2023-04-06T02:55:24Z" - } - ] - } - }, - { - "name": "1f7c4717-2d6d-4c70-b624-7543436ff664", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1f7c4717-2d6d-4c70-b624-7543436ff664", - "properties": { - "accountName": "r-database-account-5983", - "apiType": "Sql", - "creationTime": "2023-04-06T03:09:16Z", - "deletionTime": "2023-04-06T03:10:13Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "39af484d-28ad-4a87-8682-af4b2a171be3", - "creationTime": "2023-04-06T03:09:18Z", - "deletionTime": "2023-04-06T03:10:13Z" - } - ] - } - }, - { - "name": "cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cb29ac7c-0678-4d6c-a5ed-3e6e104e8472", - "properties": { - "accountName": "r-database-account-7214", - "apiType": "Sql", - "creationTime": "2023-04-06T03:20:49Z", - "deletionTime": "2023-04-06T03:37:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a600f656-1cf8-467e-8328-e415ec9fe42f", - "creationTime": "2023-04-06T03:20:50Z", - "deletionTime": "2023-04-06T03:37:02Z" - } - ] - } - }, - { - "name": "20aa0ade-2c7f-4574-9598-93ad9605470f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20aa0ade-2c7f-4574-9598-93ad9605470f", - "properties": { - "accountName": "restoredaccount-1487", - "apiType": "Sql", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8da38bb4-3208-4322-b7be-9b401e3a5864", - "creationTime": "2023-04-06T03:36:32Z", - "deletionTime": "2023-04-06T03:47:16Z" - } - ] - } - }, - { - "name": "3934b1bb-0c85-43f1-8a37-515983c75ab9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3934b1bb-0c85-43f1-8a37-515983c75ab9", - "properties": { - "accountName": "r-table-account-2891", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:02:47Z", - "deletionTime": "2023-04-06T04:03:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3555447c-6a35-4838-a9d8-4bac81a2b1e3", - "creationTime": "2023-04-06T04:02:48Z", - "deletionTime": "2023-04-06T04:03:49Z" - } - ] - } - }, - { - "name": "a938fa1c-ee43-4432-a618-cf48d6afc5d9", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a938fa1c-ee43-4432-a618-cf48d6afc5d9", - "properties": { - "accountName": "r-table-account-7603", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:18:01Z", - "deletionTime": "2023-04-06T04:36:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069bbc1f-b3dc-4c80-8b33-7e5cb04f6035", - "creationTime": "2023-04-06T04:18:02Z", - "deletionTime": "2023-04-06T04:36:17Z" - } - ] - } - }, - { - "name": "f1b173a2-5433-4ed2-b66a-ed6552372847", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f1b173a2-5433-4ed2-b66a-ed6552372847", - "properties": { - "accountName": "restoredaccount-1355", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ebe2914c-e705-4afc-929c-8e5024e6aa0b", - "creationTime": "2023-04-06T04:35:28Z", - "deletionTime": "2023-04-06T04:48:01Z" - } - ] - } - }, - { - "name": "013b0771-37a8-42bc-bec9-2d30900bfdd2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/013b0771-37a8-42bc-bec9-2d30900bfdd2", - "properties": { - "accountName": "r-table-account-6373", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:05:15Z", - "deletionTime": "2023-04-06T05:22:50Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3793c45e-a686-40a0-a34c-1cb6a5e1503e", - "creationTime": "2023-04-06T05:05:16Z", - "deletionTime": "2023-04-06T05:22:50Z" - } - ] - } - }, - { - "name": "154d7c33-5159-47d9-b93d-ff2f6ef44a74", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/154d7c33-5159-47d9-b93d-ff2f6ef44a74", - "properties": { - "accountName": "restoredaccount-665", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52dbc042-a207-462b-afeb-4656fa3214e1", - "creationTime": "2023-04-06T05:22:06Z", - "deletionTime": "2023-04-06T05:34:09Z" - } - ] - } - }, - { - "name": "a0a02061-a9e5-4b48-a332-cbd763f97a42", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a0a02061-a9e5-4b48-a332-cbd763f97a42", - "properties": { - "accountName": "r-table-account-1188", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T05:50:20Z", - "deletionTime": "2023-04-06T05:52:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "05a3ef7c-3a2d-4371-a24c-3b1e25782b7a", - "creationTime": "2023-04-06T05:50:21Z", - "deletionTime": "2023-04-06T05:52:03Z" - } - ] - } - }, - { - "name": "3fc70d5f-5413-4245-9d90-9215118f1a2d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fc70d5f-5413-4245-9d90-9215118f1a2d", - "properties": { - "accountName": "r-table-account-5261", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T06:08:10Z", - "deletionTime": "2023-04-06T06:09:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "90b9d96e-6cfc-4462-9d63-c55a659b3671", - "creationTime": "2023-04-06T06:08:11Z", - "deletionTime": "2023-04-06T06:09:02Z" - } - ] - } - }, - { - "name": "5ca263c0-b746-45c0-b816-c78a8b03766e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ca263c0-b746-45c0-b816-c78a8b03766e", - "properties": { - "accountName": "r-grem-db-account-723", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:39:44Z", - "deletionTime": "2023-04-06T06:41:33Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4f9bfb9d-ad9d-499a-873b-386ea3c20283", - "creationTime": "2023-04-06T06:39:45Z", - "deletionTime": "2023-04-06T06:41:33Z" - } - ] - } - }, - { - "name": "5c7be368-c6a5-4c1e-9b5e-074d27843143", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c7be368-c6a5-4c1e-9b5e-074d27843143", - "properties": { - "accountName": "r-grem-db-account-7969", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T06:58:36Z", - "deletionTime": "2023-04-06T06:59:36Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2b70d6a5-0d43-4b9f-9e71-8566659089c8", - "creationTime": "2023-04-06T06:58:37Z", - "deletionTime": "2023-04-06T06:59:36Z" - } - ] - } - }, - { - "name": "6b91daea-e80d-43ef-8335-4c1c3284af05", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b91daea-e80d-43ef-8335-4c1c3284af05", - "properties": { - "accountName": "r-grem-db-account-2577", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:15:43Z", - "deletionTime": "2023-04-06T07:33:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7d755b27-23c8-4a93-90ea-33cbc7e27c3d", - "creationTime": "2023-04-06T07:15:45Z", - "deletionTime": "2023-04-06T07:33:07Z" - } - ] - } - }, - { - "name": "0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0ed51ec3-52e1-4fa3-9928-bbb37cd32b39", - "properties": { - "accountName": "restoredaccount-693", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6ec961c1-3a3c-435d-b375-6a055399c74b", - "creationTime": "2023-04-06T07:32:21Z", - "deletionTime": "2023-04-06T07:44:25Z" - } - ] - } - }, - { - "name": "fa829b6c-e0d3-4641-955e-a902b35b9be7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa829b6c-e0d3-4641-955e-a902b35b9be7", - "properties": { - "accountName": "r-grem-db-account-4601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:00:25Z", - "deletionTime": "2023-04-06T08:20:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e41cd8d6-e6e9-4a35-a519-7519359d0199", - "creationTime": "2023-04-06T08:00:26Z", - "deletionTime": "2023-04-06T08:20:12Z" - } - ] - } - }, - { - "name": "94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94d3dbbb-e9df-42c6-bed5-7eab82f07d7b", - "properties": { - "accountName": "restoredaccount-1430", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d863d8d4-e6f1-4699-8f28-cda85581e84b", - "creationTime": "2023-04-06T08:18:51Z", - "deletionTime": "2023-04-06T08:31:30Z" - } - ] - } - }, - { - "name": "b3d1cf58-188f-4f52-b2a7-6325e18acd7a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3d1cf58-188f-4f52-b2a7-6325e18acd7a", - "properties": { - "accountName": "r-grem-db-account-7507", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T08:48:00Z", - "deletionTime": "2023-04-06T08:49:48Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "029a90cb-578c-4487-a6f7-2565d9f26aab", - "creationTime": "2023-04-06T08:48:01Z", - "deletionTime": "2023-04-06T08:49:48Z" - } - ] - } - }, - { - "name": "a8bfadea-a883-491c-8311-3202491cfe5d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8bfadea-a883-491c-8311-3202491cfe5d", - "properties": { - "accountName": "r-grem-db-account-2606", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:05:50Z", - "deletionTime": "2023-04-06T09:06:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ee8fa52d-7e81-44de-a116-4e4eea4ee15b", - "creationTime": "2023-04-06T09:05:51Z", - "deletionTime": "2023-04-06T09:06:43Z" - } - ] - } - }, - { - "name": "9dab6831-62bc-4e33-ba85-16dd1a6881c0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9dab6831-62bc-4e33-ba85-16dd1a6881c0", - "properties": { - "accountName": "r-grem-db-account-6681", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:21:06Z", - "deletionTime": "2023-04-06T09:38:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a0d5146f-b16c-4a89-9712-f93a235afc8a", - "creationTime": "2023-04-06T09:21:07Z", - "deletionTime": "2023-04-06T09:38:10Z" - } - ] - } - }, - { - "name": "18d2a6e1-8f1e-4d8f-90ec-1325628b831a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/18d2a6e1-8f1e-4d8f-90ec-1325628b831a", - "properties": { - "accountName": "restoredaccount-4215", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "52cc0410-f9ef-4e18-9db9-5dac3af75fef", - "creationTime": "2023-04-06T09:37:24Z", - "deletionTime": "2023-04-06T09:49:59Z" - } - ] - } - }, - { - "name": "32d6de04-b359-4dcf-a5ce-22cd72377a88", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32d6de04-b359-4dcf-a5ce-22cd72377a88", - "properties": { - "accountName": "r-grem-db-account-846", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:06:04Z", - "deletionTime": "2023-04-06T10:25:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1c298172-6d69-434d-ab1d-7bb7082679dd", - "creationTime": "2023-04-06T10:06:06Z", - "deletionTime": "2023-04-06T10:25:18Z" - } - ] - } - }, - { - "name": "d82aef04-9219-47af-8f91-f6ed9aaad8b2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d82aef04-9219-47af-8f91-f6ed9aaad8b2", - "properties": { - "accountName": "restoredaccount-5193", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ce9c5e7b-90bf-487b-b062-49581f105ee2", - "creationTime": "2023-04-06T10:24:32Z", - "deletionTime": "2023-04-06T10:36:34Z" - } - ] - } - }, - { - "name": "05d6080c-a80d-47c7-82e1-c9bb9edcc00e", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05d6080c-a80d-47c7-82e1-c9bb9edcc00e", - "properties": { - "accountName": "r-table-account-6567", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T10:53:20Z", - "deletionTime": "2023-04-06T10:54:04Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "926b8e66-8b04-42f0-9fee-410bb4769869", - "creationTime": "2023-04-06T10:53:21Z", - "deletionTime": "2023-04-06T10:54:04Z" - } - ] - } - }, - { - "name": "d7d9c20e-0c64-4632-a6b4-79e935e73b70", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7d9c20e-0c64-4632-a6b4-79e935e73b70", - "properties": { - "accountName": "r-table-account-6921", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:08:49Z", - "deletionTime": "2023-04-06T11:27:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a66739e-14f7-4228-a4f5-b71cf9802044", - "creationTime": "2023-04-06T11:08:51Z", - "deletionTime": "2023-04-06T11:27:03Z" - } - ] - } - }, - { - "name": "aec7bff9-72ab-431a-ba59-5adec30d7825", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aec7bff9-72ab-431a-ba59-5adec30d7825", - "properties": { - "accountName": "restoredaccount-7286", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8495c36d-7f6c-4e48-91ee-e7335f4c8b33", - "creationTime": "2023-04-06T11:26:24Z", - "deletionTime": "2023-04-06T11:38:07Z" - } - ] - } - }, - { - "name": "9776447c-67f4-44b4-bd6f-7e6159eb8cae", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9776447c-67f4-44b4-bd6f-7e6159eb8cae", - "properties": { - "accountName": "r-table-account-5254", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T11:54:50Z", - "deletionTime": "2023-04-06T12:11:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a349a8eb-7c6a-4f55-a015-dd3149f3a3b2", - "creationTime": "2023-04-06T11:54:51Z", - "deletionTime": "2023-04-06T12:11:56Z" - } - ] - } - }, - { - "name": "94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/94cbfbc2-ee0a-4f93-a435-b0dba2c0c00b", - "properties": { - "accountName": "restoredaccount-6482", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0d55d39d-32bb-48a8-8c84-33b7077c9bd7", - "creationTime": "2023-04-06T12:11:15Z", - "deletionTime": "2023-04-06T12:23:13Z" - } - ] - } - }, - { - "name": "0778b998-52a0-45ee-9594-8e1f44d6d8d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0778b998-52a0-45ee-9594-8e1f44d6d8d0", - "properties": { - "accountName": "r-table-account-7579", - "apiType": "Table, Sql", - "creationTime": "2023-04-06T12:39:46Z", - "deletionTime": "2023-04-06T12:41:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "18a02312-989c-43b7-ad75-9cbef48e780b", - "creationTime": "2023-04-06T12:39:48Z", - "deletionTime": "2023-04-06T12:41:09Z" - } - ] - } - }, - { - "name": "f8165adc-083d-4779-aa4a-6d93f543d93a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8165adc-083d-4779-aa4a-6d93f543d93a", - "properties": { - "accountName": "cliz2xezqib6sfs", - "apiType": "Sql", - "creationTime": "2023-04-06T17:48:58Z", - "deletionTime": "2023-04-06T17:51:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ce3767e-e335-42cd-a5e4-8bb5e6ea9301", - "creationTime": "2023-04-06T17:48:59Z", - "deletionTime": "2023-04-06T17:51:37Z" - } - ] - } - }, - { - "name": "d4eb1a5c-fa82-416b-8765-73105541441a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4eb1a5c-fa82-416b-8765-73105541441a", - "properties": { - "accountName": "climxyj6ppdtdi3", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:23Z", - "deletionTime": "2023-04-06T17:53:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c723892-7667-4eaa-8892-60626f181101", - "creationTime": "2023-04-06T17:50:24Z", - "deletionTime": "2023-04-06T17:53:09Z" - } - ] - } - }, - { - "name": "f213269b-8471-4a48-96b6-f9b83b8453d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f213269b-8471-4a48-96b6-f9b83b8453d0", - "properties": { - "accountName": "clinhlpp5ltdx45", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:16Z", - "deletionTime": "2023-04-06T17:53:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "771e4af6-c81a-4047-b5e0-2b0b816a6361", - "creationTime": "2023-04-06T17:50:17Z", - "deletionTime": "2023-04-06T17:53:35Z" - } - ] - } - }, - { - "name": "3fdca064-ebbf-495a-9e76-fffc4a75b5cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fdca064-ebbf-495a-9e76-fffc4a75b5cc", - "properties": { - "accountName": "clicvlfgrzahmvn", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:50:25Z", - "deletionTime": "2023-04-06T17:54:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ad64d51-dc4e-4eb5-b8d2-3a7dd0d5fb11", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T17:54:37Z" - } - ] - } - }, - { - "name": "146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/146c4910-c5e7-4ebb-a1e7-b9b5f8e4c229", - "properties": { - "accountName": "cli3hfttbxzir22", - "apiType": "Sql", - "creationTime": "2023-04-06T17:53:13Z", - "deletionTime": "2023-04-06T17:55:25Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "069e9551-8152-4b4d-976f-7eb63cf6026d", - "creationTime": "2023-04-06T17:53:14Z", - "deletionTime": "2023-04-06T17:55:25Z" - } - ] - } - }, - { - "name": "8b0b5998-77d4-4bba-baed-2c69e3c58487", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8b0b5998-77d4-4bba-baed-2c69e3c58487", - "properties": { - "accountName": "clioyp6agdkdrvk", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:56:23Z", - "deletionTime": "2023-04-06T17:58:30Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cd05e03-42a6-4d7c-a9cf-af2892ee655b", - "creationTime": "2023-04-06T17:56:24Z", - "deletionTime": "2023-04-06T17:58:30Z" - } - ] - } - }, - { - "name": "c4ce576d-4033-4b12-a450-daa13093cf34", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4ce576d-4033-4b12-a450-daa13093cf34", - "properties": { - "accountName": "clipniczjve2l4q", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:56:45Z", - "deletionTime": "2023-04-06T17:58:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2e549310-871a-4e6e-9aa2-c2fb9c4abf1a", - "creationTime": "2023-04-06T17:56:46Z", - "deletionTime": "2023-04-06T17:58:52Z" - } - ] - } - }, - { - "name": "617193b6-f5e7-4ed7-a186-74049a7f10fa", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/617193b6-f5e7-4ed7-a186-74049a7f10fa", - "properties": { - "accountName": "clitae37flgxvip", - "apiType": "Sql", - "creationTime": "2023-04-06T17:57:03Z", - "deletionTime": "2023-04-06T17:58:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9c27968-065b-4309-aefc-0dee104dddec", - "creationTime": "2023-04-06T17:57:04Z", - "deletionTime": "2023-04-06T17:58:56Z" - } - ] - } - }, - { - "name": "16cd72d1-8782-4faa-9e06-263055e4a852", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/16cd72d1-8782-4faa-9e06-263055e4a852", - "properties": { - "accountName": "cliqeiwdwhcytpv", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:06Z", - "deletionTime": "2023-04-06T18:02:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "300fab15-eb0f-422d-af8c-b80ae0e43866", - "creationTime": "2023-04-06T18:02:07Z", - "deletionTime": "2023-04-06T18:02:32Z" - } - ] - } - }, - { - "name": "a1434535-9c58-464e-ad47-a0ab1313c67c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1434535-9c58-464e-ad47-a0ab1313c67c", - "properties": { - "accountName": "cling2ssmapqjtb", - "apiType": "Sql", - "creationTime": "2023-04-06T18:02:20Z", - "deletionTime": "2023-04-06T18:03:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e0286ce6-b027-4be9-bb33-42b244fa796d", - "creationTime": "2023-04-06T18:02:21Z", - "deletionTime": "2023-04-06T18:03:00Z" - } - ] - } - }, - { - "name": "aabd4011-ec39-49e9-a5e1-184261fa244c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aabd4011-ec39-49e9-a5e1-184261fa244c", - "properties": { - "accountName": "clic7r4mbsoucoq", - "apiType": "MongoDB", - "creationTime": "2023-04-06T17:50:26Z", - "deletionTime": "2023-04-06T18:04:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01681cee-68fa-4be8-a9e8-d57e7991688e", - "creationTime": "2023-04-06T17:50:27Z", - "deletionTime": "2023-04-06T18:04:54Z" - } - ] - } - }, - { - "name": "b5ec6377-0284-4e67-ab64-638e1b61b151", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b5ec6377-0284-4e67-ab64-638e1b61b151", - "properties": { - "accountName": "cli6dll5uxhswmo", - "apiType": "Sql", - "creationTime": "2023-04-06T17:49:07Z", - "deletionTime": "2023-04-06T18:08:24Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "12705d4e-8d34-4225-915f-7a87fa1b740b", - "creationTime": "2023-04-06T17:49:08Z", - "deletionTime": "2023-04-06T18:08:24Z" - } - ] - } - }, - { - "name": "12fd85da-0738-45bc-a4ca-3576006082e6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12fd85da-0738-45bc-a4ca-3576006082e6", - "properties": { - "accountName": "restoredaccount-7559", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fdd80bf7-ddf4-4133-b333-e50c12f6e60a", - "creationTime": "2023-04-06T18:11:17Z", - "deletionTime": "2023-04-06T18:11:42Z" - } - ] - } - }, - { - "name": "730730ee-ee98-48bf-9c87-a38abac5781d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/730730ee-ee98-48bf-9c87-a38abac5781d", - "properties": { - "accountName": "r-grem-db-account-3799", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T17:54:33Z", - "deletionTime": "2023-04-06T18:11:45Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a16ab26d-43cb-4d1c-8edb-061378462300", - "creationTime": "2023-04-06T17:54:34Z", - "deletionTime": "2023-04-06T18:11:45Z" - } - ] - } - }, - { - "name": "a331a0ab-07a6-4831-827d-30e513076c75", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a331a0ab-07a6-4831-827d-30e513076c75", - "properties": { - "accountName": "r-grem-db-account-8345", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:35:39Z", - "deletionTime": "2023-04-06T18:52:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "2499270c-c191-4e67-8669-eac7ccbe593d", - "creationTime": "2023-04-06T18:35:40Z", - "deletionTime": "2023-04-06T18:52:37Z" - } - ] - } - }, - { - "name": "c20213cc-0b64-4141-abdc-45f028e756fd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c20213cc-0b64-4141-abdc-45f028e756fd", - "properties": { - "accountName": "restoredaccount-3447", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "398375e9-ff13-42e2-b2cc-b8c5b47d400b", - "creationTime": "2023-04-06T18:51:56Z", - "deletionTime": "2023-04-06T19:03:53Z" - } - ] - } - }, - { - "name": "1fdec220-1a64-4748-b5ef-1f4a1b3a174b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1fdec220-1a64-4748-b5ef-1f4a1b3a174b", - "properties": { - "accountName": "r-grem-db-account-6227", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:23:52Z", - "deletionTime": "2023-04-06T19:41:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3ebd02cd-e3dd-4ae1-885b-879a55ac930f", - "creationTime": "2023-04-06T19:23:53Z", - "deletionTime": "2023-04-06T19:41:19Z" - } - ] - } - }, - { - "name": "4228ce2e-f496-4131-a7b4-a093f4644646", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4228ce2e-f496-4131-a7b4-a093f4644646", - "properties": { - "accountName": "restoredaccount-601", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5c95c779-594d-4b7f-93b1-6a53f1daa895", - "creationTime": "2023-04-06T19:40:27Z", - "deletionTime": "2023-04-06T19:53:09Z" - } - ] - } - }, - { - "name": "d41b8e0a-cb4e-4686-b4bb-697c36638d7d", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d41b8e0a-cb4e-4686-b4bb-697c36638d7d", - "properties": { - "accountName": "r-database-account-3957", - "apiType": "Sql", - "creationTime": "2023-04-06T20:07:56Z", - "deletionTime": "2023-04-06T20:08:54Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "25b659d2-1eb0-4fc6-a236-307b1cfeb75c", - "creationTime": "2023-04-06T20:07:57Z", - "deletionTime": "2023-04-06T20:08:54Z" - } - ] - } - }, - { - "name": "53ad2502-1710-406d-84e3-296fce5bd44a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53ad2502-1710-406d-84e3-296fce5bd44a", - "properties": { - "accountName": "r-database-account-9163", - "apiType": "Sql", - "creationTime": "2023-04-06T20:19:51Z", - "deletionTime": "2023-04-06T20:36:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "fb9d18e2-5c12-45ea-9959-09fc18867aaa", - "creationTime": "2023-04-06T20:19:52Z", - "deletionTime": "2023-04-06T20:36:03Z" - } - ] - } - }, - { - "name": "70ea9f86-be31-455a-b5be-791409c2b437", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70ea9f86-be31-455a-b5be-791409c2b437", - "properties": { - "accountName": "restoredaccount-7173", - "apiType": "Sql", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e99476cb-0b47-4c9a-83fa-ddb60b786739", - "creationTime": "2023-04-06T20:35:29Z", - "deletionTime": "2023-04-06T20:46:16Z" - } - ] - } - }, - { - "name": "06ce030c-d7dd-4da2-90d4-45618c58299a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06ce030c-d7dd-4da2-90d4-45618c58299a", - "properties": { - "accountName": "r-database-account-3610", - "apiType": "Sql", - "creationTime": "2023-04-06T21:00:14Z", - "deletionTime": "2023-04-06T21:01:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5068b4ba-ba74-4fb1-a55e-fa242020f38a", - "creationTime": "2023-04-06T21:00:15Z", - "deletionTime": "2023-04-06T21:01:06Z" - } - ] - } - }, - { - "name": "f8857f4f-1622-472b-b4d3-b0fd57e92f26", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8857f4f-1622-472b-b4d3-b0fd57e92f26", - "properties": { - "accountName": "r-database-account-2590", - "apiType": "Sql", - "creationTime": "2023-04-06T21:11:43Z", - "deletionTime": "2023-04-06T21:29:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "4e3092df-239d-47a3-b3c1-378b3aa588f5", - "creationTime": "2023-04-06T21:11:44Z", - "deletionTime": "2023-04-06T21:29:03Z" - } - ] - } - }, - { - "name": "d0588986-0fb6-47e4-a6e8-d19b5ed3a134", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d0588986-0fb6-47e4-a6e8-d19b5ed3a134", - "properties": { - "accountName": "restoredaccount-5783", - "apiType": "Sql", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "65eacecb-4de8-43f0-8d73-d7393ccf5b60", - "creationTime": "2023-04-06T21:28:23Z", - "deletionTime": "2023-04-06T21:39:17Z" - } - ] - } - }, - { - "name": "7284acea-88d2-4dd9-b88c-82cc228f0684", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7284acea-88d2-4dd9-b88c-82cc228f0684", - "properties": { - "accountName": "r-grem-db-account-360", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T21:54:18Z", - "deletionTime": "2023-04-06T21:55:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a94ea322-9e09-4d5c-8146-726d74226755", - "creationTime": "2023-04-06T21:54:19Z", - "deletionTime": "2023-04-06T21:55:57Z" - } - ] - } - }, - { - "name": "0cafdead-0d47-44de-a6b0-62bb7df30072", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cafdead-0d47-44de-a6b0-62bb7df30072", - "properties": { - "accountName": "r-grem-db-account-5702", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:13:06Z", - "deletionTime": "2023-04-06T22:13:57Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "27c2286d-4a6d-445b-b8dd-650f6ce280ed", - "creationTime": "2023-04-06T22:13:07Z", - "deletionTime": "2023-04-06T22:13:57Z" - } - ] - } - }, - { - "name": "48330586-f65a-4e4b-8dd6-9b0fdef0d974", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48330586-f65a-4e4b-8dd6-9b0fdef0d974", - "properties": { - "accountName": "r-grem-db-account-7080", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:28:25Z", - "deletionTime": "2023-04-06T22:45:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ee093a2-1860-4895-a965-c2e73436f69a", - "creationTime": "2023-04-06T22:28:26Z", - "deletionTime": "2023-04-06T22:45:55Z" - } - ] - } - }, - { - "name": "0045cc2f-f262-44f7-94be-a8a81258114b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0045cc2f-f262-44f7-94be-a8a81258114b", - "properties": { - "accountName": "restoredaccount-3266", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8991732b-bc55-4c14-bd22-03fc726678b6", - "creationTime": "2023-04-06T22:45:26Z", - "deletionTime": "2023-04-06T22:57:12Z" - } - ] - } - }, - { - "name": "40c98d05-e646-4328-87bc-f74bde1e94e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40c98d05-e646-4328-87bc-f74bde1e94e0", - "properties": { - "accountName": "r-grem-db-account-8379", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:13:12Z", - "deletionTime": "2023-04-06T23:33:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8cc2b7a5-daa3-4c59-93ac-95b5079f6b2e", - "creationTime": "2023-04-06T23:13:14Z", - "deletionTime": "2023-04-06T23:33:31Z" - } - ] - } - }, - { - "name": "9eb34e9c-83c8-4c27-ae1c-511402e67ee4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9eb34e9c-83c8-4c27-ae1c-511402e67ee4", - "properties": { - "accountName": "restoredaccount-4898", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e2d404be-05c8-47a4-80ed-56691c52c81c", - "creationTime": "2023-04-06T23:32:37Z", - "deletionTime": "2023-04-06T23:45:21Z" - } - ] - } - }, - { - "name": "bc431afc-49f0-47eb-9feb-7e7d91dd89fc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc431afc-49f0-47eb-9feb-7e7d91dd89fc", - "properties": { - "accountName": "r-grem-db-account-97", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:01:21Z", - "deletionTime": "2023-04-07T00:03:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "49a5e48f-7659-4c67-93e2-d7e6a26f8f87", - "creationTime": "2023-04-07T00:01:22Z", - "deletionTime": "2023-04-07T00:03:03Z" - } - ] - } - }, - { - "name": "bea1c920-8bb4-437a-8901-56570b9f10f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1c920-8bb4-437a-8901-56570b9f10f3", - "properties": { - "accountName": "r-grem-db-account-359", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:19:33Z", - "deletionTime": "2023-04-07T00:20:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "04224485-cc35-447b-b86a-aa72968f2792", - "creationTime": "2023-04-07T00:19:34Z", - "deletionTime": "2023-04-07T00:20:32Z" - } - ] - } - }, - { - "name": "9daa9025-f52d-48da-bc4d-8ba3738eefc5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9daa9025-f52d-48da-bc4d-8ba3738eefc5", - "properties": { - "accountName": "r-grem-db-account-6322", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:35:00Z", - "deletionTime": "2023-04-07T00:51:27Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e80ba32d-825f-406a-9085-5716fde5c5a8", - "creationTime": "2023-04-07T00:35:01Z", - "deletionTime": "2023-04-07T00:51:27Z" - } - ] - } - }, - { - "name": "89acddd1-7338-4be9-b3f3-a7c060975428", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89acddd1-7338-4be9-b3f3-a7c060975428", - "properties": { - "accountName": "restoredaccount-3920", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7496c5be-42cc-43f1-9271-aa32889856f4", - "creationTime": "2023-04-07T00:51:03Z", - "deletionTime": "2023-04-07T01:03:16Z" - } - ] - } - }, - { - "name": "f46c94fe-8290-40f4-bdb7-1d5b0f304385", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f46c94fe-8290-40f4-bdb7-1d5b0f304385", - "properties": { - "accountName": "r-grem-db-account-1985", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:20:59Z", - "deletionTime": "2023-04-07T01:39:59Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5e654ae6-06a8-446b-8e47-11d9539baac8", - "creationTime": "2023-04-07T01:21:01Z", - "deletionTime": "2023-04-07T01:39:59Z" - } - ] - } - }, - { - "name": "b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b9f7b03d-6bbf-40b3-8ce3-f861fecc45e0", - "properties": { - "accountName": "restoredaccount-2245", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3e2072a4-e07f-4c81-b814-616932c76c16", - "creationTime": "2023-04-07T01:39:12Z", - "deletionTime": "2023-04-07T01:51:17Z" - } - ] - } - }, - { - "name": "c2e9844e-44f0-4aec-87aa-32d14674a8eb", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2e9844e-44f0-4aec-87aa-32d14674a8eb", - "properties": { - "accountName": "r-table-account-6589", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:08:08Z", - "deletionTime": "2023-04-07T02:09:18Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b3d9c3d9-5b5e-4aa0-8d60-02895a0388a5", - "creationTime": "2023-04-07T02:08:09Z", - "deletionTime": "2023-04-07T02:09:18Z" - } - ] - } - }, - { - "name": "51b58ebb-9f55-48f3-9b4f-de45d623d676", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51b58ebb-9f55-48f3-9b4f-de45d623d676", - "properties": { - "accountName": "r-table-account-455", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:23:44Z", - "deletionTime": "2023-04-07T02:42:21Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac613a24-648b-4609-b82c-a9632311e85d", - "creationTime": "2023-04-07T02:23:45Z", - "deletionTime": "2023-04-07T02:42:21Z" - } - ] - } - }, - { - "name": "d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d2892f41-0bff-42e8-ae8b-9c4bd5bf33e2", - "properties": { - "accountName": "restoredaccount-27", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1dc3ad3-666e-442f-8a26-ad88a3dcb72a", - "creationTime": "2023-04-07T02:41:51Z", - "deletionTime": "2023-04-07T02:53:44Z" - } - ] - } - }, - { - "name": "3ee27ec7-cbad-4c1f-a929-86a236f984cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ee27ec7-cbad-4c1f-a929-86a236f984cc", - "properties": { - "accountName": "r-table-account-4096", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:09:53Z", - "deletionTime": "2023-04-07T03:26:55Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "601edbf9-120f-49bd-aca9-a6707e6951d3", - "creationTime": "2023-04-07T03:09:54Z", - "deletionTime": "2023-04-07T03:26:55Z" - } - ] - } - }, - { - "name": "85fafbad-f025-4d6b-890f-e6790ec396d0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/85fafbad-f025-4d6b-890f-e6790ec396d0", - "properties": { - "accountName": "restoredaccount-1168", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "54c086c3-22fb-454f-ab31-cc4ad38e1a63", - "creationTime": "2023-04-07T03:26:04Z", - "deletionTime": "2023-04-07T03:38:12Z" - } - ] - } - }, - { - "name": "e4768da8-54fb-4a13-89ea-1c124e0cacce", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e4768da8-54fb-4a13-89ea-1c124e0cacce", - "properties": { - "accountName": "r-table-account-6117", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T03:54:19Z", - "deletionTime": "2023-04-07T03:55:39Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83412f07-5a90-4a99-a95e-0ce3ce49202c", - "creationTime": "2023-04-07T03:54:20Z", - "deletionTime": "2023-04-07T03:55:39Z" - } - ] - } - }, - { - "name": "0554d9f5-654a-4d8b-b684-27f659539579", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0554d9f5-654a-4d8b-b684-27f659539579", - "properties": { - "accountName": "r-table-account-5255", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:11:45Z", - "deletionTime": "2023-04-07T04:12:39Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a81ad57a-7a08-407f-8d47-9051a7a7cf53", - "creationTime": "2023-04-07T04:11:47Z", - "deletionTime": "2023-04-07T04:12:39Z" - } - ] - } - }, - { - "name": "fece0537-1813-4eca-ba83-43a475cc913c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fece0537-1813-4eca-ba83-43a475cc913c", - "properties": { - "accountName": "r-table-account-555", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:26:38Z", - "deletionTime": "2023-04-07T04:45:11Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "73f7fa43-8a4b-4c14-8fd6-824b742ffeeb", - "creationTime": "2023-04-07T04:26:39Z", - "deletionTime": "2023-04-07T04:45:11Z" - } - ] - } - }, - { - "name": "d65c08ed-b89f-40c4-9bfe-f6f2787e5522", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d65c08ed-b89f-40c4-9bfe-f6f2787e5522", - "properties": { - "accountName": "restoredaccount-3867", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "5ce98550-c2f5-4855-ac0f-2be8ecc7ccfb", - "creationTime": "2023-04-07T04:44:29Z", - "deletionTime": "2023-04-07T04:57:02Z" - } - ] - } - }, - { - "name": "a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a8acec7a-29f2-4e4e-8d27-c1f9ade16ec0", - "properties": { - "accountName": "r-table-account-4311", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:13:59Z", - "deletionTime": "2023-04-07T05:30:58Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86db3325-2e13-4a46-899b-c5d48b1f8e2c", - "creationTime": "2023-04-07T05:14:00Z", - "deletionTime": "2023-04-07T05:30:58Z" - } - ] - } - }, - { - "name": "ed1d1013-55c9-4de9-9d6b-6ff93791406a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed1d1013-55c9-4de9-9d6b-6ff93791406a", - "properties": { - "accountName": "restoredaccount-7020", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d893b1da-2154-4451-9ad5-4a2b2459eba3", - "creationTime": "2023-04-07T05:30:07Z", - "deletionTime": "2023-04-07T05:42:16Z" - } - ] - } - }, - { - "name": "c31eff9d-58ac-4a90-92b5-6d2283481f8f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c31eff9d-58ac-4a90-92b5-6d2283481f8f", - "properties": { - "accountName": "r-table-account-6934", - "apiType": "Table, Sql", - "creationTime": "2023-04-07T05:58:40Z", - "deletionTime": "2023-04-07T06:00:10Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "df8cf731-82bd-4c5f-b909-d5071f6049b7", - "creationTime": "2023-04-07T05:58:41Z", - "deletionTime": "2023-04-07T06:00:10Z" - } - ] - } - }, - { - "name": "6d446c65-d616-4aa3-8138-ed609a031011", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d446c65-d616-4aa3-8138-ed609a031011", - "properties": { - "accountName": "cliz4gfhacxt3ra", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:02:28Z", - "deletionTime": "2023-04-07T18:06:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48c16686-5001-4e5c-bca8-7363229fc5eb", - "creationTime": "2023-04-07T18:02:29Z", - "deletionTime": "2023-04-07T18:06:12Z" - } - ] - } - }, - { - "name": "ea24d98b-eccc-42f4-9bfe-e01303a6ea84", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea24d98b-eccc-42f4-9bfe-e01303a6ea84", - "properties": { - "accountName": "clizzr52zwge4ps", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:16:23Z", - "deletionTime": "2023-04-07T18:19:37Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "01c2b7b9-033e-4a16-942f-d73db17153ed", - "creationTime": "2023-04-07T18:16:24Z", - "deletionTime": "2023-04-07T18:19:37Z" - } - ] - } - }, - { - "name": "ab946470-3753-427d-a821-ec8a57709a65", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab946470-3753-427d-a821-ec8a57709a65", - "properties": { - "accountName": "cliyfwfppqkfatd", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:23:09Z", - "deletionTime": "2023-04-07T18:49:00Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8f11c6ea-5cd4-4dc8-89c4-898f66e77db2", - "creationTime": "2023-04-07T18:23:10Z", - "deletionTime": "2023-04-07T18:49:00Z" - } - ] - } - }, - { - "name": "d4aca5d7-a8e8-400b-a85d-465058cfcf3a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4aca5d7-a8e8-400b-a85d-465058cfcf3a", - "properties": { - "accountName": "clinxdvetbmpu2e", - "apiType": "MongoDB", - "creationTime": "2023-04-07T18:54:49Z", - "deletionTime": "2023-04-07T19:21:12Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a9096c53-e756-4d23-bc12-8ee3a750c916", - "creationTime": "2023-04-07T18:54:50Z", - "deletionTime": "2023-04-07T19:21:12Z" - } - ] - } - }, - { - "name": "2ab5aa6e-54de-4b62-806a-2079dd57937f", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ab5aa6e-54de-4b62-806a-2079dd57937f", - "properties": { - "accountName": "clilwpd6a2jivng", - "apiType": "Sql", - "creationTime": "2023-04-07T22:22:56Z", - "deletionTime": "2023-04-07T22:49:32Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "453dccfd-36e4-4b4f-bda1-495025e3f85f", - "creationTime": "2023-04-07T22:22:57Z", - "deletionTime": "2023-04-07T22:49:32Z" - } - ] - } - }, - { - "name": "abc1c758-0698-43c0-957b-8c5f8884d3ad", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/abc1c758-0698-43c0-957b-8c5f8884d3ad", - "properties": { - "accountName": "cli5ohlmiu76mcl", - "apiType": "Sql", - "creationTime": "2023-04-08T14:54:41Z", - "deletionTime": "2023-04-08T15:00:16Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "7bf526bc-41f1-44d7-82c3-54341690ed48", - "creationTime": "2023-04-08T14:54:42Z", - "deletionTime": "2023-04-08T15:00:16Z" - } - ] - } - }, - { - "name": "20547469-51f9-4bd8-af49-537306f0b327", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20547469-51f9-4bd8-af49-537306f0b327", - "properties": { - "accountName": "clifmmb7dwsbns2", - "apiType": "Sql", - "creationTime": "2023-04-08T15:18:01Z", - "deletionTime": "2023-04-08T15:49:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f2bc30cd-cafe-4df2-a869-75e653c8c5b1", - "creationTime": "2023-04-08T15:18:02Z", - "deletionTime": "2023-04-08T15:49:43Z" - } - ] - } - }, - { - "name": "7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c350cb8-d6c0-4a1c-96ca-af40fbf02e28", - "properties": { - "accountName": "cliv5od2aotadzs", - "apiType": "Sql", - "creationTime": "2023-04-08T15:52:34Z", - "deletionTime": "2023-04-08T16:18:52Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "dafe1c7b-4c77-4f3d-bc06-fce05ebec8fc", - "creationTime": "2023-04-08T15:52:35Z", - "deletionTime": "2023-04-08T16:18:52Z" - } - ] - } - }, - { - "name": "62bf06d8-9e56-4434-9078-423179904be7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62bf06d8-9e56-4434-9078-423179904be7", - "properties": { - "accountName": "clijr7md3oh7aue", - "apiType": "Sql", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "48e83e05-f2c6-4409-9d3a-d25f796ab11c", - "creationTime": "2023-04-08T16:23:16Z", - "deletionTime": "2023-04-08T16:25:31Z" - } - ] - } - }, - { - "name": "9fc126e1-0f3e-44ce-9de7-df5b2394406c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fc126e1-0f3e-44ce-9de7-df5b2394406c", - "properties": { - "accountName": "clidkdojm4zyywo", - "apiType": "Sql", - "creationTime": "2023-04-08T17:18:16Z", - "deletionTime": "2023-04-08T17:22:23Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "6dbcfd4a-2445-40f3-9d77-bc1efff0225a", - "creationTime": "2023-04-08T17:18:17Z", - "deletionTime": "2023-04-08T17:22:23Z" - } - ] - } - }, - { - "name": "0cf8aa17-69c4-415c-acf1-4aadc07b9f48", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cf8aa17-69c4-415c-acf1-4aadc07b9f48", - "properties": { - "accountName": "clidhqrfu4m2zyv", - "apiType": "Sql", - "creationTime": "2023-04-10T17:53:22Z", - "deletionTime": "2023-04-10T17:56:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d24d4f0-f84a-4f0c-b8f7-dcb3ae92e05e", - "creationTime": "2023-04-10T17:53:23Z", - "deletionTime": "2023-04-10T17:56:06Z" - } - ] - } - }, - { - "name": "594b162d-12b0-4d00-99e1-5f1bd0fc98f6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/594b162d-12b0-4d00-99e1-5f1bd0fc98f6", - "properties": { - "accountName": "mk-ps-pna-enabled", - "apiType": "Sql", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e2d8c9-7470-46bd-81d0-188c32126636", - "creationTime": "2023-04-12T21:10:14Z", - "deletionTime": "2023-04-12T23:25:35Z" - } - ] - } - }, - { - "name": "7a42dd65-3745-4663-80b6-3c8fe0f245cc", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a42dd65-3745-4663-80b6-3c8fe0f245cc", - "properties": { - "accountName": "mk-test-ps-pna-disabled", - "apiType": "Sql", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c2644ce6-f568-4fab-a776-a1e258c0ad92", - "creationTime": "2023-04-12T20:25:24Z", - "deletionTime": "2023-04-12T23:25:49Z" - } - ] - } - }, - { - "name": "f5b6fc49-033e-4ab6-b2aa-e653d07a956c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f5b6fc49-033e-4ab6-b2aa-e653d07a956c", - "properties": { - "accountName": "mayank-test-src", - "apiType": "Sql", - "creationTime": "2023-04-12T19:51:34Z", - "deletionTime": "2023-04-12T23:26:03Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ac775e8d-9066-4b61-8bd2-c6b0789e2f35", - "creationTime": "2023-04-12T19:51:35Z", - "deletionTime": "2023-04-12T23:26:03Z" - } - ] - } - }, - { - "name": "5c576bdd-527d-4863-b2e1-c95cfaacf8d6", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5c576bdd-527d-4863-b2e1-c95cfaacf8d6", - "properties": { - "accountName": "climpgqg4rhbujz", - "apiType": "Sql", - "creationTime": "2023-04-13T13:44:29Z", - "deletionTime": "2023-04-13T13:48:14Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3a4a54ef-c6c5-42e8-a3be-86bed31006b5", - "creationTime": "2023-04-13T13:44:30Z", - "deletionTime": "2023-04-13T13:48:14Z" - } - ] - } - }, - { - "name": "6d55af6c-8889-4938-ba25-28afb7858035", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6d55af6c-8889-4938-ba25-28afb7858035", - "properties": { - "accountName": "mayank-src", - "apiType": "Sql", - "creationTime": "2023-04-13T17:30:02Z", - "deletionTime": "2023-04-13T18:35:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ab6ec5ce-939d-4636-b97e-acea80f410b7", - "creationTime": "2023-04-13T17:30:03Z", - "deletionTime": "2023-04-13T18:35:56Z" - } - ] - } - }, - { - "name": "886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/886fbcc3-5e32-4341-b89c-ea4d4f6abcdf", - "properties": { - "accountName": "mayank-pspreview-test", - "apiType": "Sql", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c3b9b467-daf1-493a-956e-c00ce2338ab7", - "creationTime": "2023-04-13T18:12:05Z", - "deletionTime": "2023-04-13T18:36:07Z" - } - ] - } - }, - { - "name": "126138ad-5c0b-4d39-933c-6fe2a85b0b21", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/126138ad-5c0b-4d39-933c-6fe2a85b0b21", - "properties": { - "accountName": "r-database-account-3188", - "apiType": "Sql", - "creationTime": "2023-04-18T13:44:01Z", - "deletionTime": "2023-04-18T14:06:35Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f34b7870-ff6d-4b57-bf61-6e59e4279cee", - "creationTime": "2023-04-18T13:44:02Z", - "deletionTime": "2023-04-18T14:06:35Z" - } - ] - } - }, - { - "name": "7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a596fc6-ebf0-4585-ba40-cb90b6fcc73b", - "properties": { - "accountName": "restoredaccount-5903", - "apiType": "Sql", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "c053e223-441d-42b8-907f-f9404e374894", - "creationTime": "2023-04-18T14:06:05Z", - "deletionTime": "2023-04-18T14:17:19Z" - } - ] - } - }, - { - "name": "e0693616-b7b1-49d5-8e78-5c92a9d999ba", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0693616-b7b1-49d5-8e78-5c92a9d999ba", - "properties": { - "accountName": "r-database-account-8442", - "apiType": "Sql", - "creationTime": "2023-04-18T18:21:09Z", - "deletionTime": "2023-04-18T18:43:26Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "86b3580d-9a0d-4b1e-a8cc-c9b52b3cfcac", - "creationTime": "2023-04-18T18:21:10Z", - "deletionTime": "2023-04-18T18:43:26Z" - } - ] - } - }, - { - "name": "d9583616-9c4d-406a-a90a-ae7a76b2b825", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9583616-9c4d-406a-a90a-ae7a76b2b825", - "properties": { - "accountName": "restoredaccount-5883", - "apiType": "Sql", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e829547d-694e-4996-be9f-cc84a8deebdc", - "creationTime": "2023-04-18T18:42:47Z", - "deletionTime": "2023-04-18T18:53:38Z" - } - ] - } - }, - { - "name": "9865f466-2f8a-477b-b880-1e399ca84e0c", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9865f466-2f8a-477b-b880-1e399ca84e0c", - "properties": { - "accountName": "r-database-account-8968", - "apiType": "Sql", - "creationTime": "2023-04-18T20:58:17Z", - "deletionTime": "2023-04-18T21:21:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "06e57ecb-f2cc-4480-9c46-a80f4d4bb765", - "creationTime": "2023-04-18T20:58:18Z", - "deletionTime": "2023-04-18T21:21:06Z" - } - ] - } - }, - { - "name": "47138b91-9a4d-4954-9ffa-d81f688fd316", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47138b91-9a4d-4954-9ffa-d81f688fd316", - "properties": { - "accountName": "restoredaccount-8805", - "apiType": "Sql", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "d9139c35-14a5-408f-b10e-e8f83117fdb5", - "creationTime": "2023-04-18T21:20:39Z", - "deletionTime": "2023-04-18T21:31:49Z" - } - ] - } - }, - { - "name": "b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52c7dc6-bb91-4224-bc08-77ccaccc0a1a", - "properties": { - "accountName": "r-database-account-7565", - "apiType": "Sql", - "creationTime": "2023-04-19T04:54:02Z", - "deletionTime": "2023-04-19T05:17:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e32db9e6-b23b-45f5-bd4e-beeb5d5cfcfd", - "creationTime": "2023-04-19T04:54:03Z", - "deletionTime": "2023-04-19T05:17:07Z" - } - ] - } - }, - { - "name": "a440fc94-a486-473c-bdeb-b62363814132", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a440fc94-a486-473c-bdeb-b62363814132", - "properties": { - "accountName": "restoredaccount-8250", - "apiType": "Sql", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9ec5ba28-2882-4e91-9893-86ea897dbc5e", - "creationTime": "2023-04-19T05:16:14Z", - "deletionTime": "2023-04-19T05:27:21Z" - } - ] - } - }, - { - "name": "69212ac3-2a6b-4c48-b2dc-a30c59e18c38", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/69212ac3-2a6b-4c48-b2dc-a30c59e18c38", - "properties": { - "accountName": "r-database-account-3177", - "apiType": "Sql", - "creationTime": "2023-04-19T07:32:19Z", - "deletionTime": "2023-04-19T07:54:43Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "210dee70-f60f-47b7-8889-5f67d71947e6", - "creationTime": "2023-04-19T07:32:20Z", - "deletionTime": "2023-04-19T07:54:43Z" - } - ] - } - }, - { - "name": "7d1ac6f0-07a6-4f52-b61b-800680b8b766", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d1ac6f0-07a6-4f52-b61b-800680b8b766", - "properties": { - "accountName": "restoredaccount-9058", - "apiType": "Sql", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a1bf9469-0ff7-4c2e-972e-c3d4ef68b403", - "creationTime": "2023-04-19T07:54:08Z", - "deletionTime": "2023-04-19T08:05:30Z" - } - ] - } - }, - { - "name": "8bdf0944-e8fe-4925-928d-5a0b65faedf7", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bdf0944-e8fe-4925-928d-5a0b65faedf7", - "properties": { - "accountName": "r-database-account-9523", - "apiType": "Sql", - "creationTime": "2023-04-19T19:31:56Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "e5f0e9e2-a635-44b1-a893-a62c09abdca5", - "creationTime": "2023-04-19T19:31:57Z", - "deletionTime": "2023-04-19T23:47:56Z" - } - ] - } - }, - { - "name": "34a42388-aa1f-4250-84fe-060ea0dcb913", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34a42388-aa1f-4250-84fe-060ea0dcb913", - "properties": { - "accountName": "restoredaccount-4287", - "apiType": "Sql", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "77025bb1-914c-491d-a1a5-e947b2d43090", - "creationTime": "2023-04-19T19:54:04Z", - "deletionTime": "2023-04-19T23:47:56Z" - } - ] - } - }, - { - "name": "c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bd982b-4f94-4cd8-a1a8-29fd69b852c4", - "properties": { - "accountName": "r-database-account-8435", - "apiType": "Sql", - "creationTime": "2023-04-06T02:11:39Z", - "deletionTime": "2023-04-19T23:49:01Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "51e1f983-abc6-472f-a043-4e8a78c6aa38", - "creationTime": "2023-04-06T02:11:40Z", - "deletionTime": "2023-04-19T23:49:01Z" - } - ] - } - }, - { - "name": "c899e41f-beaf-4f8a-bd06-52e568ca22d5", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c899e41f-beaf-4f8a-bd06-52e568ca22d5", - "properties": { - "accountName": "r-database-account-5580", - "apiType": "Gremlin, Sql", - "creationTime": "2023-04-05T18:31:49Z", - "deletionTime": "2023-04-19T23:53:21Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "8ed91992-da6d-46eb-9223-3fa221bec0a3", - "creationTime": "2023-04-05T18:31:50Z", - "deletionTime": "2023-04-19T23:53:21Z" - } - ] - } - }, - { - "name": "a2d13b42-726d-4f8a-93d5-6b5bdbb69530", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a2d13b42-726d-4f8a-93d5-6b5bdbb69530", - "properties": { - "accountName": "r-database-account-163", - "apiType": "Sql", - "creationTime": "2023-04-18T16:23:17Z", - "deletionTime": "2023-04-19T23:54:07Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a318e11f-1dfa-4fde-9140-a510666f0464", - "creationTime": "2023-04-18T16:23:18Z", - "deletionTime": "2023-04-19T23:54:07Z" - } - ] - } - }, - { - "name": "81f2b1c8-3a73-490d-bb09-b8c6432b26f3", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81f2b1c8-3a73-490d-bb09-b8c6432b26f3", - "properties": { - "accountName": "r-database-account-8550", - "apiType": "Sql", - "creationTime": "2023-04-06T02:07:24Z", - "deletionTime": "2023-04-19T23:57:08Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "aff38990-7b66-463e-8ed1-1d334fc07c6e", - "creationTime": "2023-04-06T02:07:26Z", - "deletionTime": "2023-04-19T23:57:08Z" - } - ] - } - }, - { - "name": "f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f98ef6c1-5f48-44c9-95a6-1748ea6c4c79", - "properties": { - "accountName": "r-database-account-605", - "apiType": "Sql", - "creationTime": "2023-04-20T00:04:33Z", - "deletionTime": "2023-04-20T00:05:28Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "3bbeadd9-2120-4868-927d-fdb826669592", - "creationTime": "2023-04-20T00:04:34Z", - "deletionTime": "2023-04-20T00:05:28Z" - } - ] - } - }, - { - "name": "d9cae7df-4c3b-49fc-b990-f985ae379afd", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9cae7df-4c3b-49fc-b990-f985ae379afd", - "properties": { - "accountName": "r-database-account-1077", - "apiType": "Sql", - "creationTime": "2023-04-20T00:07:31Z", - "deletionTime": "2023-04-20T00:30:02Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "1d30f287-e5b6-4beb-9df3-fd50793febc3", - "creationTime": "2023-04-20T00:07:32Z", - "deletionTime": "2023-04-20T00:30:02Z" - } - ] - } - }, - { - "name": "f3db04bc-7552-4f70-af65-a7be0274a695", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f3db04bc-7552-4f70-af65-a7be0274a695", - "properties": { - "accountName": "restoredaccount-5322", - "apiType": "Sql", - "creationTime": "2023-04-20T00:29:33Z", - "deletionTime": "2023-04-20T00:30:06Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "24100c57-8ae3-4560-a502-2c2c8e6e296b", - "creationTime": "2023-04-20T00:29:33Z", - "deletionTime": "2023-04-20T00:30:06Z" - } - ] - } - }, - { - "name": "aeb8c455-4d77-45bd-a193-a84dded67185", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/aeb8c455-4d77-45bd-a193-a84dded67185", - "properties": { - "accountName": "r-database-account-5132", - "apiType": "Sql", - "creationTime": "2023-04-20T02:59:33Z", - "deletionTime": "2023-04-20T03:00:22Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "b1f8b2c0-29dc-475b-ba54-334912cef7d5", - "creationTime": "2023-04-20T02:59:34Z", - "deletionTime": "2023-04-20T03:00:22Z" - } - ] - } - }, - { - "name": "b56820c9-0aa2-45a7-8e37-35ab0d86d215", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b56820c9-0aa2-45a7-8e37-35ab0d86d215", - "properties": { - "accountName": "r-database-account-3663", - "apiType": "Sql", - "creationTime": "2023-04-20T03:02:48Z", - "deletionTime": "2023-04-20T03:25:34Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [] - } - }, - { - "name": "934fa420-f11f-4b42-83e3-1856e5d57188", - "location": "West US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/934fa420-f11f-4b42-83e3-1856e5d57188", - "properties": { - "accountName": "restoredaccount-1053", - "apiType": "Sql", - "creationTime": "2023-04-20T03:24:53Z", - "deletionTime": "2023-04-20T03:25:36Z", - "oldestRestorableTime": "2023-03-21T03:28:13Z", - "restorableLocations": [] - } - }, - { - "name": "83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3", - "properties": { - "accountName": "drop-continuous7", - "apiType": "Sql", - "creationTime": "2022-05-26T18:49:51Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "a7725382-1f4c-426c-b51b-72acad407539", - "creationTime": "2022-05-26T18:49:52Z" - } - ] - } - }, - { - "name": "8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3", - "properties": { - "accountName": "periodicacctdrop", - "apiType": "Sql", - "creationTime": "2022-08-24T22:57:51Z", - "oldestRestorableTime": "2023-04-13T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "653cea6a-f643-47cf-a6ef-65704fa35acd", - "creationTime": "2022-08-24T22:57:51Z" - } - ] - } - }, - { - "name": "ee16f791-77f8-40d4-89ad-91495b853ac0", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0", - "properties": { - "accountName": "periodicacctdrop2", - "apiType": "Sql", - "creationTime": "2022-05-26T20:16:50Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "e8fe590a-1d27-407d-9e1f-28787d021b84", - "creationTime": "2022-05-26T20:16:50Z" - } - ] - } - }, - { - "name": "b169ba58-4696-4196-99a4-51995d99f004", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004", - "properties": { - "accountName": "readregionrestore-1", - "apiType": "Sql", - "creationTime": "2023-03-02T00:15:37Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "Southeast Asia", - "regionalDatabaseAccountInstanceId": "3a65f53c-d0fb-4f7c-8843-1b821d758908", - "creationTime": "2023-03-02T00:15:37Z" - }, - { - "locationName": "Central India", - "regionalDatabaseAccountInstanceId": "8944d987-4866-438e-9d22-12214cb2d6e8", - "creationTime": "2023-03-02T00:38:10Z" - } - ] - } - }, - { - "name": "83301fff-71b5-4cb0-a399-3c6331b78411", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83301fff-71b5-4cb0-a399-3c6331b78411", - "properties": { - "accountName": "portal-mongo-test", - "apiType": "MongoDB", - "creationTime": "2023-03-27T17:28:08Z", - "deletionTime": "2023-03-27T17:30:49Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "f00e975d-f590-468a-8a08-59330a2c301f", - "creationTime": "2023-03-27T17:28:09Z", - "deletionTime": "2023-03-27T17:30:49Z" - } - ] - } - }, - { - "name": "027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/027e402c-24e0-45c8-86c1-0a0f5bb72cf8", - "properties": { - "accountName": "amisi-8bd4a726", - "apiType": "Sql", - "creationTime": "2023-03-29T07:24:07Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "eea28eb5-7b39-4c54-870c-fa1ba4c3e629", - "creationTime": "2023-03-29T07:26:03Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "62d906e3-e9a5-4f9f-96d0-6a12c4e0f055", - "creationTime": "2023-03-29T07:24:08Z", - "deletionTime": "2023-03-29T07:44:16Z" - } - ] - } - }, - { - "name": "5ab554ca-5167-471d-8ffd-42b428d7d948", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5ab554ca-5167-471d-8ffd-42b428d7d948", - "properties": { - "accountName": "amisi-da11000f", - "apiType": "Sql", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "3f0627d1-2e48-4a57-93b3-ccb4a442f892", - "creationTime": "2023-03-29T07:09:11Z", - "deletionTime": "2023-03-29T07:44:16Z" - }, - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "81a91ee2-f77f-44c3-9b81-fed80fb6c4d7", - "creationTime": "2023-03-29T07:06:45Z", - "deletionTime": "2023-03-29T07:44:16Z" - } - ] - } - }, - { - "name": "e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/e4d5e8f7-e2a2-4cb4-8f7a-c1238729054d", - "properties": { - "accountName": "dsapaliga-restore-test2", - "apiType": "Sql", - "creationTime": "2023-03-29T19:36:21Z", - "deletionTime": "2023-03-29T22:55:47Z", - "oldestRestorableTime": "2023-03-22T22:55:47Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "57a8727e-5478-4f7e-a871-fee2aff9f841", - "creationTime": "2023-03-29T19:36:22Z", - "deletionTime": "2023-03-29T22:55:47Z" - } - ] - } - }, - { - "name": "66326971-fd72-4b66-9495-da9f95f0e86a", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/66326971-fd72-4b66-9495-da9f95f0e86a", - "properties": { - "accountName": "dsapaliga-restore-test3", - "apiType": "Sql", - "creationTime": "2023-03-29T21:45:59Z", - "deletionTime": "2023-03-29T22:55:54Z", - "oldestRestorableTime": "2023-03-22T22:55:54Z", - "restorableLocations": [ - { - "locationName": "East US 2", - "regionalDatabaseAccountInstanceId": "f41761ad-40b9-4f91-b064-fb23b8278b34", - "creationTime": "2023-03-29T21:48:10Z", - "deletionTime": "2023-03-29T21:57:56Z" - }, - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "92409c46-7459-4678-8542-16703f89ecc0", - "creationTime": "2023-03-29T21:46:00Z", - "deletionTime": "2023-03-29T22:55:54Z" - } - ] - } - }, - { - "name": "2aad5107-73b1-4b58-b5af-5b141fb44b04", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/2aad5107-73b1-4b58-b5af-5b141fb44b04", - "properties": { - "accountName": "dsapaliga-restore-test4", - "apiType": "Sql", - "creationTime": "2023-03-29T22:08:33Z", - "deletionTime": "2023-03-29T22:56:00Z", - "oldestRestorableTime": "2023-03-22T22:56:00Z", - "restorableLocations": [ - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "ecc7c6a6-6fea-44b9-979a-942095e5ddb1", - "creationTime": "2023-03-29T22:08:34Z", - "deletionTime": "2023-03-29T22:56:00Z" - } - ] - } - }, - { - "name": "84a35eb5-784c-4923-a52f-60bd04765953", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/84a35eb5-784c-4923-a52f-60bd04765953", - "properties": { - "accountName": "dsapaliga-restore-test6", - "apiType": "Sql", - "creationTime": "2023-03-29T22:24:23Z", - "deletionTime": "2023-03-29T22:56:18Z", - "oldestRestorableTime": "2023-03-22T22:56:18Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "80e6976a-7ce8-4bd4-aea7-70102909817e", - "creationTime": "2023-03-29T22:26:42Z", - "deletionTime": "2023-03-29T22:56:18Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1c94c82a-d707-4ce6-92ec-1966331560c2", - "creationTime": "2023-03-29T22:24:24Z", - "deletionTime": "2023-03-29T22:56:18Z" - } - ] - } - }, - { - "name": "4c4f2888-fbdd-48d7-af60-2562e60c6579", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/4c4f2888-fbdd-48d7-af60-2562e60c6579", - "properties": { - "accountName": "dsapaliga-restored-westus-m", - "apiType": "Sql", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z", - "oldestRestorableTime": "2023-03-22T22:56:46Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "76356a61-c7f2-4319-80ad-6a803a7b4894", - "creationTime": "2023-03-29T22:45:51Z", - "deletionTime": "2023-03-29T22:56:46Z" - } - ] - } - }, - { - "name": "c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c096978c-dd1f-4711-b4e8-df3e0567cfdd", - "properties": { - "accountName": "cli-continuous30-sopplsfv", - "apiType": "Sql", - "creationTime": "2023-03-29T23:59:38Z", - "deletionTime": "2023-03-30T00:12:32Z", - "oldestRestorableTime": "2023-03-23T00:12:32Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f15f2a83-4ec0-41ec-a599-b8c83e954efb", - "creationTime": "2023-03-30T00:02:04Z", - "deletionTime": "2023-03-30T00:12:32Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "8b46a5b3-1451-461d-8252-60a5347de560", - "creationTime": "2023-03-29T23:59:39Z", - "deletionTime": "2023-03-30T00:12:32Z" - } - ] - } - }, - { - "name": "dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/dc4c493f-8028-407b-a4ec-d1a3135b13e1", - "properties": { - "accountName": "cli-continuous30-l5utea24-restored", - "apiType": "Sql", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "f8ad78a6-24dd-4ab1-a614-b6025936e3ba", - "creationTime": "2023-03-30T01:00:58Z", - "deletionTime": "2023-03-30T01:02:30Z" - } - ] - } - }, - { - "name": "8ffca893-61fb-4c56-a036-6ec65da09e96", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8ffca893-61fb-4c56-a036-6ec65da09e96", - "properties": { - "accountName": "cli-continuous30-l5utea24", - "apiType": "Sql", - "creationTime": "2023-03-30T00:33:44Z", - "deletionTime": "2023-03-30T01:02:30Z", - "oldestRestorableTime": "2023-03-23T01:02:30Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "9dd17742-4a4f-4e09-9de1-922d104c320c", - "creationTime": "2023-03-30T00:36:04Z", - "deletionTime": "2023-03-30T01:02:30Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7a0ba497-72a5-47e0-8801-aee7cb7e0e7d", - "creationTime": "2023-03-30T00:33:45Z", - "deletionTime": "2023-03-30T01:02:30Z" - } - ] - } - }, - { - "name": "ca3c5893-46d7-48cc-8cdb-fff509652a14", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ca3c5893-46d7-48cc-8cdb-fff509652a14", - "properties": { - "accountName": "cli-continuous30-3eb7aosu", - "apiType": "Sql", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z", - "oldestRestorableTime": "2023-03-23T03:46:34Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "ba81192a-04b8-474f-8f08-e0f8bca847c4", - "creationTime": "2023-03-30T03:35:19Z", - "deletionTime": "2023-03-30T03:46:34Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "aa7b3f1a-2aee-4b09-89a7-69b6def6184d", - "creationTime": "2023-03-30T03:33:05Z", - "deletionTime": "2023-03-30T03:46:34Z" - } - ] - } - }, - { - "name": "856077e3-8335-4b95-9577-2ebf016ee892", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/856077e3-8335-4b95-9577-2ebf016ee892", - "properties": { - "accountName": "cli-continuous30-tqwxb6nj", - "apiType": "Sql", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z", - "oldestRestorableTime": "2023-03-23T04:05:05Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "0c759c5d-da3e-44c3-ab34-91ba8583fcfc", - "creationTime": "2023-03-30T03:53:50Z", - "deletionTime": "2023-03-30T04:05:05Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "1d68c86b-1ebc-45ad-9cd5-73445600295f", - "creationTime": "2023-03-30T03:51:31Z", - "deletionTime": "2023-03-30T04:05:05Z" - } - ] - } - }, - { - "name": "9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/9bf9e875-fc38-4c4c-90b0-3e15286da6b8", - "properties": { - "accountName": "cli-continuous30-cmjnvki7", - "apiType": "Sql", - "creationTime": "2023-03-30T04:58:52Z", - "deletionTime": "2023-03-30T05:12:19Z", - "oldestRestorableTime": "2023-03-23T05:12:19Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "411d6238-634e-4807-b3d2-27aefdb8b2d1", - "creationTime": "2023-03-30T05:01:09Z", - "deletionTime": "2023-03-30T05:12:19Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "7bff6196-bbc4-4eb9-b95f-e0d91433e3ad", - "creationTime": "2023-03-30T04:58:53Z", - "deletionTime": "2023-03-30T05:12:19Z" - } - ] - } - }, - { - "name": "cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cc5aece9-b1db-4b13-8e17-a72b74ef36e9", - "properties": { - "accountName": "cli-continuous30-pmjqwgr5-restored", - "apiType": "Sql", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "a7205fff-6258-4621-8eb4-c49defd48144", - "creationTime": "2023-03-30T14:37:17Z", - "deletionTime": "2023-03-30T14:38:59Z" - } - ] - } - }, - { - "name": "aee98c45-b031-4de4-8922-c6fcee681fc0", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/aee98c45-b031-4de4-8922-c6fcee681fc0", - "properties": { - "accountName": "cli-continuous30-pmjqwgr5", - "apiType": "Sql", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z", - "oldestRestorableTime": "2023-03-23T14:38:59Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "83221913-9765-482a-a05d-8fdbda766da4", - "creationTime": "2023-03-30T14:12:07Z", - "deletionTime": "2023-03-30T14:38:59Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "233ab6ba-46e0-4a8d-9bf2-16d702bf158c", - "creationTime": "2023-03-30T14:09:44Z", - "deletionTime": "2023-03-30T14:38:59Z" - } - ] - } - }, - { - "name": "f68b64bb-38f3-429b-be8f-81e44763929d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f68b64bb-38f3-429b-be8f-81e44763929d", - "properties": { - "accountName": "cli-continuous30-ta4jrave", - "apiType": "Sql", - "creationTime": "2023-03-30T14:48:08Z", - "deletionTime": "2023-03-30T15:16:54Z", - "oldestRestorableTime": "2023-03-23T15:16:54Z", - "restorableLocations": [ - { - "locationName": "West US", - "regionalDatabaseAccountInstanceId": "103f5b9a-8f54-4242-9ad0-9b572f1c5ba5", - "creationTime": "2023-03-30T14:50:33Z", - "deletionTime": "2023-03-30T15:16:54Z" - }, - { - "locationName": "East US", - "regionalDatabaseAccountInstanceId": "b4639300-da29-41ad-ab8a-7dc13419fee6", - "creationTime": "2023-03-30T14:48:09Z", - "deletionTime": "2023-03-30T15:16:54Z" - } - ] - } - }, - { - "name": "1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1bda800b-e6a5-47c6-a3ea-3b58701f7742", - "properties": { - "accountName": "amisi-8bd4a726-restored", - "apiType": "Sql", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "North Central US", - "regionalDatabaseAccountInstanceId": "59e40496-40d3-4f19-9a2c-2dffc786849b", - "creationTime": "2023-03-29T07:45:59Z", - "deletionTime": "2023-03-30T20:22:20Z" - } - ] - } - }, - { - "name": "fb90cbd9-957d-4169-80eb-d052db9d613d", - "location": "East US", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fb90cbd9-957d-4169-80eb-d052db9d613d", - "properties": { - "accountName": "amisi-765b8849", - "apiType": "Sql", - "creationTime": "2023-03-30T20:15:03Z", - "deletionTime": "2023-03-31T06:20:15Z", - "oldestRestorableTime": "2023-03-21T03:28:10Z", - "restorableLocations": [ - { - "locationName": "West Central US", - "regionalDatabaseAccountInstanceId": "32b3343e-7df0-4f7e-9867-865c3c9a328a", - "creationTime": "2023-03-30T20:15:04Z", - "deletionTime": "2023-03-31T06:20:15Z" - } - ] - } - }, - { - "name": "23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "location": "Qatar Central", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/23ff311a-2493-4bd7-b1c9-ac4549ae4567", - "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res2", - "apiType": "Sql", - "creationTime": "2022-09-29T05:44:13Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "3bf0dcac-7a5a-4602-bdf4-3edcbcbbcb5b", - "creationTime": "2022-09-29T05:44:13Z" - } - ] - } - }, - { - "name": "a672303a-644d-4996-9d49-b3d2eddea72d", - "location": "Qatar Central", - "type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts", - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/qatarcentral/restorableDatabaseAccounts/a672303a-644d-4996-9d49-b3d2eddea72d", - "properties": { - "accountName": "vinh-cmk-qatar-actual-res-live-sysid-res3", - "apiType": "Sql", - "creationTime": "2023-03-10T00:42:29Z", - "oldestRestorableTime": "2023-03-21T03:28:11Z", - "restorableLocations": [ - { - "locationName": "Qatar Central", - "regionalDatabaseAccountInstanceId": "0d60dece-f697-4a05-995c-36c2fcaee312", - "creationTime": "2023-03-10T00:42:29Z" - } - ] - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "120", - "Content-Type": "application/json", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-e0977698182c7cd0-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0e3de0d69d91d02ebbb611ba24b9764b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-database-1569" - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:15 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569/operationResults/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b9109ed-08d7-4701-adb6-74599886c0fd", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "2f8cb9e4-933f-4550-9f80-5212b304e4d4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032815Z:8b9109ed-08d7-4701-adb6-74599886c0fd" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-c02b42558f8189c4-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "77d8e3f30fe0305a5fff0ebe7e021ec8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:15 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81d4f642-0d0d-49c5-9fa8-3120c94fdc1c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "81d4f642-0d0d-49c5-9fa8-3120c94fdc1c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032815Z:81d4f642-0d0d-49c5-9fa8-3120c94fdc1c" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-0c64ae7e135bf193-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a1ebc7db075c35856aa9bfa801dfa015", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:16 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19975b8b-3c4d-44a1-a964-f26d62c98b95", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "19975b8b-3c4d-44a1-a964-f26d62c98b95", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032816Z:19975b8b-3c4d-44a1-a964-f26d62c98b95" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-6ae1bfcafef6003d-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "41c7e92effe0af6a7431600a92b8154b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:17 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d63951f-ee94-4e2d-9889-588567d79c70", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "8d63951f-ee94-4e2d-9889-588567d79c70", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032818Z:8d63951f-ee94-4e2d-9889-588567d79c70" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-89895b1f947f11aa-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6873d4cbe6baeccc5da20d374fb22e80", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:18 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af8a145e-418a-4c12-86e0-c4a58ea27344", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "af8a145e-418a-4c12-86e0-c4a58ea27344", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032819Z:af8a145e-418a-4c12-86e0-c4a58ea27344" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-3c4f93eba782ab68-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "948ff85fdc3bdce75c3b2c2aa77ba3b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:20 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb795d94-b08e-40c4-8c2b-4a4752ca5575", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "fb795d94-b08e-40c4-8c2b-4a4752ca5575", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032821Z:fb795d94-b08e-40c4-8c2b-4a4752ca5575" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-abfeb0c18a0ba63b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2cdc7393376c485b1ddbe43df13360c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:24 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09f32c60-3f0b-4b48-930b-fffe15f1337d", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "09f32c60-3f0b-4b48-930b-fffe15f1337d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032825Z:09f32c60-3f0b-4b48-930b-fffe15f1337d" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2f8cb9e4-933f-4550-9f80-5212b304e4d4?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-5c311aca062dc5bb-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "99abdf028028ef10ec960c7eb9a145e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:32 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "278ee924-587f-418a-865c-7a93d0e4e8b6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "278ee924-587f-418a-865c-7a93d0e4e8b6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032833Z:278ee924-587f-418a-865c-7a93d0e4e8b6" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f25c8893f74829f13fb7694f8a1a8d08-3f0ec0949cb4ab95-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "dba35bfe02d527139c46775ff8a9eb29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "479", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:33 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "747be64d-c2b4-4de2-a860-27f23336af00", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "747be64d-c2b4-4de2-a860-27f23336af00", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032833Z:747be64d-c2b4-4de2-a860-27f23336af00" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases", - "name": "sql-database-1569", - "properties": { - "resource": { - "id": "sql-database-1569", - "_rid": "2rgsAA==", - "_self": "dbs/2rgsAA==/", - "_etag": "\u00220000ea07-0000-0600-0000-6440b1560000\u0022", - "_colls": "colls/", - "_users": "users/", - "_ts": 1681961302 - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569/containers/sql-container-2867?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "489", - "Content-Type": "application/json", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-fbd2cbc3e2080665-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cfc7276a89096312ed40d52bdd8e7b96", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "tags": {}, - "location": "westcentralus", - "properties": { - "resource": { - "id": "sql-container-2867", - "indexingPolicy": { - "automatic": true, - "indexingMode": "consistent", - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point" - ] - } - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - } - }, - "options": { - "throughput": 700 - } - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:33 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569/containers/sql-container-2867/operationResults/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8612417-1bd7-48f0-9530-be8c80b254d1", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "f7bfc608-5b41-4870-b7d1-9fd9c529cc84", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032834Z:b8612417-1bd7-48f0-9530-be8c80b254d1" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-a9a0228508f06074-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7a4fa2e2137dd1f59178e8c13dfcbeb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:33 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "800ac1c8-1c22-41ea-88b2-b848dac9b3a2", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "800ac1c8-1c22-41ea-88b2-b848dac9b3a2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032834Z:800ac1c8-1c22-41ea-88b2-b848dac9b3a2" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-1b97543cadfeb3c0-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6af6c8fb9a547d5626fb4b0ca708b1f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:34 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b57bc5e3-de0a-41c5-8438-9fc48e9e11b0", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "b57bc5e3-de0a-41c5-8438-9fc48e9e11b0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032835Z:b57bc5e3-de0a-41c5-8438-9fc48e9e11b0" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-88b08785611c9d1e-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3a482afd013fee1849c4fd0d043e8e87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:36 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8b8c8d4-b9e8-4122-85fa-ca8a96876842", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "d8b8c8d4-b9e8-4122-85fa-ca8a96876842", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032836Z:d8b8c8d4-b9e8-4122-85fa-ca8a96876842" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-4b8de0d59e5ec92b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e80e2a3ed70048574cd15382c7e82a88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:37 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "571a21c6-6e4e-4916-898e-4f58ef45d339", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "571a21c6-6e4e-4916-898e-4f58ef45d339", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032838Z:571a21c6-6e4e-4916-898e-4f58ef45d339" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-6b758f95749e69c5-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "13c4f1c684b3f978b008218f9c4879e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:39 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a90d9dd-a0b0-48d7-b601-ad9b18f04788", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "1a90d9dd-a0b0-48d7-b601-ad9b18f04788", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032840Z:1a90d9dd-a0b0-48d7-b601-ad9b18f04788" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-e5c2334e7e0344b3-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "7ccdc46cc9fa25f6d300ed6eae952760", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:43 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cced346-8d8b-4749-a03c-d02ad2650809", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "7cced346-8d8b-4749-a03c-d02ad2650809", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032844Z:7cced346-8d8b-4749-a03c-d02ad2650809" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/f7bfc608-5b41-4870-b7d1-9fd9c529cc84?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-ea23c32060cb13a7-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "1346759a7a7abad4b11438f7b6c7ab04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:52 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce29f230-f9b7-4aa4-adb1-aca4841e45a2", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "ce29f230-f9b7-4aa4-adb1-aca4841e45a2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032852Z:ce29f230-f9b7-4aa4-adb1-aca4841e45a2" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569/containers/sql-container-2867?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-a066a10740b19194c9fa2be7490fba5c-c6c49f0016c1ee4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "03166b57ad1bfd8dfa9e40b2960a4b1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "1374", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 03:28:52 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c86ec47f-e0e4-4576-90f5-ed826ef862ea", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "c86ec47f-e0e4-4576-90f5-ed826ef862ea", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T032853Z:c86ec47f-e0e4-4576-90f5-ed826ef862ea" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146/sqlDatabases/sql-database-1569/containers/sql-container-2867", - "type": "Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers", - "name": "sql-container-2867", - "properties": { - "resource": { - "id": "sql-container-2867", - "indexingPolicy": { - "indexingMode": "consistent", - "automatic": true, - "includedPaths": [ - { - "path": "/*" - } - ], - "excludedPaths": [ - { - "path": "/pathToNotIndex/*" - }, - { - "path": "/\u0022_etag\u0022/?" - } - ], - "spatialIndexes": [ - { - "path": "/*", - "types": [ - "Point", - "LineString", - "Polygon", - "MultiPolygon" - ] - } - ], - "compositeIndexes": [ - [ - { - "path": "/orderByPath1", - "order": "ascending" - }, - { - "path": "/orderByPath2", - "order": "descending" - } - ] - ] - }, - "partitionKey": { - "paths": [ - "/address/zipCode" - ], - "kind": "Hash" - }, - "uniqueKeyPolicy": { - "uniqueKeys": [] - }, - "conflictResolutionPolicy": { - "mode": "LastWriterWins", - "conflictResolutionPath": "/_ts", - "conflictResolutionProcedure": "" - }, - "backupPolicy": { - "type": 1 - }, - "geospatialConfig": { - "type": "Geography" - }, - "_rid": "2rgsAMYKDww=", - "_ts": 1681961322, - "_self": "dbs/2rgsAA==/colls/2rgsAMYKDww=/", - "_etag": "\u00220000ef07-0000-0600-0000-6440b16a0000\u0022", - "_docs": "docs/", - "_sprocs": "sprocs/", - "_triggers": "triggers/", - "_udfs": "udfs/", - "_conflicts": "conflicts/", - "statistics": [ - { - "id": "0", - "sizeInKB": 0, - "documentCount": 0, - "sampledDistinctPartitionKeyCount": 0, - "partitionKeys": [] - } - ] - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866?api-version=2022-11-15-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "578", - "Content-Type": "application/json", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-1cb522fbb27b6168-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "0227f5c06d66eff213cae690fe6f0b55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "kind": "GlobalDocumentDB", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "location": "westcentralus", - "properties": { - "locations": [ - { - "locationName": "northcentralus", - "isZoneRedundant": false - } - ], - "databaseAccountOfferType": "Standard", - "createMode": "Restore", - "restoreParameters": { - "restoreMode": "PointInTime", - "sourceBackupLocation": "West Central US", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "restoreTimestampInUtc": "2023-04-20T04:29:34.0000000Z" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "2864", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:00 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866/operationResults/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c2b0040-3102-4171-8560-7a1ac77638b5", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "2233c32f-5b4a-42bf-94df-4ff70d3063a8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043100Z:1c2b0040-3102-4171-8560-7a1ac77638b5" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866", - "name": "restoredaccount-2866", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T04:30:58.069252Z" - }, - "properties": { - "provisioningState": "Creating", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "Session", - "maxIntervalInSeconds": 5, - "maxStalenessPrefix": 100 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "", - "provisioningState": "Creating", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "restoreTimestampInUtc": "2023-04-20T04:29:34Z", - "sourceBackupLocation": "West Central US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T04:30:58.069252Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T04:30:58.069252Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T04:30:58.069252Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T04:30:58.069252Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-482e7a9fca7c8e21-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "d2f6161d0184fef1231308e2a66cfc2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:00 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ec3a553-d453-47dc-90ae-08a926c6fe9f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0ec3a553-d453-47dc-90ae-08a926c6fe9f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043101Z:0ec3a553-d453-47dc-90ae-08a926c6fe9f" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-a7468783697a1f0d-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f3ad5c349b097abd083fb94d90b7cdef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:02 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec18018e-973f-4f4e-9683-161b0d99263c", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "ec18018e-973f-4f4e-9683-161b0d99263c", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043102Z:ec18018e-973f-4f4e-9683-161b0d99263c" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-c4c0b5bda4c45b95-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e7731e233978e7d124445b103d0940dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8f3b9d2-d2c9-47ad-a7fa-ea3f34207861", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "a8f3b9d2-d2c9-47ad-a7fa-ea3f34207861", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043103Z:a8f3b9d2-d2c9-47ad-a7fa-ea3f34207861" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-4675ad4107cb5835-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c506ad1cb47682bf597cca4448a36e6c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:04 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfc49c0e-bc64-4c50-907e-5c1f11fc7f67", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "bfc49c0e-bc64-4c50-907e-5c1f11fc7f67", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043104Z:bfc49c0e-bc64-4c50-907e-5c1f11fc7f67" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-bf0d05c4f8e5570c-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "88bf184614f9fbb68bc5cec53fad3cfe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:06 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bae5dcd2-37ac-4207-a1ac-db098fc4a11e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "bae5dcd2-37ac-4207-a1ac-db098fc4a11e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043106Z:bae5dcd2-37ac-4207-a1ac-db098fc4a11e" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-d6cede0729c53306-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e231dcfe07b16e785ff08efc6f8c9e81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:10 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd99a54d-2e24-4884-9fbd-9fa0e09eccb2", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "cd99a54d-2e24-4884-9fbd-9fa0e09eccb2", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043110Z:cd99a54d-2e24-4884-9fbd-9fa0e09eccb2" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-b10765f77c415d8b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "24caefd5b84908e3f70b39b0e5f943ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:18 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "360f7433-00bf-4e5b-8dcf-374463f2d102", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "360f7433-00bf-4e5b-8dcf-374463f2d102", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043118Z:360f7433-00bf-4e5b-8dcf-374463f2d102" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-9000791f1aa9ea4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6c45cb3f8b723eba9f50280885b98cff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:31:34 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6207e273-8b9b-41e6-9863-c7efc79af869", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "6207e273-8b9b-41e6-9863-c7efc79af869", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043134Z:6207e273-8b9b-41e6-9863-c7efc79af869" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-9eabfce73949cd58-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "4fef4d2618e246b5f928eaa6cec88965", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:32:06 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18c3eb39-619b-4a92-84ec-cddea2b1efff", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "18c3eb39-619b-4a92-84ec-cddea2b1efff", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043206Z:18c3eb39-619b-4a92-84ec-cddea2b1efff" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-b0ef4c28e867ddab-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a4bde2ad32464a0e348b84f88fda833e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:32:38 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f04d1595-3052-4885-92dc-93846dee7144", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f04d1595-3052-4885-92dc-93846dee7144", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043238Z:f04d1595-3052-4885-92dc-93846dee7144" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-3578ddbb93d6c686-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "97893a7ef30a26c915ff734aa11470d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:33:11 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49a11500-bb4e-4bb2-a8b2-0ba620843b13", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "49a11500-bb4e-4bb2-a8b2-0ba620843b13", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043311Z:49a11500-bb4e-4bb2-a8b2-0ba620843b13" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-5b027e729e10cfae-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "a25ac3c7e7fcf4b83fa41a5793bcb61e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:33:42 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a83d4742-71c2-45f1-a70f-9683c8b56f70", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "a83d4742-71c2-45f1-a70f-9683c8b56f70", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043343Z:a83d4742-71c2-45f1-a70f-9683c8b56f70" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-63b01e2a0a9a4705-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9327aca5f13eb95a19968e46bec4a820", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:34:14 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbcf70b8-b402-465a-835b-7c59687fb39e", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "cbcf70b8-b402-465a-835b-7c59687fb39e", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043415Z:cbcf70b8-b402-465a-835b-7c59687fb39e" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-701b4f744636b940-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "cc31ac1be080964281955866d8719359", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:34:46 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57f0556c-25d3-431d-91f6-c2bd7548fca4", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "57f0556c-25d3-431d-91f6-c2bd7548fca4", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043447Z:57f0556c-25d3-431d-91f6-c2bd7548fca4" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-6f60943f5a4379d9-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "f4a45549dcedd59968a089655971357b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:35:18 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea657d6a-0f30-487a-b234-bd60690c925b", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "ea657d6a-0f30-487a-b234-bd60690c925b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043519Z:ea657d6a-0f30-487a-b234-bd60690c925b" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-67b9a37764b00492-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "e73cfafbea8ac59e6a9011a899f4e1a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:35:51 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce82ff36-9fec-4bb8-9def-6d761fca4f3a", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "ce82ff36-9fec-4bb8-9def-6d761fca4f3a", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043551Z:ce82ff36-9fec-4bb8-9def-6d761fca4f3a" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-cdbaba4c3bb4a01f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "69fd3403b41f3f33125b63df56dc3d10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:36:22 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a0c43af-6471-4141-b443-7bf6bedec76f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "7a0c43af-6471-4141-b443-7bf6bedec76f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043623Z:7a0c43af-6471-4141-b443-7bf6bedec76f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-6a34fd6aa796fd21-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "de6add5fab355eceb7df8a5ccaf13c74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:36:55 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a75aae71-396b-43c0-80f6-c9c49ee5ff03", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "a75aae71-396b-43c0-80f6-c9c49ee5ff03", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043655Z:a75aae71-396b-43c0-80f6-c9c49ee5ff03" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-289d872d69d60f8a-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2562e2bfcb73475bc7fdd42f86be6f8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:37:27 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eeeb1ea8-494a-4f02-b0b2-cfe33d2edee7", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "eeeb1ea8-494a-4f02-b0b2-cfe33d2edee7", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043727Z:eeeb1ea8-494a-4f02-b0b2-cfe33d2edee7" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-88503c6534509bbe-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "bb480153038a5771659eb24029d67421", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:37:59 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a3cebd0-9570-473c-9078-3dbdc83ebfa8", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "8a3cebd0-9570-473c-9078-3dbdc83ebfa8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043759Z:8a3cebd0-9570-473c-9078-3dbdc83ebfa8" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-a71cc1635efafa56-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "731fef1e187a949c81221638d79fd7f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:38:31 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52e24f57-b371-459b-b1c6-f5bc73770f65", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "52e24f57-b371-459b-b1c6-f5bc73770f65", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043832Z:52e24f57-b371-459b-b1c6-f5bc73770f65" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-19342b8867675909-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c809fc6f80a8bce9700abfd4191b1ef0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:39:03 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5d90d9d-bfc8-4799-bf36-6c2b4d31744f", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "b5d90d9d-bfc8-4799-bf36-6c2b4d31744f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043904Z:b5d90d9d-bfc8-4799-bf36-6c2b4d31744f" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-46e31986b61742ad-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9710b288fb9f3b1365b43a68ec3880c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:39:36 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9178ac4b-a226-4a3f-8ae3-95493866301b", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "9178ac4b-a226-4a3f-8ae3-95493866301b", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T043936Z:9178ac4b-a226-4a3f-8ae3-95493866301b" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-2317b2ac603b75bf-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2cd0b9c7accd9e790563026f59c77a66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:40:08 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f826427a-85dc-458a-b389-d420a1d3ca96", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "f826427a-85dc-458a-b389-d420a1d3ca96", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044008Z:f826427a-85dc-458a-b389-d420a1d3ca96" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-5113780c13e7e8c6-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "24b02503408f7459e8ce62f34681cf38", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:40:40 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da113ca1-ae8d-43c4-814a-51786f406ab8", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "da113ca1-ae8d-43c4-814a-51786f406ab8", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044040Z:da113ca1-ae8d-43c4-814a-51786f406ab8" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-8eb05100e11a0f2f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5f0df88af14adc233972923bf8a4e29e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:41:11 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6154564a-a81a-4e27-8447-e54d7e92a522", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "6154564a-a81a-4e27-8447-e54d7e92a522", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044112Z:6154564a-a81a-4e27-8447-e54d7e92a522" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-9818b616fc7ee18f-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "c664d4395b888637605c44fe49855783", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:41:44 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0efea10-3139-42ac-84de-46f785e085fd", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "a0efea10-3139-42ac-84de-46f785e085fd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044144Z:a0efea10-3139-42ac-84de-46f785e085fd" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-6a89c509ebd03e75-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "60e4ca931bb9121b02d3eb1dad1d7b44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:42:16 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df454fb8-162b-47c4-98cc-0e01c65336ae", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "df454fb8-162b-47c4-98cc-0e01c65336ae", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044216Z:df454fb8-162b-47c4-98cc-0e01c65336ae" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-9801fbbfda4145cf-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "72bac4ec091d2fafc186feeead2493b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:42:48 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b17b0fe1-45bf-4dba-91bd-6c0c198618a0", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "b17b0fe1-45bf-4dba-91bd-6c0c198618a0", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044248Z:b17b0fe1-45bf-4dba-91bd-6c0c198618a0" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-8685a38aedf8ed26-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "2da80e1a81bf1ee4b852c4b46f19d942", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:43:20 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a260dc47-bd8c-44de-af3f-de6b0c043109", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "a260dc47-bd8c-44de-af3f-de6b0c043109", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044321Z:a260dc47-bd8c-44de-af3f-de6b0c043109" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-7fe80b9c921f1e27-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "841200e0e4cb8a661bb59e321c2d64dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:43:52 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "607cacfe-7667-43d4-906c-ec1296c9c264", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "607cacfe-7667-43d4-906c-ec1296c9c264", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044353Z:607cacfe-7667-43d4-906c-ec1296c9c264" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-85ea75eae2ebb7c2-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "9f0237404d756a84df9cbacb44fabfa7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:44:25 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dfab31c-7004-404e-a9fe-406bdce2dac6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "9dfab31c-7004-404e-a9fe-406bdce2dac6", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044425Z:9dfab31c-7004-404e-a9fe-406bdce2dac6" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-eabc9beaf998365b-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "ad0ebcad0e1236e9a71d1209e3b2018b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:44:56 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a76d635e-6d8a-42d8-98a4-9c4aac888756", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "a76d635e-6d8a-42d8-98a4-9c4aac888756", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044457Z:a76d635e-6d8a-42d8-98a4-9c4aac888756" - }, - "ResponseBody": { - "status": "Dequeued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/2233c32f-5b4a-42bf-94df-4ff70d3063a8?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-91252ee1d8e70c14-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "3873e7ed3a1792cd7ba8a42e2a9b4620", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:45:29 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4f185b0-828b-4d1f-855c-511e3f9298dd", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "e4f185b0-828b-4d1f-855c-511e3f9298dd", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044529Z:e4f185b0-828b-4d1f-855c-511e3f9298dd" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866?api-version=2022-11-15-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e7a142605778e9470097def4e1cd06a5-044a510d11048318-00", - "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "6084f6f6b71e31ca4dccf7573a7a872d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-store, no-cache", - "Content-Length": "3229", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:45:29 GMT", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0360fea-df53-4c28-89ae-4baac47d9d31", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "b0360fea-df53-4c28-89ae-4baac47d9d31", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044529Z:b0360fea-df53-4c28-89ae-4baac47d9d31" - }, - "ResponseBody": { - "id": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866", - "name": "restoredaccount-2866", - "location": "West Central US", - "type": "Microsoft.DocumentDB/databaseAccounts", - "kind": "GlobalDocumentDB", - "tags": {}, - "systemData": { - "createdAt": "2023-04-20T04:44:53.403033Z" - }, - "properties": { - "provisioningState": "Succeeded", - "documentEndpoint": "https://restoredaccount-2866.documents.azure.com:443/", - "sqlEndpoint": "https://restoredaccount-2866.documents.azure.com:443/", - "publicNetworkAccess": "Enabled", - "enableAutomaticFailover": false, - "enableMultipleWriteLocations": false, - "enablePartitionKeyMonitor": false, - "isVirtualNetworkFilterEnabled": false, - "virtualNetworkRules": [], - "EnabledApiTypes": "Sql", - "disableKeyBasedMetadataWriteAccess": false, - "enableFreeTier": false, - "enableAnalyticalStorage": false, - "analyticalStorageConfiguration": {}, - "instanceId": "d6c054fa-38d8-414b-9eaa-8bf3ab8afa86", - "createMode": "Restore", - "databaseAccountOfferType": "Standard", - "enableMaterializedViews": false, - "defaultIdentity": "FirstPartyIdentity", - "networkAclBypass": "None", - "disableLocalAuth": false, - "enablePartitionMerge": false, - "enableBurstCapacity": false, - "minimalTlsVersion": "Tls", - "consistencyPolicy": { - "defaultConsistencyLevel": "BoundedStaleness", - "maxIntervalInSeconds": 1000, - "maxStalenessPrefix": 300 - }, - "configurationOverrides": {}, - "writeLocations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-2866-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "readLocations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-2866-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "locations": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "documentEndpoint": "https://restoredaccount-2866-northcentralus.documents.azure.com:443/", - "provisioningState": "Succeeded", - "failoverPriority": 0, - "isZoneRedundant": false - } - ], - "failoverPolicies": [ - { - "id": "restoredaccount-2866-northcentralus", - "locationName": "North Central US", - "failoverPriority": 0 - } - ], - "cors": [], - "capabilities": [], - "ipRules": [], - "backupPolicy": { - "type": "Continuous", - "continuousModeProperties": { - "tier": "Continuous30Days" - } - }, - "restoreParameters": { - "restoreMode": "PointInTime", - "restoreSource": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/7fc65930-226c-48ab-aa09-98e62d5ed0a2", - "restoreTimestampInUtc": "2023-04-20T04:29:34Z", - "sourceBackupLocation": "West Central US", - "databasesToRestore": [] - }, - "networkAclBypassResourceIds": [], - "diagnosticLogSettings": { - "enableFullTextQuery": "None" - }, - "capacity": { - "totalThroughputLimit": -1 - }, - "keysMetadata": { - "primaryMasterKey": { - "generationTime": "2023-04-20T04:44:53.403033Z" - }, - "secondaryMasterKey": { - "generationTime": "2023-04-20T04:44:53.403033Z" - }, - "primaryReadonlyMasterKey": { - "generationTime": "2023-04-20T04:44:53.403033Z" - }, - "secondaryReadonlyMasterKey": { - "generationTime": "2023-04-20T04:44:53.403033Z" - } - } - }, - "identity": { - "type": "None" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/r-database-account-1146?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aab93be39f2a4a60eb1b500d8d8d5ce7-0635e5766ec06ce2-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "5cdd2e9a86867390ef7b316a6aba0b0c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/0dd50ecf-35d8-4037-ab3f-78c9f4d8c08f?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:45:30 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/0dd50ecf-35d8-4037-ab3f-78c9f4d8c08f?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "534988ce-4d3d-4856-badb-8184002130b6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "0dd50ecf-35d8-4037-ab3f-78c9f4d8c08f", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044530Z:534988ce-4d3d-4856-badb-8184002130b6" - }, - "ResponseBody": { - "status": "Enqueued" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/dbaccount-6716/providers/Microsoft.DocumentDB/databaseAccounts/restoredaccount-2866?api-version=2022-11-15-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-5a74d24e897397a03e94797aed7b4bcd-b0c80dc386d299b9-00", - "User-Agent": "azsdk-net-ResourceManager.CosmosDB/1.3.0-alpha.20230419.1 (.NET 7.0.4; Microsoft Windows 10.0.22621)", - "x-ms-client-request-id": "fb947720e9bd6f99661071a28660c793", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationsStatus/09959d74-08bd-40c7-af9d-3e50c6e6196d?api-version=2022-11-15-preview", - "Cache-Control": "no-store, no-cache", - "Content-Length": "21", - "Content-Type": "application/json", - "Date": "Thu, 20 Apr 2023 04:45:31 GMT", - "Location": "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/operationResults/09959d74-08bd-40c7-af9d-3e50c6e6196d?api-version=2022-11-15-preview", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58f20bd4-3ee3-478e-ac03-a8a96ec73ff6", - "x-ms-gatewayversion": "version=2.14.0", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "09959d74-08bd-40c7-af9d-3e50c6e6196d", - "x-ms-routing-request-id": "SOUTHCENTRALUS:20230420T044532Z:58f20bd4-3ee3-478e-ac03-a8a96ec73ff6" - }, - "ResponseBody": { - "status": "Enqueued" - } - } - ], - "Variables": { - "AZURE_AUTHORITY_HOST": null, - "RandomSeed": "1379342399", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" - } -}